/* 🎯 QR KOD BAZLI İNTERAKTİF BUTONLAR */
.qr-code-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.qr-button {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(100px);
    pointer-events: none;
}

.qr-button.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.qr-button:hover {
    transform: translateX(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.qr-button:active {
    transform: translateX(-5px) scale(0.95);
}

.qr-button i {
    font-size: 24px;
    margin-bottom: 4px;
}

/* Video Butonu */
.qr-button.video-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
}

.qr-button.video-btn:hover {
    background: linear-gradient(135deg, #ff5252, #ff3742);
}

/* Ses Butonu */
.qr-button.audio-btn {
    background: linear-gradient(135deg, #48cae4, #0077be);
    border-radius: 15px;
}

.qr-button.audio-btn:hover {
    background: linear-gradient(135deg, #2eb8d4, #005a8c);
}

/* Boyama Butonu */
.qr-button.coloring-btn {
    background: linear-gradient(135deg, #90e0ef, #52c41a);
}

.qr-button.coloring-btn:hover {
    background: linear-gradient(135deg, #7dd3fc, #389e0d);
}

/* Etkinlik Butonu */
.qr-button.activity-btn {
    background: linear-gradient(135deg, #ffc947, #ff9f00);
}

.qr-button.activity-btn:hover {
    background: linear-gradient(135deg, #ffb627, #ff8f00);
}

/* Gizli durumda */
.qr-button.hidden {
    display: none !important;
}

/* Mobil uyumlu */
@media (max-width: 768px) {
    .qr-code-buttons {
        right: 10px;
        gap: 10px;
    }
    
    .qr-button {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .qr-button i {
        font-size: 18px;
        margin-bottom: 2px;
    }
}

/* Animasyon efektleri */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.qr-button.slide-in {
    animation: slideInRight 0.5s ease-out forwards;
}

.qr-button.slide-out {
    animation: slideOutRight 0.3s ease-in forwards;
} 