        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #FFF8E6;
            color: #2D2D2D;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        header {
            background-color: #9B2226;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .header-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #FFD700;
            font-size: 1.6rem;
            font-weight: 800;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: #FFFFFF;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .main-nav a:hover {
            color: #FFD700;
        }
        .main-nav .daman-link {
            color: #FFD700;
            font-weight: 600;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 15px;
        }
        h1 {
            color: #9B2226;
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 15px;
            border-bottom: 3px solid #FFD700;
            font-weight: 800;
        }
        h2 {
            color: #9B2226;
            font-size: 1.8rem;
            margin: 45px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #FFD700;
            font-weight: 700;
        }
        h3 {
            color: #C1121F;
            font-size: 1.4rem;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #9B2226;
            text-decoration: none;
        }
        .btn-group {
            text-align: center;
            margin: 45px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: #9B2226;
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #C1121F;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.18);
        }
        .btn i {
            margin-right: 8px;
        }
        .img-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 2px solid #FFE4B5;
        }
        .stats-box {
            background-color: #FFFFFF;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-card {
            text-align: center;
            padding: 20px 15px;
            background-color: #FFF0F0;
            border-radius: 8px;
            border: 1px solid #FFE4E1;
        }
        .stat-number {
            font-size: 2.1rem;
            font-weight: 800;
            color: #9B2226;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1rem;
            color: #4A4A4A;
            font-weight: 500;
        }
        .review-section {
            background-color: #FFFFFF;
            border-radius: 12px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .review-card {
            border-bottom: 1px solid #F0F0F0;
            padding: 20px 0;
        }
        .review-card:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: 700;
            color: #9B2226;
            margin-bottom: 5px;
            font-size: 1.05rem;
        }
        .rating {
            color: #FFD700;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        ul {
            margin: 0 0 25px 30px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.05rem;
        }
        .tag-group {
            margin: 50px 0 30px;
        }
        .tag {
            display: inline-block;
            background-color: #FFF0F0;
            color: #9B2226;
            padding: 9px 18px;
            border-radius: 25px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .tag:hover {
            background-color: #9B2226;
            color: #FFFFFF;
        }
        footer {
            background-color: #2D2D2D;
            color: #FFFFFF;
            padding: 45px 0 20px;
            margin-top: 60px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 8px;
            display: inline-block;
        }
        .game-type-nav {
            margin: 20px 0;
        }
        .game-type {
            display: inline-block;
            color: #FFE4B5;
            text-decoration: none;
            margin-right: 18px;
            margin-bottom: 12px;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #FFD700;
            text-decoration: underline;
        }
        .recommendation {
            background-color: #3A3A3A;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            font-size: 1.05rem;
            text-align: center;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #4A4A4A;
            margin-top: 30px;
            font-size: 0.95rem;
            color: #D0D0D0;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #9B2226;
                padding: 20px 15px;
                gap: 15px;
                box-shadow: 0 5px 8px rgba(0,0,0,0.2);
            }
            .main-nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            .btn {
                width: 100%;
                text-align: center;
                padding: 12px 20px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            p {
                text-align: left;
            }
        }
