* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: bold;
            color: #fbbf24;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            color: #fbbf24;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0f172a;
            margin: 30px 0 20px;
            font-size: 2.4rem;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #fbbf24;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #1e293b;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            height: 60%;
            width: 4px;
            background-color: #f59e0b;
        }
        h3 {
            color: #334155;
            margin: 30px 0 15px;
            font-size: 1.4rem;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #475569;
        }
        .highlight {
            font-weight: bold;
            color: #0f172a;
            text-decoration: underline dotted #f59e0b;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            margin: 10px 8px;
            background-color: #2563eb;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
        }
        .btn-download {
            background-color: #10b981;
        }
        .btn-download:hover {
            background-color: #059669;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
        }
        .btn-login {
            background-color: #f59e0b;
        }
        .btn-login:hover {
            background-color: #d97706;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }
        .image-caption {
            margin-top: 12px;
            font-style: italic;
            color: #64748b;
            font-size: 0.95rem;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
            border-top: 5px solid #fbbf24;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f8fafc;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 8px;
            display: block;
        }
        .stat-label {
            color: #64748b;
            font-size: 0.95rem;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 22px;
            margin: 25px 0;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #3b82f6;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f1f5f9;
        }
        .reviewer {
            font-weight: 600;
            color: #1e293b;
        }
        .rating {
            color: #f59e0b;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        .rating:before {
            content: '★★★★★';
            background: linear-gradient(90deg, #f59e0b var(--rating), #e2e8f0 var(--rating));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .tag-container {
            margin: 35px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        .tag {
            display: inline-block;
            background-color: #f1f5f9;
            color: #334155;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #e2e8f0;
            color: #0f172a;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 40px 0 25px;
            padding: 15px;
            background-color: #f8fafc;
            border-radius: 8px;
        }
        .type-link {
            color: #2563eb;
            text-decoration: none;
            margin-right: 18px;
            font-size: 1.05rem;
            transition: color 0.2s ease;
        }
        .type-link:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        footer {
            background-color: #0f172a;
            color: white;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #fbbf24;
            margin-bottom: 20px;
            font-size: 1.3rem;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(251, 191, 36, 0.3);
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .footer-section ul li a:hover {
            color: #fbbf24;
            padding-left: 5px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #1e293b;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #94a3b8;
        }
        .footer-bottom a {
            color: #fbbf24;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        .cta-section {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: white;
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            margin: 40px 0;
            box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
        }
        .cta-section h3 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.6rem;
        }
        .spacer {
            height: 20px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
                display: block;
            }
            nav {
                width: 100%;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            nav ul li:last-child {
                border-bottom: none;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0 15px;
            }
            h2 {
                font-size: 1.5rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.25rem;
                margin: 25px 0 12px;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            .stat-value {
                font-size: 1.8rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .review-box {
                padding: 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .tag {
                display: block;
                width: auto;
                text-align: center;
            }
            .type-link {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
