        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff9f0;
            color: #332718;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        header {
            background-color: #b02a2a;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            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 {
            color: #ffdd99;
            font-size: 28px;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffffff;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .desktop-nav a:hover {
            color: #ffdd99;
        }
        .desktop-nav .daman-link {
            color: #ffdd99;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            color: #ffffff;
            font-size: 24px;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 65px;
            left: 0;
            right: 0;
            background-color: #b02a2a;
            padding: 20px;
            box-shadow: 0 5px 8px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            gap: 15px;
        }
        .mobile-nav a {
            color: #ffffff;
            text-decoration: none;
            font-size: 16px;
            display: block;
            padding: 8px 0;
        }
        .mobile-nav .daman-link {
            color: #ffdd99;
            font-weight: bold;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #b02a2a;
            font-size: 34px;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #ffdd99;
        }
        h2 {
            color: #b02a2a;
            font-size: 26px;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #ff9933;
        }
        h3 {
            color: #8b2323;
            font-size: 22px;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            color: #b02a2a;
            font-weight: bold;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .btn {
            display: inline-block;
            padding: 14px 30px;
            background-color: #b02a2a;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        .btn:hover {
            background-color: #d32f2f;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2e7d32;
        }
        .download-btn:hover {
            background-color: #388e3c;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 3px solid #ffdd99;
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff3e0;
            border-radius: 8px;
            border: 2px dashed #ff9933;
        }
        .stat-number {
            font-size: 32px;
            font-weight: bold;
            color: #b02a2a;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 16px;
            color: #5d4037;
        }
        .review-container {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border-left: 5px solid #ff9933;
        }
        .reviewer {
            font-weight: bold;
            color: #8b2323;
            font-size: 18px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 10px;
            font-size: 20px;
        }
        .review-text {
            font-size: 17px;
            line-height: 1.7;
        }
        .regional-tabs {
            margin: 30px 0;
        }
        .tab-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }
        .tab-btn {
            padding: 10px 20px;
            background-color: #fff3e0;
            border: 2px solid #ff9933;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tab-btn.active {
            background-color: #b02a2a;
            color: #ffffff;
            border-color: #b02a2a;
        }
        .tab-content {
            display: none;
            background-color: #ffffff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .tab-content.active {
            display: block;
        }
        .guides-list {
            margin: 20px 0;
            padding-left: 25px;
        }
        .guides-list li {
            margin-bottom: 15px;
            font-size: 17px;
        }
        .guides-list li::marker {
            color: #b02a2a;
            font-size: 18px;
        }
        .tag-container {
            margin: 40px 0;
            padding: 20px;
            background-color: #fff3e0;
            border-radius: 8px;
        }
        .tag-container h3 {
            margin-bottom: 15px;
        }
        .tag {
            display: inline-block;
            background-color: #ffdd99;
            color: #b02a2a;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #b02a2a;
            color: #ffffff;
        }
        footer {
            background-color: #332718;
            color: #ffffff;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #ffdd99;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff9933;
            display: inline-block;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 15px 0;
        }
        .game-type {
            color: #ffdd99;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .footer-links {
            margin: 15px 0;
        }
        .footer-links a {
            color: #ffdd99;
            text-decoration: none;
            display: block;
            margin: 8px 0;
            font-size: 16px;
        }
        .footer-links a:hover {
            color: #ffffff;
            text-decoration: underline;
        }
        .recommendation {
            font-size: 17px;
            line-height: 1.8;
            margin: 20px 0;
        }
        .recommendation .daman-highlight {
            color: #ffdd99;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #554433;
            margin-top: 20px;
            font-size: 15px;
            color: #cccccc;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p, .review-text, .guides-list li {
                font-size: 16px;
            }
            .btn {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                font-size: 17px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .stat-number {
                font-size: 28px;
            }
        }
