* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #1a237e;
            color: #ffffff;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            letter-spacing: 0.5px;
            color: #ffeb3b;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 12px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 8px;
            border-radius: 3px;
        }
        .nav-links a:hover {
            color: #ffeb3b;
            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;
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 15px;
        }
        h1 {
            color: #1a237e;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.4rem;
            padding: 0 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #303f9f;
            margin: 40px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffeb3b;
            font-size: 1.9rem;
        }
        h3 {
            color: #3f51b5;
            margin: 30px 0 15px;
            font-size: 1.5rem;
            padding-left: 5px;
            border-left: 4px solid #ffeb3b;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            margin: 0 10px 15px;
            background-color: #3f51b5;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #303f9f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #f57c00;
        }
        .btn-download:hover {
            background-color: #e65100;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            border: 1px solid #ddd;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            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(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 18px 10px;
            background-color: #e8eaf6;
            border-radius: 8px;
            border: 1px solid #c5cae9;
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: bold;
            color: #1a237e;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #333;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 22px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #3f51b5;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .reviewer {
            font-weight: bold;
            color: #303f9f;
            font-size: 1.05rem;
        }
        .rating {
            color: #ffb300;
            font-weight: bold;
            font-size: 1.1rem;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #e8eaf6;
            color: #1a237e;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 6px 4px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .tag:hover {
            background-color: #c5cae9;
            border-color: #9fa8da;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 40px 0 25px;
            padding: 15px;
            background-color: #e8eaf6;
            border-radius: 8px;
        }
        .game-type-link {
            color: #303f9f;
            text-decoration: none;
            margin-right: 18px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .game-type-link:hover {
            color: #1a237e;
            text-decoration: underline;
        }
        footer {
            background-color: #1a237e;
            color: #f0f0f0;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .footer-section:last-child {
            border-bottom: none;
        }
        .footer-section h4 {
            color: #ffeb3b;
            margin-bottom: 18px;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffeb3b;
            padding-left: 5px;
        }
        .recommendation {
            background-color: #fff8e1;
            padding: 22px;
            border-radius: 8px;
            margin: 40px 0;
            border-left: 5px solid #ffb300;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #d0d0d0;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .strategy-box {
            background-color: #f0f7ff;
            border-radius: 8px;
            padding: 20px;
            margin: 25px 0;
            border: 1px solid #bbdefb;
        }
        .strategy-title {
            font-weight: bold;
            color: #1565c0;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .event-date {
            display: inline-block;
            background-color: #ffebee;
            color: #c62828;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
            margin-right: 10px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #1a237e;
                padding: 20px 0;
                margin-top: 10px;
                border-radius: 8px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
                width: 90%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1rem;
                margin-bottom: 20px;
                text-align: left;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .review-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .game-type-link {
                display: inline-block;
                margin-bottom: 10px;
            }
        }
