* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #b81c23, #e63946);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 5px;
            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;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #8b0000;
            margin: 25px 0 15px;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.4rem;
            text-align: center;
            margin: 35px 0 25px;
            color: #b81c23;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #b81c23;
            padding-left: 15px;
            margin-top: 40px;
            color: #8b0000;
        }
        h3 {
            font-size: 1.4rem;
            color: #b81c23;
            margin-top: 25px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b81c23;
            text-shadow: 0 0 1px rgba(139,0,0,0.3);
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #b81c23;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(184,28,35,0.3);
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #8b0000;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(184,28,35,0.4);
        }
        .btn-secondary {
            background-color: #ffd700;
            color: #8b0000;
            box-shadow: 0 4px 8px rgba(255,215,0,0.3);
        }
        .btn-secondary:hover {
            background-color: #ffc107;
            color: #8b0000;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
            border-top: 5px solid #ffd700;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff8f0;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #b81c23;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #555;
            font-size: 0.95rem;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            border-left: 5px solid #ffd700;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .reviewer {
            font-weight: bold;
            color: #8b0000;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffd700;
            font-weight: bold;
            font-size: 1.1rem;
            text-shadow: 0 0 2px rgba(255,215,0,0.5);
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff8f0;
            color: #8b0000;
            padding: 8px 15px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid #ffd700;
        }
        .tag:hover {
            background-color: #b81c23;
            color: white;
            transform: translateY(-2px);
            border-color: #b81c23;
        }
        .game-type {
            margin: 45px 0 25px;
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .game-type h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        .game-type a {
            color: #b81c23;
            text-decoration: none;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s ease;
        }
        .game-type a:hover {
            color: #8b0000;
            text-decoration: underline;
        }
        footer {
            background-color: #8b0000;
            color: white;
            padding: 50px 20px 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
            display: inline-block;
            vertical-align: top;
            width: 30%;
            margin-right: 3%;
        }
        .footer-section:last-child {
            margin-right: 0;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 8px;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #fff8f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffd700;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 40px;
            font-size: 0.95rem;
            color: #ffd700;
        }
        .recommendation {
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border: 2px dashed #ffd700;
        }
        .recommendation p {
            text-align: center;
            font-size: 1.1rem;
            color: #8b0000;
            font-weight: 500;
        }
        .feature-list {
            margin: 25px 0 35px 30px;
        }
        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }
        .feature-list li:before {
            content: "✓";
            color: #b81c23;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #ffd700;
            padding-left: 20px;
            margin: 30px 0;
            color: #555;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                gap: 15px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 1.9rem;
                margin: 25px 0;
            }
            h2 {
                font-size: 1.5rem;
                margin-top: 30px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-section {
                width: 100%;
                margin-right: 0;
                margin-bottom: 30px;
            }
            .btn {
                padding: 12px 22px;
                font-size: 1rem;
                width: 80%;
                margin-bottom: 15px;
            }
            .btn-container {
                gap: 15px;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
            }
        }
