.random-discovery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.random-discovery-content {
    background: linear-gradient(145deg, #a78bfa, #8b5cf6); /* Lila/Mor tonları */
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    text-align: center;
    max-width: 90%;
    width: 400px;
    color: white;
    font-family: 'Nunito', 'Inter', sans-serif;
}

.emoji-slot-machine {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.random-discovery-text {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.pulse-text {
    animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
    0% { opacity: 0.7; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.7; transform: scale(0.98); }
}

/* Buton Hover Animasyonu */
.hero-btn {
    transition: all 0.3s ease;
}

.hero-btn:hover {
    filter: brightness(1.15);
}

.hero-btn:hover i {
    display: inline-block;
    animation: dice-shake 0.6s ease-in-out infinite;
}

@keyframes dice-shake {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-25deg) scale(1.2); }
    50% { transform: rotate(15deg) scale(1.2); }
    75% { transform: rotate(-15deg) scale(1.2); }
}
