/* ========================================
   SLOT OYUNU MEVCUT DEĞİL EKRANI
   Oyun yoksa veya yüklenemiyorsa gösterilir
   ======================================== */

/* Ana unavailable container - Minimal */
.slot__unavailable {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 100% !important;
    padding: 0 8px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 1000 !important;
    background: transparent !important;
}

/* SVG Icon - Direkt, kapsama yok */
.slot__unavailable svg {
    width: 42px;
    height: 42px;
    fill: #e6d28b;
    stroke: none;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* Span (Açıklama metni) - Minimal */
.slot__unavailable span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 120px;
    line-height: 1.4;
    padding: 0 8px;
}

/* ========================================
   FRAME UNAVAILABLE (Alternatif stil)
   ======================================== */
.frame__unavailable {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.frame__unavailable svg {
    width: 64px;
    height: 64px;
    stroke: #eb5757;
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.frame__unavailable span {
    font-size: 18px;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 450px;
    line-height: 1.6;
    padding: 0 20px;
}

/* Overlay background */
.frame__unavailable:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(235, 87, 87, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* ========================================
   MOBİL RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .slot__unavailable {
        height: 100%;
        padding: 15px 10px;
    }
    
    .slot__unavailable svg {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
    }
    
    .slot__unavailable span {
        font-size: 12px;
        max-width: 110px;
    }
    
    .frame__unavailable svg {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }
    
    .frame__unavailable span {
        font-size: 16px;
        max-width: 90%;
    }
}

/* ========================================
   TABLET (768px - 991px)
   ======================================== */
@media (min-width: 768px) and (max-width: 991px) {
    .slot__unavailable svg {
        width: 40px;
        height: 40px;
    }
    
    .frame__unavailable svg {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   LIGHT THEME SUPPORT
   ======================================== */
[data-bs-theme="light"] .slot__unavailable svg {
    fill: #c9a961;
    opacity: 0.85;
}

[data-bs-theme="light"] .slot__unavailable span {
    color: rgba(29, 39, 53, 0.85);
}

[data-bs-theme="light"] .frame__unavailable {
    background: rgba(255, 255, 255, 0.95);
}

[data-bs-theme="light"] .frame__unavailable span {
    color: #1d2735;
}

/* ========================================
   HOVER EFFECT (Minimal)
   ======================================== */
.slot__unavailable svg {
    transition: all 0.3s ease;
}

.slot:hover .slot__unavailable svg {
    transform: scale(1.05);
    opacity: 1;
}


