* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #0f172a;
            color: #e2e8f0;
            padding-bottom: 80px;
        }
        header {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 800;
            color: #f8fafc;
            text-decoration: none;
            text-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #e0e7ff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #bfdbfe;
            border-bottom: 2px solid #bfdbfe;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #f8fafc;
            font-size: 1.9rem;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #c4b5fd;
            margin: 0 0 35px;
            font-size: 2.6rem;
            text-align: center;
            line-height: 1.4;
            text-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
        }
        h2 {
            color: #a78bfa;
            margin: 45px 0 20px;
            font-size: 2rem;
            border-left: 5px solid #a78bfa;
            padding-left: 18px;
            line-height: 1.5;
        }
        h3 {
            color: #c4b5fd;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            line-height: 1.5;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        .highlight {
            font-weight: 700;
            color: #a78bfa;
            text-shadow: 0 0 5px rgba(167, 139, 250, 0.2);
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: #7c3aed;
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            margin: 15px 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
            font-size: 1.1rem;
        }
        .btn:hover {
            background-color: #6d28d9;
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
        }
        .btn-download {
            background-color: #0ea5e9;
        }
        .btn-download:hover {
            background-color: #0284c7;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
            border: 1px solid rgba(167, 139, 250, 0.2);
        }
        .stats-box {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            border-left: 5px solid #7c3aed;
        }
        .stats-box p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        .tag {
            display: inline-block;
            background-color: #334155;
            padding: 8px 18px;
            border-radius: 30px;
            margin: 10px 8px;
            text-decoration: none;
            color: #c4b5fd;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #475569;
            transform: translateY(-3px);
            border-color: #a78bfa;
        }
        .game-type {
            margin: 20px 0 30px;
        }
        .game-type a {
            color: #a78bfa;
            text-decoration: none;
            font-weight: 600;
            margin-right: 25px;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }
        .game-type a:hover {
            text-decoration: underline;
            color: #c4b5fd;
        }
        footer {
            background-color: #1e293b;
            color: #e2e8f0;
            padding: 60px 20px 40px;
            margin-top: 80px;
            border-top: 1px solid rgba(167, 139, 250, 0.1);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #a78bfa;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #334155;
            margin-top: 30px;
            font-size: 1rem;
            color: #94a3b8;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 25px;
        }
        ul li {
            margin-bottom: 12px;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #4f46e5, #7c3aed);
                padding: 30px 25px;
                gap: 25px;
                box-shadow: 0 15px 20px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin-bottom: 25px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 35px 0 18px;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 12px auto;
                padding: 14px 25px;
            }
            .stats-box {
                padding: 25px;
            }
            .image-container {
                margin: 30px 0;
            }
        }
