* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f0f4f8;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-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: #f1c40f;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            color: #f1c40f;
            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;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #1a5276;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #f1c40f;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1a5276;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding: 10px 15px;
            background-color: #e8f4f8;
            border-left: 5px solid #f1c40f;
            border-radius: 0 5px 5px 0;
        }
        h3 {
            color: #1a5276;
            font-size: 1.7rem;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px dotted #85c1e9;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px 15px;
            background-color: #1a5276;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.25rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .download-btn {
            background-color: #27ae60;
        }
        .download-btn:hover {
            background-color: #219653;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight {
            font-weight: bold;
            color: #1a5276;
            text-decoration: underline dotted #f1c40f;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #e8f4f8;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #1a5276;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #666;
            font-size: 1.05rem;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 4px solid #f1c40f;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            align-items: center;
        }
        .reviewer {
            font-weight: bold;
            color: #1a5276;
            font-size: 1.1rem;
        }
        .rating {
            color: #f1c40f;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #1a5276;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .tag:hover {
            background-color: #d6eaf8;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 50px 0;
            padding: 20px;
            background-color: #e8f4f8;
            border-radius: 10px;
        }
        .type-link {
            color: #1a5276;
            text-decoration: none;
            margin-right: 25px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .type-link:hover {
            color: #0b2c40;
            text-decoration: underline;
        }
        ul {
            margin: 20px 0 30px 40px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .industry-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .industry-table th, .industry-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e8f4f8;
        }
        .industry-table th {
            background-color: #1a5276;
            color: white;
        }
        .industry-table tr:hover {
            background-color: #f8fbff;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #f1c40f;
            margin-bottom: 20px;
            border-bottom: 2px solid #555;
            padding-bottom: 10px;
            font-size: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            margin-top: 40px;
            color: #ccc;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo {
                margin-bottom: 15px;
            }
            nav {
                width: 100%;
            }
            nav ul {
                flex-direction: column;
                display: none;
                width: 100%;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                width: 100%;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                display: block;
                width: 90%;
                margin: 15px auto;
                text-align: center;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            ul {
                margin-left: 25px;
            }
            .industry-table {
                font-size: 0.9rem;
            }
            .industry-table th, .industry-table td {
                padding: 10px;
            }
        }
