        :root {
            --primary-color: #00d4ff;
            --secondary-color: #ff0080;
            --accent-color: #7b2ff7;
            --dark-bg: #0a0118;
            --card-bg: #160828;
            --text-primary: #ffffff;
            --text-secondary: #b8b8d4;
            --gradient-1: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 50%, #ff0080 100%);
            --gradient-2: linear-gradient(180deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 0, 128, 0.15) 100%);
            --gradient-3: radial-gradient(circle at 30% 50%, rgba(123, 47, 247, 0.3) 0%, transparent 70%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-3);
            pointer-events: none;
            z-index: 0;
        }
        .container {
            position: relative;
            z-index: 1;
        }
        .header {
            background: rgba(10, 1, 24, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }
        .nav {
            display: flex;
            justify-content: center;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
            padding-left: 0;
            margin-bottom: 0;
        }
        .nav-list a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }
        .nav-list a:hover {
            color: var(--primary-color);
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }
        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        .cta-button {
            background: var(--gradient-1);
            color: var(--text-primary);
            padding: 0.9rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s ease;
            border: none;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
            color: var(--text-primary);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .hero-section {
            padding: 8rem 0 6rem;
            text-align: center;
            position: relative;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-section h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .hero-section p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }

        section {
            padding: 6rem 0;
            position: relative;
        }

        h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 2rem;
            text-align: center;
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        h3 {
            font-size: 2rem;
            font-weight: 700;
            margin: 3rem 0 1.5rem;
            color: var(--primary-color);
        }

        h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .info-card {
            background: var(--card-bg);
            border-radius: 30px;
            padding: 4rem 3rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(0, 212, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-2);
            opacity: 0.5;
            pointer-events: none;
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(22, 8, 40, 0.8);
        }

        thead {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(123, 47, 247, 0.2) 100%);
        }

        th {
            padding: 1.5rem 1.5rem;
            text-align: left;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        td {
            padding: 1.3rem 1.5rem;
            border-bottom: 1px solid rgba(0, 212, 255, 0.1);
            color: var(--text-secondary);
            font-size: 1.05rem;
        }

        tbody tr {
            transition: all 0.3s ease;
        }

        tbody tr:hover {
            background: rgba(0, 212, 255, 0.05);
        }

        .timeline-item {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 2.5rem;
        }

        .timeline-marker {
            position: absolute;
            left: 0;
            top: 5px;
            width: 20px;
            height: 20px;
            background: var(--gradient-1);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
        }

        .timeline-marker::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 9px;
            width: 2px;
            height: calc(100% + 30px);
            background: linear-gradient(180deg, var(--primary-color), transparent);
        }

        .timeline-item:last-child .timeline-marker::before {
            display: none;
        }

        .timeline-text p,
        .timeline-text ul {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .timeline-text ul {
            list-style: none;
            padding-left: 0;
        }

        .timeline-text ul li {
            padding-left: 2rem;
            position: relative;
            margin-bottom: 1rem;
        }

        .timeline-text ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 1.3rem;
        }

        .verification-visual {
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
            border: 2px solid rgba(0, 212, 255, 0.3);
        }

        .checklist {
            list-style: none;
            padding: 0;
        }

        .checklist li {
            padding: 1rem 1.5rem 1rem 3.5rem;
            margin-bottom: 1rem;
            background: rgba(0, 212, 255, 0.05);
            border-left: 4px solid var(--primary-color);
            border-radius: 10px;
            position: relative;
            font-size: 1.1rem;
            color: var(--text-secondary);
            transition: all 0.3s ease;
        }

        .checklist li::before {
            content: '✓';
            position: absolute;
            left: 1.2rem;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.4rem;
        }

        .checklist li:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateX(5px);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .card {
            background: var(--card-bg);
            border-radius: 25px;
            padding: 2.5rem;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-2);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
            border-color: var(--primary-color);
        }

        .card:hover::before {
            opacity: 0.5;
        }

        .card-icon {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .game-icon {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.2rem;
        }

        .cards-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-list {
            margin: 2rem 0;
        }

        .feature-item {
            background: rgba(0, 212, 255, 0.05);
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            border-left: 4px solid var(--secondary-color);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateX(8px);
        }

        .feature-item h4 {
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }

        .highlight-list {
            margin: 2rem 0;
        }

        .highlight-item {
            background: var(--card-bg);
            padding: 2rem;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 0, 128, 0.3);
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .highlight-item strong {
            color: var(--secondary-color);
            font-size: 1.2rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(123, 47, 247, 0.1) 100%);
            padding: 2.5rem;
            border-radius: 25px;
            border: 2px solid rgba(0, 212, 255, 0.3);
            margin: 2rem 0;
        }

        .highlight-box p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .highlight-box strong {
            color: var(--primary-color);
        }

        .numbered-list {
            counter-reset: item;
            list-style: none;
            padding: 0;
        }

        .numbered-list li {
            counter-increment: item;
            padding: 1.5rem 1.5rem 1.5rem 4rem;
            margin-bottom: 1.5rem;
            background: rgba(123, 47, 247, 0.05);
            border-radius: 15px;
            position: relative;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .numbered-list li::before {
            content: counter(item);
            position: absolute;
            left: 1.2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 35px;
            height: 35px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .numbered-list li strong {
            color: var(--accent-color);
        }

        .accordion-item {
            background: var(--card-bg);
            border-radius: 20px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            border: 1px solid rgba(0, 212, 255, 0.2);
            transition: all 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
        }

        .accordion-header {
            padding: 2rem 2.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .accordion-header:hover {
            background: rgba(0, 212, 255, 0.05);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.4rem;
            color: var(--text-primary);
            background: none;
            -webkit-text-fill-color: var(--text-primary);
            text-align: left;
        }

        .accordion-toggle {
            width: 35px;
            height: 35px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            background: transparent;
            color: var(--primary-color);
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
        }

        .accordion-toggle::before {
            content: '+';
            position: absolute;
            transition: transform 0.3s ease;
        }

        .accordion-toggle.active::before {
            transform: rotate(45deg);
        }

        .accordion-toggle:hover {
            background: var(--primary-color);
            color: var(--dark-bg);
            transform: rotate(90deg);
        }

        .accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 !important;
        }

        .accordion-body.active {
            max-height: 1000px;
            padding: 0 2.5rem 2rem !important;
        }
        .accordion-body p {
            margin-bottom: 0;
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .footer {
            background: rgba(10, 1, 24, 0.98);
            padding: 4rem 0 2rem;
            margin-top: 6rem;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-links ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
            padding: 0;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        .footer-info {
            text-align: right;
        }

        .footer-info p {
            margin: 0.3rem 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 1, 24, 0.98);
                backdrop-filter: blur(20px);
                transition: left 0.4s ease;
                justify-content: flex-start;
                padding: 4rem 0 2rem;
            }
            .nav.active {
                left: 0;
            }
            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            .nav-list li {
                width: 100%;
            }
            .nav-list a {
                display: block;
                padding: 1.2rem 2rem;
                font-size: 1.2rem;
                border-bottom: 1px solid rgba(0, 212, 255, 0.1);
            }
            .header-content {
                flex-wrap: wrap;
            }
            .cards-grid,
            .cards-grid-2 {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links ul {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-info {
                text-align: center;
            }

            .table-wrapper {
                font-size: 0.9rem;
            }

            th, td {
                padding: 1rem 0.8rem;
                font-size: 0.95rem;
            }
        }
        @media screen and (max-width: 768px) {
            table {
                display: block !important;
                overflow: scroll !important;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .hero-section h1 {
                font-size: 3.2rem;
            }

            h2 {
                font-size: 2.5rem;
            }
        }

        @media (min-width: 1440px) {
            .container {
                max-width: 1320px;
            }

            .hero-section h1 {
                font-size: 4.5rem;
            }

            h2 {
                font-size: 3.5rem;
            }
        }
    

@media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(10, 1, 24, 0.98);
                backdrop-filter: blur(20px);
                transition: left 0.4s ease;
                justify-content: flex-start;
                padding: 4rem 0 2rem;
            }

            .nav.active {
                left: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .nav-list li {
                width: 100%;
            }

            .nav-list a {
                display: block;
                padding: 1.2rem 2rem;
                font-size: 1.2rem;
                border-bottom: 1px solid rgba(0, 212, 255, 0.1);
            }

            .header-content {
                flex-wrap: wrap;
            }

            .cta-button {
                order: 3;
                width: 100%;
                margin-top: 1rem;
                text-align: center;
            }

            .hero-section {
                padding: 5rem 0 4rem;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .hero-section p {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.6rem;
            }

            section {
                padding: 4rem 0;
            }

            .info-card {
                padding: 2.5rem 1.5rem;
            }

            .cards-grid,
            .cards-grid-2 {
                grid-template-columns: 1fr;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links ul {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-info {
                text-align: center;
            }

            .table-wrapper {
                font-size: 0.9rem;
            }

            th, td {
                padding: 1rem 0.8rem;
                font-size: 0.95rem;
            }
        }