/* Стили для панели предупреждения о неверифицированном email */
.email-verification-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 3px solid #d4af37;
    z-index: 10000;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
}

.email-verification-bar.show {
    display: block;
}

.email-verification-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.email-verification-icon {
    color: #d4af37;
    font-size: 24px;
    animation: iconPulse 2s infinite;
    flex-shrink: 0;
}

.email-verification-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.email-verification-message {
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    font-family: 'Inter', sans-serif;
}

.email-verification-description {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.email-verification-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    align-items: center;
}

.email-verification-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.email-verification-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.email-verification-btn:hover::before {
    left: 100%;
}

.email-verification-resend-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0f0f0f;
    box-shadow: 0 3px 12px rgba(212, 175, 55, 0.3);
    border: 2px solid #d4af37;
}

@media (hover: hover) {
    .email-verification-resend-btn:hover {
        background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }
}

.email-verification-resend-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.email-verification-close-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.email-verification-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Анимации */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Адаптивность */
@media (max-width: 768px) {
    .email-verification-bar-content {
        padding: 12px 15px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .email-verification-text {
        min-width: auto;
        order: 1;
    }
    
    .email-verification-actions {
        order: 2;
        width: 100%;
        justify-content: center;
    }
    
    .email-verification-icon {
        order: 0;
        font-size: 20px;
    }
    
    .email-verification-message {
        font-size: 16px;
    }
    
    .email-verification-description {
        font-size: 13px;
    }
    
    
    .email-verification-btn {
        min-width: 120px;
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .email-verification-bar-content {
        padding: 10px 12px;
        gap: 12px;
    }
    
    .email-verification-message {
        font-size: 15px;
    }
    
    .email-verification-description {
        font-size: 12px;
    }
    
    .email-verification-btn {
        min-width: 100px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .email-verification-actions {
        gap: 10px;
    }
}

/* Эффект при фокусе на кнопках */
.email-verification-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

/* Эффект при нажатии */
.email-verification-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Скрытие панели */
.email-verification-bar.hidden {
    display: none;
}
