/* ==========================================================================
   BANKBUGS|FX: LAUNCH ANNOUNCER MODAL INTERFACE DESIGN
   ========================================================================== */

/* Glassmorphism Backdrop Backdrop Mask */
.announcer-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999; /* Forces layer above all header assets */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Elite Dashboard Terminal Card Frame */
.announcer-modal-card {
    position: relative;
    background: #0d0d0d;
    border: 1px solid rgba(226, 177, 60, 0.15); /* Sleek gold border tint */
    border-radius: 12px;
    width: 100%;
    max-width: 580px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 40px rgba(226, 177, 60, 0.03);
    text-align: left;
    transform: translateY(20px);
    animation: modalSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

/* Closure Intersector Class */
.announcer-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary, #888);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.announcer-close-btn:hover {
    color: var(--accent-color, #e2b13c);
    background: rgba(226, 177, 60, 0.08);
}

/* Institutional Live System Badge components */
.announcer-badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color, #e2b13c);
    border: 1px solid rgba(226, 177, 60, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 24px;
}

/* Pulsing Radar Visual Component */
.pulse-radar-dot {
    width: 6px;
    height: 6px;
    background-color: #00E676; /* Live active indicator neon green */
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
    animation: pulseGlow 1.8s infinite;
}

.announcer-headline {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary, #fff);
    margin: 0 0 16px 0;
}

.announcer-pitch-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary, #b3b3b3);
    margin: 0 0 28px 0;
}

/* Dual Segmentation Value Split Elements */
.announcer-segments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.segment-pill-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
}
.pill-title {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.label-new { background: rgba(0, 230, 118, 0.1); color: #00E676; }
.label-pro { background: rgba(226, 177, 60, 0.1); color: var(--accent-color, #e2b13c); }
.pill-desc {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-secondary, #b3b3b3);
    margin: 0;
}

/* System Urgency Action Row */
.announcer-footer-box {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.announcer-urgency-note {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
}
.announcer-action-cta {
    width: 100%;
    background-color: var(--accent-color, #e2b13c);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.announcer-action-cta:hover {
    background-color: var(--accent-hover, #f3ca65);
    transform: translateY(-1px);
}

/* ==========================================================================
   ANIMATION KEYFRAMES
   ========================================================================== */
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* ==========================================================================
   RESPONSIVE COMPACT LAYOUT FOR MOBILE
   ========================================================================== */
@media (max-width: 768px) {
    .announcer-modal-card { padding: 30px 20px; }
    .announcer-headline { font-size: 20px; }
    .announcer-segments-grid { grid-template-columns: 1fr; gap: 12px; }
    .announcer-pitch-text { font-size: 13px; margin-bottom: 20px; }
}
