/* ═══════════════════════════════════════════════════
   NotificationBanner — баннер уведомлений сверху
   ═══════════════════════════════════════════════════ */

.notification-banner {
    position: fixed;
    top: var(--hud-height, 50px);
    left: 0;
    right: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: linear-gradient(135deg, #1a3a2a 0%, #0d1f17 100%);
    border-bottom: 2px solid var(--accent, #4ade80);
    color: #e0ffe0;
    font-size: 14px;
    line-height: 1.4;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
}

.notification-banner.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.notification-banner-text {
    flex: 1;
    margin-right: 12px;
    word-break: break-word;
}

.notification-banner-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--accent, #4ade80);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.notification-banner-close:active {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════
   Clan notification form (info tab)
   ═══════════════════════════════════════════════════ */

.clan-notify-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    margin-top: 12px;
}

.clan-notify-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #ccc;
}

.clan-notify-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 14px;
    resize: none;
    min-height: 44px;
}

.clan-notify-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.clan-notify-btn {
    margin-top: 8px;
    width: 100%;
}

.clan-notify-counter {
    text-align: right;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   Clan settings card (leader/deputy)
   ═══════════════════════════════════════════════════ */

.clan-settings-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    margin-top: 12px;
}

.clan-settings-card h3 {
    margin: 0 0 10px;
    font-size: 15px;
    color: #ccc;
}

.clan-setting-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.clan-setting-row label {
    font-size: 13px;
    color: var(--text-secondary);
}

.clan-setting-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
