       :root {
            --font-title: 'Balthazar', serif;
            --font-subtitle: 'Poppins', sans-serif;
            --font-text: 'Poppins', sans-serif;
            --primary-500: #8b5cf6; /* violet */
            --primary-400: #a78bfa;
            --primary-600: #7c3aed;
            --accent-500: #c084fc;
            --accent-600: #ffb405;
            --text-on: #171102;
            --glow: 120, 97, 255; /* rgb for shadows */
            --bg-900: #0a0612;
            --bg-grad-start: #1a0f2b;
            --bg-grad-end: #090311;
            --wave-height: clamp(180px, 22vw, 320px);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-text);
            background: var(--bg-900);
            color: #fff;
            overflow-x: hidden;
            scrollbar-gutter: stable;
        }

        .header {
            position: fixed;
            width: 100%;
            height: 80px;
            top: 0;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(10, 6, 18, 0.95) 0%, rgba(10, 6, 18, 0.85) 100%);
            backdrop-filter: blur(20px) saturate(180%);
            padding: 15px 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(139, 92, 246, 0.15);
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 40%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-500), transparent);
            filter: blur(2px);
        }

        .logo {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(135deg, var(--accent-500), #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 20px rgba(var(--glow), 0.45);
        }

        .header-logo-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            perspective: 1000px;
        }

        .header-logo-container::before {
            content: '';
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(var(--glow), 0.7), transparent);
            box-shadow: 0 0 16px rgba(var(--glow), 0.5);
        }

        .header-logo-container::after {
            content: '';
            position: absolute;
            bottom: 22px;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(var(--glow), 0.6), transparent);
            box-shadow: 0 0 12px rgba(var(--glow), 0.4);
        }

        .header-logo {
            height: 225px;
            width: 200px;
            margin-top: 100px;
            position: relative;
            top: -25px;
            filter: drop-shadow(0 16px 36px rgba(var(--glow), 0.75))
                    drop-shadow(0 8px 20px rgba(var(--glow), 0.6))
                    drop-shadow(0 0 50px rgba(var(--glow), 0.4))
                    drop-shadow(8px 8px 0px rgba(62, 30, 90, 0.3))
                    drop-shadow(12px 12px 0px rgba(36, 16, 53, 0.2));
            transition: all 0.3s ease;
            z-index: 15;
            transform: translateZ(30px) rotateX(5deg);
            transform-style: preserve-3d;
        }

        .header-logo:hover {
            filter: drop-shadow(0 18px 40px rgba(var(--glow), 0.85))
                    drop-shadow(0 10px 24px rgba(var(--glow), 0.7))
                    drop-shadow(0 0 55px rgba(var(--glow), 0.5))
                    drop-shadow(10px 10px 0px rgba(62, 30, 90, 0.4))
                    drop-shadow(14px 14px 0px rgba(36, 16, 53, 0.3));
            transform: translateZ(35px) rotateX(3deg);
        }

        .header-logo-glow {
            position: absolute;
            width: 180%;
            height: 180%;
            background: radial-gradient(circle, rgba(var(--glow), 0.35) 0%, rgba(94, 58, 117, 0.15) 40%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.9;
            filter: blur(15px);
        }

        .nav {
            display: flex;
            gap: 30px;
        }

        .nav-left,
        .nav-right {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        .nav-left a,
        .nav-right a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 15px;
            font-family: var(--font-subtitle);
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            position: relative;
            padding: 8px 4px;
        }

        .nav-left a::after,
        .nav-right a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 80%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent-500), transparent);
            transition: transform 0.3s ease;
        }

        .nav-left a:hover,
        .nav-right a:hover {
            color: var(--accent-500);
            text-shadow: 0 0 12px rgba(var(--glow), 0.5);
        }

        .nav-left a:hover::after,
        .nav-right a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .btn-register {
            font-family: var(--font-subtitle);
            background-color: #3e1e5a;
            color: #fff;
            padding: 11px 28px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1.1px;
            border: none;
            border-radius: 8px;
            border-bottom: 5px solid #241035;
            cursor: pointer;
            transition: all 0.1s;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            display: inline-block;
        }

        .btn-register:hover {
            background-color: #4d2768;
            border-bottom-width: 5px;
        }

        .btn-register:active {
            transform: translateY(3px);
            border-bottom-width: 2px;
        }

        .hero {
            height: 100vh;
            background: linear-gradient(rgba(40,0,77,0.55), rgba(10,0,20,0.85));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(var(--glow),0.14) 0%, transparent 70%);
            animation: pulse 8s infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 220px;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(34,0,68,0.35) 20%, rgba(34,0,68,0.55) 45%, rgba(18,0,36,1) 100%);
            pointer-events: none;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-wave {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: none;
            pointer-events: none;
            filter: drop-shadow(0 12px 24px rgba(var(--glow),0.35));
            z-index: 1;
        }

        .hero video.bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            /* Keep the video crisp; avoid heavy filters that blur/compress colors */
            filter: none;
            image-rendering: auto;
        }

        .hero h1 {
            font-size: 80px;
            font-family: var(--font-title);
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--accent-500), #ffffff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
        }

        .hero-logo {
            max-width: min(70vw, 600px);
            height: auto;
            margin-bottom: 10px;
            filter: drop-shadow(0 0 30px rgba(var(--glow), 0.6));
            animation: glow-logo 2s ease-in-out infinite;
        }

        @keyframes glow-logo {
            0%, 100% { filter: drop-shadow(0 0 25px rgba(var(--glow),0.5)); }
            50% { filter: drop-shadow(0 0 45px rgba(var(--glow),0.85)); }
        }

        @keyframes glow {
            0%, 100% { filter: drop-shadow(0 0 20px rgba(var(--glow),0.5)); }
            50% { filter: drop-shadow(0 0 40px rgba(var(--glow),0.8)); }
        }

        @keyframes void-magic {
            0% {
                background-position: -200% center;
                text-shadow: 
                    0 0 20px rgba(139, 92, 246, 0.8),
                    0 0 40px rgba(88, 28, 135, 0.6),
                    0 4px 8px rgba(0, 0, 0, 0.9);
            }
            50% {
                text-shadow: 
                    0 0 30px rgba(192, 132, 252, 1),
                    0 0 60px rgba(139, 92, 246, 0.8),
                    0 0 80px rgba(88, 28, 135, 0.6),
                    0 4px 8px rgba(0, 0, 0, 0.9);
            }
            100% {
                background-position: 200% center;
                text-shadow: 
                    0 0 20px rgba(139, 92, 246, 0.8),
                    0 0 40px rgba(88, 28, 135, 0.6),
                    0 4px 8px rgba(0, 0, 0, 0.9);
            }
        }

        /* .hero-subtitle {
            font-size: 32px;
            font-family: var(--font-title);
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: -120px;
            margin-bottom: 20px;
            padding: 20px 50px;
            background-image: url('img/season1-bg.svg');
            background-size: 100% 500%;
            background-repeat: no-repeat;
            background-position: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.6));
            border-radius: 8px;
        }

        .hero-subtitle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(139, 92, 246, 0.4) 20%,
                rgba(192, 132, 252, 0.8) 50%,
                rgba(139, 92, 246, 0.4) 80%,
                transparent
            );
            animation: void-magic 4s ease-in-out infinite;
            pointer-events: none;
        }

        .hero p {
            font-size: 22px;
            font-family: var(--font-text);
            font-weight: 800;
            margin-top: -120px;
            margin-bottom: 50px;
            color: #e0d4f7;
            letter-spacing: 1px;
            text-shadow: 
                0 2px 8px rgba(139, 92, 246, 0.4),
                0 0 15px rgba(192, 132, 252, 0.3);
        } */

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: -130px;
        }

        .btn-primary, .btn-secondary {
            padding: 0;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            line-height: 0;
            border: none;
            background: transparent;
        }

        .btn-img {
            height: auto;
            width: auto;
            max-width: 280px;
            display: block;
            transition: all 0.3s;
        }

        .btn-primary {
            filter: drop-shadow(0 4px 10px rgba(36, 16, 53, 0.4));
            transition: transform 0.2s, filter 0.2s;
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            filter: drop-shadow(0 6px 15px rgba(36, 16, 53, 0.6));
        }

        .btn-primary:active {
            transform: translateY(-1px);
            filter: drop-shadow(0 3px 8px rgba(36, 16, 53, 0.5));
        }

        .btn-secondary {
            filter: drop-shadow(0 3px 8px rgba(139, 92, 246, 0.3));
            transition: transform 0.3s, filter 0.3s;
        }

        .btn-secondary:hover {
            transform: translateY(-3px) scale(1.03);
            filter: drop-shadow(0 5px 14px rgba(139, 92, 246, 0.5));
        }

        .btn-secondary:active {
            transform: translateY(0px) scale(1);
            filter: drop-shadow(0 2px 6px rgba(139, 92, 246, 0.4));
        }

        .section {
            padding: 100px 50px;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-family: var(--font-title);
            margin-bottom: 60px;
            background: linear-gradient(135deg, var(--accent-500), #fff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .rates-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .rate-card {
            background: linear-gradient(to bottom, rgba(94, 58, 117, 0.15), rgba(58, 28, 82, 0.1));
            border: 2px solid #3e1e5a;
            border-bottom: 4px solid #241035;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
        }

        .rate-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(36, 16, 53, 0.4);
            border-color: #5e3a75;
            border-bottom-color: #3a1c52;
        }

        .rate-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .rate-value {
            font-size: 36px;
            color: var(--accent-500);
            font-weight: bold;
            margin: 10px 0;
        }

        .rate-label {
            font-size: 18px;
            color: #aaa;
        }

        .info-section {
            max-width: 1400px;
            margin: 0 auto;
        }

        .info-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        @media (max-width: 1024px) {
            .info-columns {
                grid-template-columns: 1fr;
            }
        }

        .info-block {
            background: linear-gradient(to bottom, rgba(94, 58, 117, 0.12), rgba(58, 28, 82, 0.08));
            border: 2px solid rgba(62, 30, 90, 0.4);
            border-bottom: 4px solid rgba(36, 16, 53, 0.5);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            transition: all 0.3s;
        }

  
        .equipamentos-block {
            background: 
                linear-gradient(to bottom, rgba(94, 58, 117, 0.7), rgba(58, 28, 82, 0.75)),
                url('../img/molde.png') center/cover no-repeat;
            position: relative;
        }

        .equipamentos-block:hover {
            background: 
                linear-gradient(to bottom, rgba(94, 58, 117, 0.4), rgba(58, 28, 82, 0.5)),
                url('../img/molde.png') center/cover no-repeat;
        }

        .rates-block {
            background: 
                linear-gradient(to bottom, rgba(94, 58, 117, 0.7), rgba(58, 28, 82, 0.75)),
                url('../img/rates.png') center/cover no-repeat;
            position: relative;
        }

        .rates-block:hover {
            background: 
                linear-gradient(to bottom, rgba(94, 58, 117, 0.4), rgba(58, 28, 82, 0.5)),
                url('../img/rates.png') center/cover no-repeat;
        }

        .info-block h3 {
            font-size: 32px;
            font-family: var(--font-title);
            color: var(--accent-500);
            margin-bottom: 30px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(192, 132, 252, 0.6),
                         0 2px 10px rgba(139, 92, 246, 0.4);
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(139, 92, 246, 0.3);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 18px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(192, 132, 252, 0.12));
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1px solid rgba(139, 92, 246, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .info-item:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(192, 132, 252, 0.22));
            transform: translateX(8px) translateY(-2px);
            border-color: rgba(192, 132, 252, 0.5);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
        }

        .info-item-icon {
            font-size: 28px;
            margin-right: 18px;
            min-width: 60px;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(192, 132, 252, 0.15));
            border-radius: 50%;
            border: 2px solid rgba(192, 132, 252, 0.4);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.3),
                        inset 0 0 10px rgba(192, 132, 252, 0.1);
            transition: all 0.3s;
        }

        .info-item:hover .info-item-icon {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(192, 132, 252, 0.25));
            border-color: rgba(192, 132, 252, 0.6);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5),
                        inset 0 0 15px rgba(192, 132, 252, 0.2);
            transform: scale(1.05);
        }

        .info-item-icon img {
            width: 40px !important;
            height: 40px !important;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .info-item-content {
            flex: 1;
        }

        .info-item-title {
            font-size: 19px;
            font-weight: 700;
            color: var(--accent-600);
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
        }

        .info-item-desc {
            font-size: 15px;
            color: #e0e0e0;
            line-height: 1.7;
        }

        .class-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .class-item {
            background: rgba(139, 92, 246, 0.08);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .class-item:hover {
            background: rgba(139, 92, 246, 0.15);
            border-color: var(--accent-500);
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
        }

        .class-icon {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .class-name {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
        }

        .evolution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .evolution-item {
            background: rgba(192, 132, 252, 0.1);
            border: 2px solid rgba(192, 132, 252, 0.25);
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s;
        }

        .evolution-item:hover {
            background: rgba(192, 132, 252, 0.18);
            border-color: var(--accent-500);
            transform: translateY(-3px);
        }

        .evolution-icon {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .evolution-name {
            font-size: 14px;
            color: #ddd;
        }

        /* Classes Slider Section */
        .classes-section {
            background: linear-gradient(135deg, rgba(26, 15, 43, 0.85) 0%, rgba(10, 6, 18, 0.9) 50%, rgba(26, 15, 43, 0.85) 100%);
            padding: 120px 20px 280px;
            position: relative;
            overflow: visible;
        }

        .classes-section::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: url('../img/bgCLASS2.png') center/contain no-repeat;
            opacity: 0.6;
            z-index: 1;
            pointer-events: none;
        }

        .classes-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15), transparent 60%),
                        radial-gradient(circle at 70% 80%, rgba(192, 132, 252, 0.1), transparent 50%);
            pointer-events: none;
            animation: pulse-glow 8s ease-in-out infinite;
            z-index: 2;
        }

        .classes-section-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.3;
            z-index: 0;
        }

        @keyframes pulse-glow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .classes-section > * {
            position: relative;
            z-index: 2;
        }

        /* Race Selection */
        .race-selection {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin: 0;
            flex-shrink: 0;
        }

        .race-option {
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .race-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: rgb(97 60 181 / 20%);
            border: 3px solid rgb(3 222 255 / 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            margin: 0 auto 15px;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(10px);
            overflow: hidden;
        }

        .race-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .race-option:hover .race-icon {
            background: rgba(139, 92, 246, 0.35);
            border-color: rgba(192, 132, 252, 0.7);
            transform: scale(1.1);
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
        }

        .race-option.active .race-icon {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(192, 132, 252, 0.3));
            border-color: #00fbff;
            border-width: 4px;
            transform: scale(1.15);
            box-shadow: 0 0 20px rgb(48 230 255 / 90%), 0 0 80px rgba(192, 132, 252, 0.5);
        }

        .race-name {
            font-size: 18px;
            font-family: var(--font-title);
            color: #ddd;
            text-align: center;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .race-option.active .race-name {
            color: var(--accent-500);
            text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
        }

        /* Class Selection Buttons */
        .class-buttons-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin: 0;
            flex-wrap: wrap;
            width: 100%;
            order: 3;
            margin-top: -150px;
        }

        .class-button-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            max-width: 250px;
        }

        .class-button-text {
            text-align: center;
        }

        .class-button-text h4 {
            font-size: 20px;
            font-family: var(--font-title);
            color: var(--accent-500);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .class-button-text p {
            font-size: 14px;
            color: #ccc;
            line-height: 1.5;
        }
        
        .class-buttons {
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 15;
        }

        .class-button {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgb(97 60 181 / 15%);
            border: 2px solid rgb(3 222 255 / 40%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(8px);
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
            padding: 15px;
        }

        .class-button img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .class-button:hover {
            background: rgb(97 60 181 / 25%);
            border-color: rgb(3 222 255 / 60%);
            transform: scale(1.1);
            box-shadow: 0 0 20px rgb(48 230 255 / 50%);
        }

        .class-button.active {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(192, 132, 252, 0.25));
            border-color: #00fbff;
            border-width: 3px;
            transform: scale(1.15);
            box-shadow: 0 0 20px rgb(48 230 255 / 90%), 0 0 60px rgba(192, 132, 252, 0.4);
        }

        .class-button.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid #00fbff;
            animation: pulse-ring 2s ease-out infinite;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Class Description Box */
        .class-description {
            position: relative;
            width: 320px;
            min-width: 320px;
            max-width: 320px;
            background: linear-gradient(135deg, rgba(10, 6, 18, 0.95), rgba(26, 15, 43, 0.9));
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            z-index: 5;
            flex-shrink: 0;
        }

        .class-info-left {
            flex: 1;
        }

        .class-info-right {
            flex: 1;
            text-align: right;
        }

        .class-description h3 {
            font-size: 28px;
            font-family: var(--font-title);
            color: var(--accent-500);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .class-description .class-subtitle {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 20px;
            font-style: italic;
        }

        .class-description p {
            font-size: 15px;
            color: #e0d4f7;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .class-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
        }

        .class-stat {
            font-size: 13px;
            color: #ccc;
        }

        .class-stat strong {
            color: var(--accent-500);
        }

        .classes-slider-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            padding: 0 20px;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            overflow: visible;
        }

        .classes-slider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            padding: 180px 60px 180px 60px;
            position: relative;
            overflow-x: auto;
            overflow-y: visible;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            flex: 1;
            max-width: 800px;
        }

        .classes-slider::-webkit-scrollbar {
            display: none;
        }

        .class-slide {
            position: relative;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
            flex-shrink: 0;
            scroll-snap-align: center;
            scroll-snap-stop: always;
            perspective: 1000px;
        }

        .class-slide:not(.active) {
            opacity: 0.3;
            filter: grayscale(70%) brightness(0.6) blur(1px);
            transform: scale(0.7) translateY(20px);
        }

        .class-slide.active {
            opacity: 1;
            filter: none;
            transform: scale(1.15) translateY(-10px);
            z-index: 10;
            margin: 0 auto;
        }

        .class-slide:hover:not(.active) {
            opacity: 0.6;
            filter: grayscale(40%) brightness(0.8);
            transform: scale(0.8) translateY(10px);
        }

        .class-slide-image {
            width: 380px;
            height: 500px;
            object-fit: contain;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            filter: drop-shadow(0 10px 30px rgba(139, 92, 246, 0.3));
            position: relative;
            display: block;
            margin: 0 auto;
        }

        .class-slide-3d {
            width: 380px;
            height: 500px;
            position: relative;
            display: block;
            margin: 0 auto;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .class-slide-3d canvas {
            width: 100% !important;
            height: 100% !important;
            display: block;
        }

        .class-slide.active .class-slide-image {
            filter: drop-shadow(0 25px 60px rgba(139, 92, 246, 0.9))
                    drop-shadow(0 0 80px rgba(192, 132, 252, 0.7))
                    drop-shadow(0 -10px 40px rgba(139, 92, 246, 0.5));
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .class-slide-info {
            position: absolute;
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            text-align: center;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            white-space: nowrap;
            max-width: 450px;
        }

        .class-slide.active .class-slide-info {
            opacity: 1;
            bottom: -90px;
            transform: translateX(-50%) translateY(0);
        }

        .class-nav-buttons {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 100px);
            left: -50px;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
            z-index: 20;
        }

        .class-nav-btn {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(192, 132, 252, 0.15));
            border: 2px solid rgba(139, 92, 246, 0.6);
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            cursor: pointer;
            pointer-events: all;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            backdrop-filter: blur(15px) saturate(180%);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .class-nav-btn:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(192, 132, 252, 0.3));
            border-color: var(--accent-500);
            transform: scale(1.15);
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.8),
                        0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .class-nav-btn:active {
            transform: scale(1.05);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }


        @media (max-width: 1200px) {
            .class-slide-image {
                width: 300px;
                height: 400px;
            }
            .classes-slider {
                gap: 40px;
                padding: 80px 20px 120px;
            }
            .classes-slider-container {
                padding: 0 20px;
                flex-direction: column;
                gap: 30px;
            }
            .class-slide.active {
                transform: scale(1.1) translateY(-5px);
            }
            .class-description {
                position: static;
                max-width: 100%;
                min-width: auto;
                width: 100%;
                margin: 0;
            }
        }

        @media (max-width: 768px) {
            .classes-section {
                padding: 80px 15px 100px;
            }
            .race-selection {
                gap: 20px;
                margin: 30px 0 40px;
            }
            .race-icon {
                width: 70px;
                height: 70px;
                font-size: 32px;
            }
            .race-name {
                font-size: 14px;
            }
            .class-slide:not(.active) {
                opacity: 0.2;
                transform: scale(0.6);
                filter: grayscale(80%) blur(2px) brightness(0.6);
            }
            .class-slide.active {
                transform: scale(1) translateY(0);
            }
            .class-slide-image {
                width: 280px;
                height: 380px;
            }
            .classes-slider {
                gap: 30px;
                padding: 60px 15px 100px;
            }
            .classes-slider-container {
                padding: 0 15px;
                flex-direction: column;
            }
            .class-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }
            .class-slide-name {
                font-size: 24px;
                letter-spacing: 2px;
            }
            .class-slide-desc {
                font-size: 14px;
                padding: 0 10px;
                max-width: 300px;
            }
            .class-slide-info {
                bottom: -50px;
            }
            .class-slide.active .class-slide-info {
                bottom: -70px;
            }

            .class-description {
                position: static;
                transform: none;
                max-width: 100%;
                margin: 30px auto 0;
                padding: 20px;
            }
            .class-description h3 {
                font-size: 22px;
            }
        }
            .class-slide.active {
                transform: scale(1) translateY(0);
            }
            .class-slide-image {
                width: 280px;
                height: 380px;
            }
            .classes-slider {
                gap: 30px;
                padding: 60px 15px 100px;
            }
            .classes-slider-container {
                padding: 0;
            }
            .class-nav-btn {
                width: 50px;
                height: 50px;
                font-size: 22px;
            }
            .class-slide-name {
                font-size: 24px;
                letter-spacing: 2px;
            }
            .class-slide-desc {
                font-size: 14px;
                padding: 0 10px;
                max-width: 300px;
            }
            .class-slide-info {
                bottom: -50px;
            }
            .class-slide.active .class-slide-info {
                bottom: -70px;
            }
            .class-indicators {
                margin-top: 90px;
                gap: 12px;
                padding: 12px 20px;
            }
            .class-indicator {
                width: 10px;
                height: 10px;
            }
        

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .feature-card {
            position: relative;
            overflow: hidden;
            background: linear-gradient(to bottom, rgba(94, 58, 117, 0.12), rgba(58, 28, 82, 0.08));
            border: 2px solid rgba(62, 30, 90, 0.4);
            border-bottom: 4px solid rgba(36, 16, 53, 0.5);
            border-radius: 15px;
            padding: 35px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card:nth-child(1)::before {
            background-image: url('../img/recursos/inventory.png');
        }

        .feature-card:nth-child(2)::before {
            background-image: url('../img/recursos/voice_chat.png');
        }

        .feature-card:nth-child(3)::before {
            background-image: url('../img/recursos/shop_3d.png');
        }

        .feature-card:nth-child(4)::before {
            background-image: url('../img/recursos/lista_material.png');
        }

        .feature-card:nth-child(5)::before {
            background-image: url('../img/recursos/pvp_alert.png');
        }

        .feature-card:hover::before {
            opacity: 0.18;
        }

        .feature-image {
            display: none;
        }
        .feature-content {
            position: relative;
            z-index: 1;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
        }
        .feature-icon {
            font-size: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(192, 132, 252, 0.15));
            border-radius: 50%;
            border: 2px solid rgba(192, 132, 252, 0.4);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
            margin-bottom: 20px;
            transition: all 0.3s;
            overflow: hidden;
        }
        .feature-icon img {
            width: 45px;
            height: 45px;
            object-fit: contain;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(192, 132, 252, 0.25));
            border-color: rgba(192, 132, 252, 0.6);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
            transform: scale(1.05);
        }
        .feature-title {
            font-size: 24px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-500);
            font-family: var(--font-title);
            line-height: 1.3;
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(192, 132, 252, 0.3);
        }
        .feature-desc {
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 15px;
            margin-bottom: 15px;
        }

        /* Modal de Recursos */
        .feature-modal {
            position: fixed;
            inset: 0;
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .feature-modal.open {
            opacity: 1;
            visibility: visible;
        }
        .feature-modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
        }
        .feature-modal-content {
            position: relative;
            z-index: 2001;
            background: linear-gradient(to bottom, rgba(26, 15, 43, 0.98), rgba(9, 3, 17, 0.98));
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.2);
            max-width: 960px;
            width: 90%;
            max-height: 85vh;
            overflow-y: auto;
            animation: modalSlideIn 0.4s ease;
        }
        @keyframes modalSlideIn {
            from {
                transform: translateY(-30px) scale(0.95);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }
        .feature-modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(139, 92, 246, 0.2);
            border: 2px solid rgba(139, 92, 246, 0.4);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 28px;
            color: var(--accent-500);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            z-index: 2002;
        }
        .feature-modal-close:hover {
            background: rgba(139, 92, 246, 0.4);
            border-color: var(--accent-500);
            transform: rotate(90deg);
        }
        .feature-modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 50px;
        }
        .feature-modal-image-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 15px;
            border: 2px solid rgba(139, 92, 246, 0.2);
            padding: 20px;
        }
        .feature-modal-image {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }
        .feature-modal-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .feature-modal-title {
            font-size: 32px;
            font-family: var(--font-title);
            color: var(--accent-500);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .feature-modal-desc {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
        }
        .feature-modal-list {
            list-style: none;
            padding: 0;
        }
        .feature-modal-list li {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
            padding-left: 30px;
            position: relative;
            margin-bottom: 12px;
        }
        .feature-modal-list li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--accent-500);
            font-size: 14px;
        }

        .feature-details {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 12px;
        }

        .feature-details li {
            color: #e0e0e0;
            font-size: 14px;
            line-height: 1.6;
            padding-left: 25px;
            position: relative;
        }

        .feature-details li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-500);
            font-weight: bold;
            font-size: 16px;
        }
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 600px) {
            .feature-card {
                padding: 25px;
            }
        }
        .video-section {
            background: linear-gradient(135deg, var(--bg-grad-start), var(--bg-grad-end));
            position: relative;
        }

        .purple-section {
            background: linear-gradient(135deg, var(--bg-grad-start), var(--bg-grad-end));
            text-align: center;
        }

        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(var(--glow), 0.35);
        }

        .footer {
            background: #000;
            padding: 40px 50px;
            text-align: center;
            border-top: 2px solid var(--primary-500);
        }

        .footer p {
            color: #888;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }

        .social-links a {
            color: var(--accent-500);
            font-size: 24px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(139, 92, 246, 0.15);
            border-radius: 50%;
            border: 2px solid rgba(139, 92, 246, 0.3);
        }

        .social-links a:hover {
            transform: scale(1.15);
            background: rgba(139, 92, 246, 0.3);
            border-color: var(--accent-500);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
        }

        .social-links a svg {
            width: 22px;
            height: 22px;
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 48px; }
            .hero-logo { max-width: 85vw; }
            .section { padding: 60px 20px; }
            .header { padding: 12px 20px; flex-wrap: wrap; gap: 15px; }
            .header-logo { height: 80px; top: -8px; }
            .nav-left, .nav-right { display: none; }
            .btn-register { font-size: 14px; padding: 10px 20px; }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .feature-card {
                padding: 25px;
            }
            .feature-modal-body {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 30px;
            }
            .feature-modal-title {
                font-size: 24px;
            }
            .feature-modal-desc {
                font-size: 16px;
            }
        }
