* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #1a1a2e;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #e94560;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            text-align: center;
            margin-bottom: 10px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        nav a:hover {
            background-color: #e94560;
        }
        .daman-link {
            background-color: #4cc9f0;
            color: #1a1a2e !important;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3, h4 {
            color: #16213e;
            margin: 25px 0 15px;
            line-height: 1.4;
        }
        h1 {
            font-size: 2.2rem;
            color: #e94560;
            text-align: center;
            margin: 30px 0;
            border-bottom: 3px solid #e94560;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #4cc9f0;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #0f3460;
        }
        p {
            margin-bottom: 18px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #e94560;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 12px 25px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            min-width: 150px;
        }
        .download-btn {
            background-color: #4cc9f0;
            color: #1a1a2e;
            box-shadow: 0 4px 6px rgba(76, 201, 240, 0.3);
        }
        .login-btn {
            background-color: #e94560;
            color: white;
            box-shadow: 0 4px 6px rgba(233, 69, 96, 0.3);
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.2);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 2px solid #ddd;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #4cc9f0;
        }
        .review {
            background-color: white;
            border-radius: 8px;
            padding: 15px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .tag-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            background-color: #e2e8f0;
            padding: 5px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #1a1a2e;
            font-size: 0.9rem;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #4cc9f0;
        }
        .game-type-nav {
            margin: 20px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type-nav a {
            color: #0f3460;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        .game-type-nav a:hover {
            color: #e94560;
        }
        footer {
            background-color: #1a1a2e;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            color: #4cc9f0;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #bbb;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                width: 100%;
            }
        }
