        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fffbf0;
            color: #5d4037;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
        }
        .btn-download {
            background-color: #c62828;
            color: white;
            margin-right: 15px;
        }
        .btn-download:hover {
            background-color: #b71c1c;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #ff8f00;
            color: white;
        }
        .btn-login:hover {
            background-color: #f57c00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(93,64,55,0.15);
            border: 1px solid #f0e0d0;
        }
        .stats-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 10px rgba(93,64,55,0.1);
            border: 1px solid #f0e8dd;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0e8dd;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .stat-label {
            font-weight: 600;
            color: #6d4c41;
        }
        .stat-value {
            font-weight: bold;
            color: #8d6e63;
            font-size: 1.05rem;
        }
        .tag {
            display: inline-block;
            background-color: #ffebee;
            color: #c62828;
            padding: 6px 14px;
            border-radius: 20px;
            margin: 8px 6px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #ffcdd2;
            color: #b71c1c;
            transform: scale(1.05);
        }
        .game-type-link {
            display: inline-block;
            color: #c62828;
            font-weight: 600;
            margin: 0 12px 10px 0;
            padding-bottom: 2px;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }
        .game-type-link:hover {
            border-bottom: 2px solid #c62828;
        }
        header {
            background-color: #bf360c;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .header-wrapper {
            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: #ffeb3b;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.6rem;
            cursor: pointer;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            margin-left: 30px;
        }
        .nav-menu li a {
            color: white;
            font-size: 1.05rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .nav-menu li a:hover {
            color: #ffeb3b;
        }
        .nav-menu li a.daman-link {
            color: #ffeb3b;
            font-weight: bold;
        }
        .nav-menu li a.daman-link:hover {
            color: #fff8e1;
        }
        h1 {
            color: #bf360c;
            font-size: 2.4rem;
            margin: 40px 0 30px;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(93,64,55,0.1);
        }
        h2 {
            color: #bf360c;
            font-size: 1.9rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #e0c8b0;
        }
        h3 {
            color: #6d4c41;
            font-size: 1.5rem;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #bf360c;
        }
        .emoji-highlight {
            font-size: 1.2em;
            margin-right: 8px;
        }
        footer {
            background-color: #4e342e;
            color: white;
            padding: 50px 0 25px;
            margin-top: 70px;
        }
        .footer-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            font-size: 1.4rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #6d4c41;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 20px;
            border-top: 1px solid #6d4c41;
            font-size: 0.95rem;
            color: #e0d0c0;
        }
        .daman-recommendation {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #f5f5f5;
        }
        .daman-recommendation strong {
            color: #ffeb3b;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #bf360c;
                padding: 25px 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                margin: 15px 0;
                margin-left: 0;
            }
            .nav-menu li a {
                font-size: 1.1rem;
            }
            h1 {
                font-size: 2rem;
                margin: 30px 0 25px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 30px 0 18px;
            }
            p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .btn {
                padding: 12px 24px;
                font-size: 1rem;
                width: 100%;
                margin: 0 0 15px 0;
            }
            .btn-download {
                margin-right: 0;
            }
            .stat-item {
                flex-direction: column;
                padding: 15px 0;
            }
            .stat-value {
                margin-top: 5px;
            }
            .image-container {
                margin: 25px 0;
            }
            .stats-card {
                padding: 20px;
            }
            .footer-section {
                margin-bottom: 30px;
            }
        }
