/* ═══════════════════════════════════════════════
   ShubhAyojan — Dark Theme CSS
   ASP.NET Core version · Mobile-first
═══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    --bg:          #0f0f12;
    --bg-card:     #1a1a1f;
    --bg-card-alt: #141417;
    --coral:       #FF6F61;
    --coral-dim:   rgba(255, 111, 97, 0.15);
    --coral-glow:  rgba(255, 111, 97, 0.35);
    --text:        #e8e8e8;
    --text-dim:    #9a9aaa;
    --glass:       rgba(255, 255, 255, 0.05);
    --glass-border:rgba(255, 255, 255, 0.09);
    --radius:      20px;
    --radius-sm:   12px;
    --nav-h:       76px;
    --transition:  0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    line-height: 1.65;
    padding-top: calc(var(--nav-h) + 20px);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ──────────────────────────────────────────────
   NAVBAR — Floating Glass Pill
──────────────────────────────────────────────── */
.sa-navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 1100px);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    background: var(--glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.55);
    z-index: 1000;
    transition: var(--transition);
}

.sa-navbar.shrunk {
    height: 58px;
    width: min(82%, 1000px);
    top: 10px;
    background: rgba(15, 15, 18, 0.88);
    border-color: var(--coral-glow);
}

.sa-navbar__brand {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}
.sa-navbar__brand span { color: var(--coral); }

.sa-navbar__links {
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.sa-navbar__links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
}

.sa-navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.25s;
}

.sa-navbar__links a:hover { color: #fff; }
.sa-navbar__links a:hover::after { width: 100%; }

/* Hamburger */
.sa-navbar__toggler {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.sa-navbar__toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Offcanvas */
.sa-offcanvas {
    background: #12121a;
    border-left: 1px solid var(--glass-border);
}
.sa-mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    transition: color 0.25s;
}
.sa-mobile-link:hover { color: var(--coral); }

/* ──────────────────────────────────────────────
   HERO
──────────────────────────────────────────────── */
.sa-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 0 clamp(1.5rem, 6vw, 10%);
    background:
        linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 100%),
        url('/images/background.jpg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
}

.sa-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,111,97,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.sa-hero__content { max-width: 720px; position: relative; z-index: 1; }

.sa-badge {
    display: inline-block;
    background: var(--coral-dim);
    color: var(--coral);
    border: 1px solid rgba(255,111,97,0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}

.sa-hero__heading {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
}
.sa-hero__heading em {
    font-style: normal;
    color: var(--coral);
}

.sa-hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
    max-width: 520px;
}

/* ──────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────── */
.sa-btn-coral {
    display: inline-block;
    background: var(--coral);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 20px var(--coral-glow);
}
.sa-btn-coral:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--coral-glow);
    color: #fff;
}
.sa-btn-coral--full { width: 100%; text-align: center; }

