* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #8b4513, #d2691e);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 10px 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: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            color: #ffd700;
            background-color: rgba(255,255,255,0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.8rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 4px solid #ffb347;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b4513;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #ffb347;
        }
        h3 {
            color: #cd853f;
            font-size: 1.7rem;
            margin: 35px 0 20px;
            position: relative;
            padding-bottom: 8px;
        }
        h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #ffb347;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
            text-decoration: underline dotted #ffb347;
            text-underline-offset: 4px;
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            align-items: center;
        }
        .btn {
            padding: 18px 35px;
            font-size: 1.3rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 220px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .download-btn {
            background: linear-gradient(135deg, #2e8b57, #3cb371);
            color: white;
        }
        .login-btn {
            background: linear-gradient(135deg, #b22222, #cd5c5c);
            color: white;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .btn:active {
            transform: translateY(-2px);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-top: 5px solid #ffb347;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #fff3e0;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        .review {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }
        .review:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .reviewer {
            font-weight: bold;
            color: #cd853f;
            margin-bottom: 8px;
            font-size: 1.2rem;
        }
        .rating {
            color: #ffb347;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        .tag-container {
            margin: 50px 0;
        }
        .tag {
            display: inline-block;
            background-color: #cd853f;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            margin: 0 12px 12px 0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #8b4513;
            transform: translateY(-3px);
        }
        .game-type-nav {
            margin: 40px 0 60px;
            padding: 20px;
            background-color: #fff3e0;
            border-radius: 10px;
        }
        .game-type {
            display: inline-block;
            margin-right: 25px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #8b4513;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .game-type:hover {
            color: #ffb347;
            background-color: #8b4513;
        }
        footer {
            background: linear-gradient(135deg, #8b4513, #d2691e);
            color: white;
            padding: 50px 0 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
            display: inline-block;
            width: 100%;
            vertical-align: top;
        }
        @media (min-width: 768px) {
            .footer-section {
                width: 30%;
                margin-right: 3%;
            }
            .footer-section:last-child {
                margin-right: 0;
            }
        }
        .footer-section h3 {
            color: #ffb347;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }
        .footer-section ul {
            list-style-type: none;
        }
        .footer-section ul li {
            margin-bottom: 12px;
        }
        .footer-section ul li a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section ul li a:hover {
            color: #ffb347;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            font-size: 1rem;
            color: #e0e0e0;
        }
        .daman-promo {
            background-color: #fff3e0;
            padding: 30px;
            border-radius: 12px;
            margin: 50px 0;
            text-align: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #cd853f;
        }
        .daman-link {
            color: #8b4513;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .daman-link:hover {
            color: #ffb347;
        }
        .recipe-box {
            background-color: #fffaf0;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border-left: 4px solid #cd853f;
        }
        .recipe-title {
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        .region-badge {
            display: inline-block;
            background-color: #fff0e6;
            color: #8b4513;
            padding: 5px 15px;
            border-radius: 20px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #8b4513, #d2691e);
                padding: 25px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
            }
            .btn {
                width: 100%;
            }
            .stat-number {
                font-size: 2rem;
            }
        }
