* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f5f2ea;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header-wrapper {
            background-color: #6b4226;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px 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: 900;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #ffd700;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .main-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .main-nav a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .daman-link {
            background-color: #ffd700;
            color: #6b4226 !important;
            padding: 5px 12px;
            border-radius: 4px;
        }
        .daman-link:hover {
            background-color: #ffc107 !important;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #6b4226;
            font-size: 2.4rem;
            text-align: center;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #6b4226;
            font-size: 1.8rem;
            margin: 50px 0 25px;
            border-bottom: 3px solid #8b5a2b;
            padding-bottom: 10px;
        }
        h3 {
            color: #8b5a2b;
            font-size: 1.4rem;
            margin: 35px 0 18px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #6b4226;
        }
        .btn-container {
            text-align: center;
            margin: 60px 0;
        }
        .action-btn {
            display: inline-block;
            padding: 16px 32px;
            margin: 0 12px;
            background-color: #6b4226;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.15rem;
            font-weight: 700;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            transition: all 0.3s;
        }
        .action-btn:hover {
            background-color: #8b5a2b;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .img-container {
            text-align: center;
            margin: 50px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }
        .stats-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: 700;
            color: #6b4226;
        }
        .rating {
            color: #ffd700;
            margin: 12px 0;
            font-size: 1.2rem;
        }
        .tips-list {
            margin: 25px 0 25px 40px;
        }
        .tips-list li {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .tags-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f0e6d9;
            color: #6b4226;
            padding: 8px 18px;
            border-radius: 20px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #e6d2b3;
        }
        .game-types {
            margin: 40px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 22px;
            text-decoration: none;
            color: #6b4226;
            font-weight: 700;
            font-size: 1.05rem;
        }
        .game-type:hover {
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        footer {
            background-color: #2d2d2d;
            color: white;
            padding: 50px 0 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 10px;
            margin-bottom: 25px;
        }
        .daman-recommend {
            font-size: 1.1rem;
            margin: 30px 0;
            padding: 15px;
            background-color: #444;
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #555;
            margin-top: 40px;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            .mobile-menu-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                width: 100%;
                display: none;
            }
            .main-nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .action-btn {
                display: block;
                margin: 15px auto;
                width: 90%;
                text-align: center;
            }
            .stat-item {
                flex-direction: column;
                gap: 5px;
            }
        }
