.floating-menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #333;
    color: #fff;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    white-space: nowrap;
}

.floating-btn i {
    font-size: 18px;
}

/* Renkler */
.floating-btn.telegram { background-color: #0088cc; }
.floating-btn.dosyalar { background-color: #4CAF50; }
.floating-btn.discord  { background-color: #5865F2; }

.floating-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Mobil için butonları küçült */
@media (max-width: 480px) {
    .floating-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .floating-btn i {
        font-size: 16px;
    }
}
