* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #0a4da2;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            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: #ffcc00;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            color: #ffcc00;
            background-color: rgba(255,255,255,0.1);
        }
        .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: #0a4da2;
            font-size: 2.4rem;
            margin-bottom: 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffcc00;
        }
        h2 {
            color: #0a4da2;
            font-size: 1.9rem;
            margin: 40px 0 20px;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
        }
        h3 {
            color: #0a4da2;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #0a4da2;
        }
        h4 {
            color: #2c3e50;
            font-size: 1.2rem;
            margin: 20px 0 12px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.8;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            margin: 0 10px 15px;
            background-color: #0a4da2;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 1.05rem;
        }
        .btn:hover {
            background-color: #083a7d;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #28a745;
        }
        .download-btn:hover {
            background-color: #218838;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            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(200px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #f0f7ff;
            border-radius: 8px;
            border-top: 4px solid #0a4da2;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #0a4da2;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1rem;
            color: #555;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .review {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #0a4da2;
            margin-bottom: 8px;
        }
        .rating {
            color: #ffc107;
            margin-bottom: 12px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4ff;
            color: #0a4da2;
            padding: 8px 18px;
            border-radius: 20px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #bed6eb;
        }
        .tag:hover {
            background-color: #bed6eb;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 25px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #0a4da2;
            font-weight: 500;
            position: relative;
            padding-bottom: 2px;
        }
        .game-type:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .game-type:hover:after {
            width: 100%;
        }
        footer {
            background-color: #0a4da2;
            color: white;
            padding: 40px 0 20px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #ffcc00;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 35px;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.2);
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 500;
        }
        .toc {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .toc h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .toc ul {
            list-style-position: inside;
            padding-left: 10px;
        }
        .toc li {
            margin-bottom: 8px;
        }
        .toc a {
            color: #0a4da2;
            text-decoration: none;
        }
        .toc a:hover {
            text-decoration: underline;
            color: #083a7d;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #0a4da2;
                padding: 20px;
                box-shadow: 0 8px 10px rgba(0,0,0,0.15);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
