/* Slot Reels Container Positioning */
.slot-reels-container {
    position: relative;
}

/* Slot Result Overlay System */
.slot-result-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.15);
    backdrop-filter: blur(30px) saturate(180%);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2), 0 -2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    border-radius: 15px;
}

.slot-result-overlay.show {
    opacity: 1;
    transform: scale(1);
}

.slot-result-overlay.hide {
    opacity: 0;
    transform: scale(1);
}

.slot-result-content {
    text-align: center;
    padding: 20px 15px;
    max-width: 95%;
}

.result-symbols {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.result-symbol {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    animation: symbolPulse 0.6s ease-out;
}

.result-symbol img {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes symbolPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.result-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    animation: titleSlideIn 0.6s ease-out 0.2s backwards;
}

.result-subtitle {
    font-size: 1.1em;
    margin-bottom: 12px;
    opacity: 0.9;
    animation: titleSlideIn 0.6s ease-out 0.4s backwards;
}

.result-reward {
    font-size: 1.5em;
    font-weight: bold;
    animation: titleSlideIn 0.6s ease-out 0.6s backwards;
}

@keyframes titleSlideIn {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Gewinn-spezifische Farben */
.slot-result-overlay.win .result-title,
.slot-result-overlay.win .result-reward {
    color: #4CAF50;
}

.slot-result-overlay.jackpot .result-title,
.slot-result-overlay.jackpot .result-reward {
    color: #FF4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
    animation: jackpotText 1s ease-in-out infinite;
}

.slot-result-overlay.big-win .result-title,
.slot-result-overlay.big-win .result-reward {
    color: #8A2BE2;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
}

.slot-result-overlay.energy-win .result-title,
.slot-result-overlay.energy-win .result-reward {
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.slot-result-overlay.lose .result-title,
.slot-result-overlay.lose .result-reward {
    color: #FF6B6B;
}

.slot-result-overlay.consolation .result-title,
.slot-result-overlay.consolation .result-reward {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.4);
}

@keyframes jackpotText {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Desktop Verbesserungen für Overlay */
@media (min-width: 768px) {
    .slot-result-content {
        padding: 25px 20px;
    }

    .result-symbols {
        gap: 12px;
        margin-bottom: 18px;
    }

    .result-symbol {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }

    .result-symbol img {
        width: 34px;
        height: 34px;
    }

    .result-title {
        font-size: 2.5em;
    }

    .result-subtitle {
        font-size: 1.2em;
    }

    .result-reward {
        font-size: 1.7em;
    }
}

@media (min-width: 1024px) {
    .slot-result-content {
        padding: 30px 25px;
    }

    .result-symbols {
        gap: 15px;
        margin-bottom: 20px;
    }

    .result-symbol {
        width: 55px;
        height: 55px;
        font-size: 2.2em;
    }

    .result-symbol img {
        width: 38px;
        height: 38px;
    }

    .result-title {
        font-size: 2.8em;
    }

    .result-subtitle {
        font-size: 1.4em;
    }

    .result-reward {
        font-size: 1.9em;
    }
}

/* Mobile Anpassungen für Overlay */
@media (max-width: 768px) {
    .slot-result-content {
        padding: 15px 10px;
    }

    .result-symbols {
        gap: 8px;
        margin-bottom: 12px;
    }

    .result-symbol {
        width: 40px;
        height: 40px;
        font-size: 1.6em;
    }

    .result-symbol img {
        width: 26px;
        height: 26px;
    }

    .result-title {
        font-size: 1.9em;
    }

    .result-subtitle {
        font-size: 1em;
    }

    .result-reward {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .slot-result-content {
        padding: 12px 8px;
    }

    .result-title {
        font-size: 1.6em;
    }

    .result-subtitle {
        font-size: 0.9em;
    }

    .result-reward {
        font-size: 1.2em;
    }

    .result-symbol {
        width: 35px;
        height: 35px;
        font-size: 1.4em;
    }

    .result-symbol img {
        width: 24px;
        height: 24px;
    }
} 