/* আপনার দেওয়া original user CSS এখানে পুরোটা কপি করুন */
/* আমি শুধু প্রথম কিছু লাইন দেখাচ্ছি: */

:root {
    --primary-color: #00ffc8;
    --secondary-color: #00aaff;
    --accent-red: #ff3366;
    --accent-yellow: #FFD700;
    --dark-bg: #0e0e0e;
    --card-bg: #1f1f1f;
    --header-bg: #2c2c2e;
    --text-primary: #ffffff;
    --text-secondary: #a9a9b3;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-danger: linear-gradient(135deg, #ff3366, #ff6b8b);
    --gradient-success: linear-gradient(135deg, #4CAF50, #81C784);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #0e0e0e, #1a1a1a);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ... আপনার বাকি সব CSS ... */

.floating-support-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    box-shadow: 0 4px 15px rgba(0, 255, 200, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-support-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0, 255, 200, 0.6);
}