/* Entry Screen Styles */
.entry-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b9d 0%, #c94b7d 50%, #b83b5e 100%);
    z-index: 1000;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.entry-screen.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.entry-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.entry-question {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 3rem;
    line-height: 1.3;
}

.button-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-yes {
    background: linear-gradient(135deg, #fff 0%, #ffe5ec 100%);
    color: #c94b7d;
    animation: pulse 2s ease-in-out infinite;
}

.btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-yes:active {
    transform: translateY(0);
}

.btn-no {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    position: relative;
    transition: all 0.2s ease-out;
}

.btn-no:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .entry-container {
        padding: 1.5rem;
    }

    .entry-question {
        margin-bottom: 2rem;
    }

    .button-container {
        gap: 1.5rem;
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px; /* Touch-friendly */
    }
}

@media (max-width: 400px) {
    .entry-question {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
