* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header-wrapper {
            background-color: #6b4e34;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            color: #f5e1b5;
            font-size: 1.8rem;
            font-weight: 800;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav {
            display: flex;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f5e1b5;
            transition: width 0.3s ease;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .main-nav a:hover {
            color: #f5e1b5;
        }
        .daman-link {
            background-color: #f5e1b5;
            color: #6b4e34 !important;
            padding: 8px 18px;
            border-radius: 5px;
            font-weight: 700;
        }
        .daman-link:hover {
            background-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .daman-link:after {
            display: none;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #6b4e34;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 4px solid #a67c52;
        }
        h2 {
            color: #6b4e34;
            font-size: 2rem;
            margin: 50px 0 25px;
            padding-left: 15px;
            border-left: 5px solid #a67c52;
        }
        h3 {
            color: #6b4e34;
            font-size: 1.5rem;
            margin: 35px 0 20px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 700;
            color: #6b4e34;
        }
        strong {
            color: #6b4e34;
        }
        .btn-group {
            text-align: center;
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }
        .action-btn {
            display: inline-block;
            padding: 16px 35px;
            background-color: #a67c52;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
        }
        .action-btn:hover {
            background-color: #6b4e34;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2ecc71;
        }
        .download-btn:hover {
            background-color: #27ae60;
        }
        .login-btn {
            background-color: #3498db;
        }
        .login-btn:hover {
            background-color: #2980b9;
        }
        .image-box {
            text-align: center;
            margin: 50px 0;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.02);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .stat-card {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #6b4e34;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #555;
        }
        .custom-list {
            margin: 25px 0 35px 30px;
        }
        .custom-list li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            position: relative;
            padding-left: 10px;
        }
        .custom-list li:before {
            content: '•';
            color: #6b4e34;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        .tags-section {
            margin: 60px 0;
            padding: 30px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .tag-link {
            display: inline-block;
            background-color: #f0e6d6;
            color: #6b4e34;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag-link:hover {
            background-color: #6b4e34;
            color: #fff;
            transform: translateY(-3px);
        }
        .game-types-section {
            margin: 50px 0;
            padding: 30px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }
        .type-link {
            color: #6b4e34;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }
        .type-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #6b4e34;
            transition: width 0.3s ease;
        }
        .type-link:hover:after {
            width: 100%;
        }
        footer {
            background-color: #333;
            color: #fff;
            padding: 60px 0 30px;
            margin-top: 100px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-recommendation {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #f0f0f0;
            line-height: 1.8;
        }
        .daman-highlight {
            color: #f5e1b5;
            font-weight: 700;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #555;
            font-size: 1rem;
            color: #ccc;
        }
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }
            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #6b4e34;
                display: none;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                padding: 25px;
                gap: 20px;
            }
            .main-nav a {
                font-size: 1.1rem;
                display: block;
            }
            h1 {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.05rem;
                margin-bottom: 20px;
            }
            .btn-group {
                flex-direction: column;
                padding: 0 15px;
                gap: 15px;
            }
            .action-btn {
                width: 100%;
                text-align: center;
                padding: 14px 20px;
                font-size: 1.1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stat-card {
                padding: 25px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .custom-list {
                margin: 20px 0 30px 25px;
            }
            .tags-container, .type-links {
                gap: 10px;
            }
            .tag-link {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            footer {
                padding: 40px 0 20px;
            }
        }
