.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;
    }
}


.online-box {
    position: relative;
    background: #001f3f;
    color: white;
    
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    font-family: Arial, sans-serif;
}

.online-content {
    position: relative;
    z-index: 2;
    font-size: 32px;
    font-weight: bold;
}

.online-text {
    
    font-size: 20px;
    margin-bottom: 10px;
    color: #00dffc;
}

.online-number {
    color: #7fff00;
    font-size: 48px;
}

.bubbles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) { left: 20%; animation-delay: 0s; }
.bubble:nth-child(2) { left: 40%; animation-delay: 2s; width: 30px; height: 30px; }
.bubble:nth-child(3) { left: 60%; animation-delay: 4s; }
.bubble:nth-child(4) { left: 80%; animation-delay: 6s; width: 25px; height: 25px; }
.bubble:nth-child(5) { left: 50%; animation-delay: 8s; }

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-300px) scale(1.5);
        opacity: 0;
    }
}
