* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #3a2e18;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #b35c00, #ff9500);
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 12px 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: #ffffff;
            font-size: 1.7rem;
            font-weight: bold;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 28px;
        }
        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 35px 20px;
        }
        h1 {
            color: #b35c00;
            font-size: 2.6rem;
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 18px;
            border-bottom: 4px solid #ffb74d;
        }
        h2 {
            color: #b35c00;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-left: 12px;
            border-left: 5px solid #ffb74d;
        }
        h3 {
            color: #b35c00;
            font-size: 1.5rem;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #b35c00;
        }
        .btn-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
            justify-content: center;
        }
        .btn {
            padding: 15px 30px;
            font-size: 1.15rem;
            font-weight: bold;
            text-decoration: none;
            border-radius: 7px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
            min-width: 200px;
        }
        .download-btn {
            background-color: #43a047;
            color: white;
        }
        .login-btn {
            background-color: #1e88e5;
            color: white;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            margin-bottom: 12px;
        }
        .image-caption {
            color: #6d5b3a;
            font-size: 0.95rem;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            background-color: #fff0e0;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #b35c00;
            margin: 12px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: bold;
            color: #b35c00;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 12px;
        }
        .rating {
            color: #ffb300;
            margin: 8px 0;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff0e0;
            color: #b35c00;
            padding: 8px 16px;
            border-radius: 25px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ffe0b2;
            transform: translateY(-2px);
        }
        .game-categories {
            margin: 35px 0;
        }
        .category-link {
            display: inline-block;
            color: #1e88e5;
            text-decoration: none;
            margin-right: 22px;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .category-link:hover {
            color: #0d47a1;
            text-decoration: underline;
        }
        .feature-list {
            margin: 25px 0 25px 35px;
        }
        .feature-list li {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .recipe-card {
            background-color: #fff8e6;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 5px solid #ff9800;
        }
        .recipe-name {
            font-weight: bold;
            color: #e65100;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        footer {
            background-color: #3e2723;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffcc80;
            border-bottom: 2px solid #ffcc80;
            padding-bottom: 12px;
            margin-bottom: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #6d4c41;
            margin-top: 30px;
            font-size: 1rem;
        }
        .daman-promo {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        .daman-promo a {
            color: #ffcc80;
            text-decoration: none;
            font-weight: bold;
        }
        .daman-promo a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #b35c00;
                padding: 25px;
                box-shadow: 0 6px 15px rgba(0,0,0,0.25);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn {
                width: 100%;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .feature-list {
                margin-left: 25px;
            }
        }