.sa-btn-sm {
    background: transparent;
    border: 1.5px solid var(--coral);
    color: var(--coral);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.sa-btn-sm:hover { background: var(--coral); color: #fff; }

/* ──────────────────────────────────────────────
   SECTION SHARED
──────────────────────────────────────────────── */
.sa-section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-top: 10px;
    letter-spacing: -0.5px;
}

/* ──────────────────────────────────────────────
   EVENTS SCROLLER
──────────────────────────────────────────────── */
.sa-events-section {
    padding: 5rem 0 4rem;
}

.sa-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.sa-swipe-hint {
    color: var(--coral);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

/* Desktop: horizontal scroller */
.sa-scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px clamp(1rem, 4vw, 3rem) 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sa-scroller::-webkit-scrollbar { display: none; }

/* Mobile: stack into a grid */
@media (max-width: 640px) {
    .sa-scroller {
        display: grid;
        grid-template-columns: 1fr;
        overflow-x: unset;
        gap: 20px;
    }
}

/* ── Event Card ── */
.sa-card {
    min-width: 320px;
    max-width: 360px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.sa-card:hover {
    transform: translateY(-10px);
    border-color: var(--coral);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

@media (max-width: 640px) {
    .sa-card {
        min-width: unset;
        max-width: 100%;
    }
}

.sa-card__img {
    height: 230px;
    background-size: cover;
    background-position: center;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.sa-card__tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sa-card__pill {
    position: absolute;
    bottom: 12px; right: 14px;
    background: var(--coral);
    color: #fff;
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.06); opacity: 0.85; }
}

.sa-card__body { padding: 20px 20px 22px; }

.sa-card__date {
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sa-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.sa-card__location {
    color: var(--text-dim);
    font-size: 0.88rem;
}

.sa-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
}

.sa-card__price {
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
}

/* ──────────────────────────────────────────────
   STALL SECTION
──────────────────────────────────────────────── */
.sa-stall-section {
    background: var(--bg-card-alt);
    padding: 6rem 0;
}

.sa-stall__desc {
    color: var(--text-dim);
    max-width: 480px;
    margin: 1rem 0 1.8rem;
    font-size: 1.05rem;
}

.sa-benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sa-benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text);
}

.sa-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--coral-dim);
    border: 1px solid rgba(255,111,97,0.3);
    border-radius: 50%;
    color: var(--coral);
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ── Stall Form Card ── */
.sa-form-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(1.8rem, 4vw, 2.8rem);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sa-form-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.sa-form-card__sub {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
}

.sa-form-group { margin-bottom: 1.2rem; }

.sa-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.sa-input {
    width: 100%;
    background: #1e1e25;
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.25s;
    outline: none;
}

.sa-input:focus { border-color: var(--coral); }
.sa-input::placeholder { color: #555; }
.sa-input--phone { border: none !important; border-radius: 0 !important; background: transparent; }

.sa-phone-wrap {
    display: flex;
    align-items: center;
    background: #1e1e25;
    border: 1.5px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.25s;
}
.sa-phone-wrap:focus-within { border-color: var(--coral); }

.sa-country-code {
    padding: 13px 16px;
    color: var(--coral);
    font-weight: 700;
    background: rgba(255,111,97,0.08);
    border-right: 1.5px solid var(--glass-border);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.sa-field-error {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}

.sa-alert-error {
    background: rgba(255,107,107,0.1);
    border: 1px solid rgba(255,107,107,0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 1.2rem;
    color: #ff6b6b;
    font-size: 0.87rem;
}

/* Spinner */
.sa-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ──────────────────────────────────────────────
   SUCCESS PAGE
──────────────────────────────────────────────── */
.sa-success-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.sa-success-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: clamp(2rem, 6vw, 4rem);
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.sa-success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.sa-success-title { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.8rem; }
.sa-success-sub { color: var(--text-dim); font-size: 1rem; }

/* ──────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────── */
.sa-footer {
    background: var(--bg-card-alt);
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}
.sa-footer__sub { color: var(--text-dim); font-size: 0.82rem; font-weight: 400; }

/* ──────────────────────────────────────────────
   REVEAL ANIMATION
──────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ──────────────────────────────────────────────
   RESPONSIVE TWEAKS
──────────────────────────────────────────────── */
@media (max-width: 768px) {
    body { padding-top: calc(var(--nav-h) + 10px); }

    .sa-stall-section { padding: 4rem 0; }
    .sa-events-section { padding: 3.5rem 0 3rem; }

    .sa-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }

    .sa-form-card { padding: 1.8rem; }
}

@media (max-width: 480px) {
    .sa-hero { min-height: 75vh; }
    .sa-hero__heading { letter-spacing: -0.5px; }
    .sa-btn-coral { padding: 13px 28px; }
}

/* ──────────────────────────────────────────────
   CLICKABLE EVENT CARD
──────────────────────────────────────────────── */
.sa-card--clickable {
    cursor: pointer;
    user-select: none;
}

/* "📷 View Photos" overlay appears on hover */
.sa-card__overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.sa-card--clickable:hover .sa-card__overlay-icon,
.sa-card--clickable:focus .sa-card__overlay-icon {
    opacity: 1;
}

.sa-card--clickable:focus {
    outline: 2px solid var(--coral);
    outline-offset: 4px;
}

/* ──────────────────────────────────────────────
   LIGHTBOX MODAL
──────────────────────────────────────────────── */
.sa-lightbox-modal .modal-dialog {
    max-width: min(92vw, 980px);
}

.sa-lightbox-content {
    background: #13131a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.sa-lightbox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sa-lightbox-tag {
    display: inline-block;
    background: rgba(255,111,97,0.15);
    border: 1px solid rgba(255,111,97,0.3);
    color: var(--coral);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.sa-lightbox-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}
.sa-lightbox-title span {
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    font-size: 0.95rem;
}

.sa-lightbox-close {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.sa-lightbox-close:hover {
    background: rgba(255,80,80,0.2);
    color: #fff;
}

.sa-lightbox-carousel {
    background: #0a0a0f;
}

.sa-lightbox-img {
    width: 100%;
    height: clamp(260px, 55vh, 540px);
    object-fit: cover;
    display: block;
}

.sa-lightbox-location {
    color: rgba(255,255,255,0.45);
    font-size: 0.83rem;
    padding: 0.75rem 1.4rem;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
/* ──────────────────────────────────────────────
   UPCOMING EVENTS — SPOTLIGHT
──────────────────────────────────────────────── */
.sa-spotlight-section {
    padding: 3rem 0;
}

.sa-spotlight-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 0 clamp(1rem, 4vw, 3rem);
    align-items: start;
}

.sa-spotlight-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    max-height: 600px;
    display: flex;
    justify-content: center;
}

.sa-spotlight-poster {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
    background: #000;
}

.sa-spotlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, rgba(0,0,0,0.6) 60%, transparent);
    padding: 2rem;
}

