* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a365d;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffcc00;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffcc00;
            transition: width 0.3s;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a365d;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 20px 0;
            border-bottom: 4px solid #ffcc00;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1a365d;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ffcc00;
        }
        h3 {
            color: #2d3748;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e2e8f0;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .btn-container {
            margin: 40px 0;
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 15px 30px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            transition: all 0.3s;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            min-width: 200px;
        }
        .download-btn {
            background-color: #22c55e;
            color: white;
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .btn:active {
            transform: translateY(-2px);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .image-caption {
            margin-top: 15px;
            font-style: italic;
            color: #64748b;
            font-size: 1rem;
        }
        .highlight {
            font-weight: bold;
            color: #dc2626;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8fafc;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.05);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: #10b981;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #64748b;
            font-size: 1rem;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }
        .review {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f1f5f9;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #1e293b;
            font-size: 1.1rem;
        }
        .rating {
            color: #f59e0b;
            margin: 8px 0;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #3b82f6;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #2563eb;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 25px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #3b82f6;
            font-weight: bold;
            font-size: 1.05rem;
            transition: color 0.3s;
        }
        .game-type:hover {
            color: #1d4ed8;
            text-decoration: underline;
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffcc00;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2d4263;
            margin-top: 20px;
            color: #cbd5e1;
            font-size: 0.9rem;
        }
        .community-quote {
            font-style: italic;
            border-left: 4px solid #ffcc00;
            padding-left: 20px;
            margin: 30px 0;
            color: #475569;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a365d;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                padding: 15px 0;
            }
            h2 {
                font-size: 1.7rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                line-height: 1.7;
            }
            .btn-container {
                flex-direction: column;
                align-items: stretch;
            }
            .btn {
                width: 100%;
                padding: 12px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .footer-section {
                margin-bottom: 30px;
            }
        }
