* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fff5e6;
            color: #5d4037;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #ff6b6b, #ffb88c);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        .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.8rem;
            font-weight: bold;
            text-decoration: none;
            font-family: 'Comic Sans MS', cursive, sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .daman-link {
            background-color: #4ecdc4 !important;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #ff5252;
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd54f;
        }
        h2 {
            color: #ff6b6b;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ffd54f;
            display: flex;
            align-items: center;
        }
        h2::before {
            content: "🍬";
            margin-right: 10px;
        }
        h3 {
            color: #ff8a65;
            font-size: 1.5rem;
            margin: 30px 0 15px;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🍭";
            margin-right: 8px;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #d32f2f;
            background-color: #fff3e0;
            padding: 2px 5px;
            border-radius: 3px;
        }
        .btn-container {
            margin: 40px 0;
            text-align: center;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            margin: 0 10px 15px;
            background-color: #ff6b6b;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(255,107,107,0.3);
        }
        .btn:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,107,107,0.4);
        }
        .download-btn {
            background-color: #4caf50;
            box-shadow: 0 4px 8px rgba(76,175,80,0.3);
        }
        .download-btn:hover {
            background-color: #388e3c;
            box-shadow: 0 6px 12px rgba(76,175,80,0.4);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #795548;
            margin-top: 10px;
            font-style: italic;
        }
        .stats-box {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #ffd54f;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #ffe0b2;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 4px solid #ffd54f;
        }
        .reviewer {
            font-weight: bold;
            color: #ff6b6b;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
        }
        .reviewer::before {
            content: "👤";
            margin-right: 8px;
        }
        .rating {
            color: #ffb74d;
            margin-bottom: 10px;
        }
        .tag-container {
            margin: 30px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff3e0;
            color: #e65100;
            padding: 6px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
            border: 1px solid #ffe0b2;
        }
        .tag:hover {
            background-color: #ffe0b2;
            transform: scale(1.05);
        }
        .game-type-nav {
            margin: 20px 0 40px;
        }
        .game-type {
            display: inline-block;
            color: #e65100;
            margin-right: 20px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        .game-type:hover {
            color: #d32f2f;
            text-decoration: underline;
        }
        footer {
            background: linear-gradient(135deg, #5d4037, #3e2723);
            color: white;
            padding: 40px 20px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #ffd54f;
            margin-bottom: 15px;
            font-size: 1.2rem;
            border-bottom: 1px solid #ffd54f;
            padding-bottom: 8px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
        }
        .recommendation {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            border-left: 3px solid #ffd54f;
        }
        .tips-box {
            background-color: #fff8e1;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            border-left: 4px solid #ffb300;
        }
        .tips-box h4 {
            color: #f57c00;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                margin-top: 15px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }
            .stat-item {
                flex-direction: column;
            }
            .stat-item span:last-child {
                margin-top: 5px;
                font-weight: bold;
            }
        }
