* {
            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: 40px;
        }
        header {
            background: linear-gradient(135deg, #0f4c81, #1e3a8a);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            text-align: center;
            color: #ffdd00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin: 10px 0;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 14px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 15px;
        }
        h1 {
            color: #0f4c81;
            font-size: 2.4rem;
            text-align: center;
            margin: 25px 0 40px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffdd00;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #1e3a8a;
            font-size: 1.9rem;
            margin: 40px 0 20px;
            padding-left: 10px;
            border-left: 4px solid #ffdd00;
        }
        h3 {
            color: #0f4c81;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #0f4c81;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ffdd00;
            color: #0f4c81;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            margin: 0 10px 15px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #e6c800;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 10px;
            background-color: #f0f7ff;
            border-radius: 8px;
            border: 1px solid #dbeafe;
        }
        .stat-number {
            font-size: 2.3rem;
            font-weight: bold;
            color: #0f4c81;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #475569;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.06);
            border-left: 4px solid #3b82f6;
        }
        .reviewer {
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffdd00;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #dbeafe;
            color: #1e3a8a;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 5px 8px 5px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ffdd00;
            color: #0f4c81;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 30px 0 40px;
        }
        .game-type {
            display: inline-block;
            margin: 0 12px 10px 0;
        }
        .game-type a {
            color: #1e3a8a;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }
        .game-type a:hover {
            border-bottom: 2px solid #ffdd00;
            color: #0f4c81;
        }
        footer {
            background-color: #0f4c81;
            color: white;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffdd00;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 0.9rem;
            color: #e2e8f0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                text-align: center;
                margin-top: 20px;
                padding: 15px 0;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
                margin: 20px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1rem;
                line-height: 1.7;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-item {
                padding: 15px 10px;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
