* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fdf9f1;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 32px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            color: #ffdd00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        nav ul li {
            margin: 5px 8px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 5px 10px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffdd00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 20px;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #e63946;
            font-size: 34px;
            margin: 30px 0 25px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffdd00;
        }
        h2 {
            color: #1d3557;
            font-size: 26px;
            margin: 40px 0 20px;
            border-left: 4px solid #e63946;
            padding-left: 15px;
        }
        h3 {
            color: #457b9d;
            font-size: 21px;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #457b9d;
        }
        p {
            margin-bottom: 22px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
            text-decoration: none;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 13px 32px;
            margin: 0 10px 15px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #d62828;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .btn-secondary {
            background-color: #457b9d;
        }
        .btn-secondary:hover {
            background-color: #356587;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        .image-caption {
            text-align: center;
            margin-top: 12px;
            font-style: italic;
            color: #666;
            font-size: 15px;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #457b9d;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        .stat-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .stat-label {
            font-weight: bold;
            color: #1d3557;
            font-size: 16px;
        }
        .stat-value {
            color: #e63946;
            font-weight: 600;
            font-size: 16px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            position: relative;
        }
        .review-container:before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 60px;
            color: #f0f0f0;
            font-family: Georgia, serif;
        }
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-left: 10px;
        }
        .reviewer-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background-color: #f0f0f0;
            margin-right: 15px;
            overflow: hidden;
            border: 2px solid #f0f0f0;
        }
        .reviewer-info h4 {
            margin: 0 0 3px 0;
            color: #1d3557;
            font-size: 17px;
        }
        .review-date {
            color: #777;
            font-size: 14px;
        }
        .stars {
            color: #ffdd00;
            margin: 12px 0;
            font-size: 18px;
        }
        .tips-list {
            margin-left: 30px;
            margin-bottom: 35px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 17px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: '•';
            color: #e63946;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f1f5f9;
            color: #1d3557;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .tag:hover {
            background-color: #457b9d;
            color: white;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 45px 0;
            padding-top: 15px;
            border-top: 1px solid #eaeaea;
        }
        .game-type {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #457b9d;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .game-type:hover {
            color: #e63946;
            text-decoration: underline;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ffdd00;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #f1f5f9;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .footer-links a:hover {
            color: #ffdd00;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 30px;
            font-size: 15px;
            color: #a8dadc;
        }
        .recommendation {
            background-color: #f1f5f9;
            padding: 30px;
            border-radius: 10px;
            margin: 50px 0;
            text-align: center;
            border-left: 5px solid #457b9d;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .recommendation p {
            font-size: 18px;
            color: #1d3557;
            margin-bottom: 0;
            text-align: center;
        }
        .recommendation a {
            color: #e63946;
            font-weight: bold;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .feature-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-top: 4px solid #e63946;
        }
        .feature-box h4 {
            color: #1d3557;
            margin-bottom: 15px;
            font-size: 19px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                padding-top: 15px;
                border-top: 1px solid rgba(255,255,255,0.2);
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0 20px;
            }
            h2 {
                font-size: 23px;
                margin: 35px 0 15px;
            }
            h3 {
                font-size: 19px;
                margin: 25px 0 12px;
            }
            p {
                font-size: 16px;
                margin-bottom: 20px;
            }
            .btn {
                display: block;
                margin: 12px auto;
                width: 90%;
                padding: 12px 20px;
                font-size: 17px;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-value {
                margin-top: 5px;
                margin-left: 10px;
            }
            .tips-list {
                margin-left: 20px;
            }
            .image-container {
                margin: 25px 0;
            }
            .review-container {
                padding: 20px 15px 15px;
            }
            .footer-section {
                margin-bottom: 30px;
            }
        }
