/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/

.color-priority {
    color: #0e1c4b !important;
}

.bg-priority-white {
    background-color: #ffffff !important;
}

.fill-priority {
    fill: #0e1c4b !important;
}

.stroke-priority {
    stroke: #0e1c4b !important;
}

/* Modern Gaming Theme Enhancements */

:root {
    --neon-violet: #8b5cf6;
    --neon-blue: #3b82f6;
    --neon-cyan: #06b6d4;
    --glass-bg: rgba(30, 42, 69, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Rajdhani', sans-serif;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
.game-title,
.nav-link,
.btn-game-modern {
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Neon Text Glow */
.text-neon {
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Card Hover Glow Effect */
.card-hover-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.card-hover-glow:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    z-index: 10;
}

.card-hover-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-hover-glow:hover::after {
    opacity: 1;
}

/* Gaming Button Styles */
.btn-game-modern {
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-blue));
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.btn-game-modern:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg) translate(-100%, 0);
    transition: transform 0.6s;
}

.btn-shine:hover::after {
    transform: rotate(45deg) translate(100%, 0);
    transition: transform 0.6s;
}

/* Hero Section Enhancements */
@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-modern-bg {
    position: relative;
    background: linear-gradient(-45deg, #0f1729, #1e2a45, #2e1065, #0f1729);
    background-size: 400% 400%;
    animation: gradient-move 15s ease infinite;
}

.hero-modern-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(15, 23, 41, 0.9), rgba(15, 23, 41, 0.9)),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 1px,
            rgba(139, 92, 246, 0.05) 1px,
            rgba(139, 92, 246, 0.05) 2px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 1px,
            rgba(139, 92, 246, 0.05) 1px,
            rgba(139, 92, 246, 0.05) 2px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    z-index: 0;
}

/* Scroll Reveal Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger delays for sequential appearance */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

/* Pro Category Card Style */
.category-card-pro {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.03), transparent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card-pro:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--neon-violet);
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
    background: linear-gradient(to top, rgba(139, 92, 246, 0.15), transparent);
    z-index: 10;
}

.category-card-pro .category-icon {
    transition: transform 0.3s ease;
}

.category-card-pro:hover .category-icon {
    animation: bounce-short 0.6s ease-in-out;
    color: var(--neon-cyan);
}

@keyframes bounce-short {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

::-webkit-scrollbar-track {
    background: #0f1729;
}

::-webkit-scrollbar-thumb {
    background: #2a364f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8b5cf6;
}