.sa-spotlight-tag {
    background: var(--coral);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.6rem;
}

.sa-spotlight-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.sa-spotlight-date,
.sa-spotlight-location {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.sa-spotlight-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-top: 0.6rem;
    max-width: 500px;
}

.sa-spotlight-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
}

.sa-spotlight-thumb {
    display: flex;
    gap: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    transition: var(--transition);
}

    .sa-spotlight-thumb:hover {
        border-color: var(--coral);
    }

    .sa-spotlight-thumb img {
        width: 70px;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
        flex-shrink: 0;
    }

.sa-spotlight-thumb-info h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.sa-spotlight-thumb-info p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin: 0;
}

.sa-spotlight-thumb-loc {
    color: rgba(255,255,255,0.35) !important;
}

@media (max-width: 768px) {
    .sa-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .sa-spotlight-main {
        max-height: 500px;
    }

    .sa-spotlight-poster {
        max-height: 500px;
    }

    .sa-spotlight-list {
        flex-direction: row;
        overflow-x: auto;
        max-height: none;
    }

    .sa-spotlight-thumb {
        min-width: 220px;
    }
}
/* ──────────────────────────────────────────────
   NAVBAR DROPDOWN
──────────────────────────────────────────────── */
.sa-nav-dropdown {
    position: relative;
}

.sa-nav-dropdown__toggle {
    cursor: pointer;
}

.sa-nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: #16161d;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    min-width: 180px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    z-index: 1001;
}

.sa-nav-dropdown:hover .sa-nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sa-nav-dropdown__menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

    .sa-nav-dropdown__menu a:hover {
        background: rgba(255,111,97,0.1);
        color: var(--coral);
    }
/* ──────────────────────────────────────────────
   POSTER MODAL (Upcoming Events)
──────────────────────────────────────────────── */
.sa-spotlight-clickable {
    cursor: pointer;
}

.sa-poster-modal__dialog {
    max-width: min(92vw, 560px);
}

.sa-poster-modal__content {
    background: #13131a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
    position: relative;
}

.sa-poster-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
}

.sa-poster-modal__img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    background: #000;
}

.sa-poster-modal__info {
    padding: 1.4rem 1.6rem;
}

.sa-poster-modal__title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 6px 0 8px;
}

.sa-poster-modal__meta {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.sa-poster-modal__desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    margin-top: 8px;
}