       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #0a0a0a;
            overflow-x: hidden;
        }

        main {
            padding-top: 60px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section {
            padding: 5rem 0;
        }

        .section--dark {
            background-color: #0a0a0a;
            color: #fff;
        }

        .section--light {
            background-color: #f8f9fa;
            color: #333;
        }

        .section--gradient {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
        }

        .title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .title.center {
            text-align: center;
        }

        .title.dark {
            color: #333;
        }

        .text {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .text.center {
            text-align: center;
        }

        .text.large {
            font-size: 1.2rem;
        }

        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .header__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header__logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header__nav {
            display: flex;
            gap: 2rem;
        }

        .header__burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            background: none;
            border: none;
            position: relative;
        }

        .header__burger-line {
            width: 25px;
            height: 3px;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
            display: block;
        }

        .header__burger--active .header__burger-line:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .header__burger--active .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger--active .header__burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .header__nav--mobile {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.3s ease;
            z-index: 1000;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header__nav--mobile.active {
            right: 0;
        }

        .header__overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .header__overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .header__link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .header__link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            transition: width 0.3s ease;
        }

        .header__link:hover {
            color: #00d4ff;
        }

        .header__link:hover::after {
            width: 100%;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1)), 
                        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('./assets/img1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero__content {
            text-align: center;
            max-width: 800px;
            z-index: 2;
        }

        .hero__title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 4px 20px rgba(0, 212, 255, 0.3); }
            to { text-shadow: 0 4px 30px rgba(255, 107, 53, 0.5); }
        }

        .hero__description {
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .hero__buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero__button {
            display: inline-block;
            transition: all 0.3s ease;
            padding: 0.1rem 0.1rem;
            color: #fff;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }

        .hero__button img {
            width: 200px;
            height: 100px;
            vertical-align: middle;
            margin-right: 0.5rem;
            object-fit: contain;
        }

        .hero__button:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature {
            text-align: center;
            padding: 3rem 2rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature:hover::before {
            transform: scaleX(1);
        }

        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
        }

        .feature__icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature__title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .feature__description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .gameplay-modes {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .mode {
            padding: 3rem;
            background: linear-gradient(145deg, rgba(0, 212, 255, 0.05), rgba(255, 107, 53, 0.05));
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .mode__number {
            position: absolute;
            top: -20px;
            right: 20px;
            font-size: 6rem;
            font-weight: 900;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.1;
        }

        .mode__title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .mode__description {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .mode__features {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
        }

        .mode__features li {
            color: #333;
            position: relative;
            padding-left: 1.5rem;
        }

        .mode__features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-weight: bold;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat {
            padding: 2rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat__number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat__label {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .requirements {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .requirement-card {
            padding: 3rem 2rem;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .requirement-card__header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .requirement-card__icon {
            font-size: 2rem;
            margin-right: 1rem;
        }

        .requirement-card__title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fff;
        }

        .requirement-card__list {
            list-style: none;
        }

        .requirement-card__list li {
            color: rgba(255, 255, 255, 0.8);
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .requirement-card__list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #00d4ff;
            font-weight: bold;
        }

        .faq {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq__item {
            margin-bottom: 1rem;
            background: linear-gradient(145deg, rgba(0, 212, 255, 0.05), rgba(255, 107, 53, 0.05));
            border-radius: 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .faq__question {
            width: 100%;
            padding: 1.5rem 2rem;
            background: none;
            border: none;
            color: #333;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq__question:hover {
            color: #00d4ff;
        }

        .faq__question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .faq__question--active::after {
            transform: rotate(45deg);
        }

        .faq__answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #666;
            line-height: 1.6;
        }

        .faq__answer--active {
            padding: 0 2rem 1.5rem;
            max-height: 200px;
        }

        .cta {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 53, 0.1));
            border-radius: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .download-buttons {
            text-align: center;
            margin-top: 2rem;
        }

        .cta__button {
            display: inline-block;
            color: #fff;
            text-decoration: none;
            border-radius: 15px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .cta__button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
        }

        .cta__button img {
            width: 200px;
            height: 100px;
            object-fit: contain;
        }

        .footer {
            background-color: #000;
            padding: 3rem 0 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer__container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .footer__logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00d4ff;
            text-decoration: none;
            background: linear-gradient(45deg, #00d4ff, #ff6b35);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer__nav {
            display: flex;
            gap: 2rem;
        }

        .footer__link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .footer__link:hover {
            color: #00d4ff;
        }

        .footer__copyright {
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .header__nav {
                display: none;
            }

            .header__burger {
                display: flex;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .requirements {
                grid-template-columns: 1fr;
            }

            .mode__features {
                grid-template-columns: 1fr;
            }

            .hero__buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer__container {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .footer__nav {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .section {
                padding: 3rem 0;
            }

            .stats {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
            }
        }