/* ===========================
   Easter Eggs Modal Styles
   =========================== */
.easter-egg-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.easter-egg-modal.show {
    opacity: 1;
}

.easter-egg-content {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.easter-egg-modal.show .easter-egg-content {
    transform: scale(1) translateY(0);
}

.easter-egg-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
    transition: all 0.2s ease;
}

.easter-egg-close:hover {
    background: #e5e5e5;
    transform: scale(1.1);
}

.easter-egg-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: spring-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.easter-egg-message {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.easter-egg-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.easter-egg-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.easter-egg-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2563eb;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.easter-egg-button:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.easter-egg-button:active {
    transform: translateY(0);
}

.easter-egg-badge {
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .easter-egg-content {
        padding: 2rem 1.5rem;
    }
    
    .easter-egg-icon {
        font-size: 3rem;
    }
    
    .easter-egg-title {
        font-size: 1.5rem;
    }
}

/* Confetti animation (optional enhancement) */
@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.easter-egg-confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #2563eb;
    animation: confetti-fall 3s linear forwards;
    z-index: 100000;
}
