/* Dropdown menu styles for navigation */
.dropdown {
    position: relative;
}
.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3em;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #181818;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 10000;
    padding: 0.5em 0;
    margin-top: 0.3em;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu a {
    display: block;
    padding: 0.7em 1.2em;
    color: #f3f3f3;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.18s, color 0.18s;
}
.dropdown-menu a:hover {
    background: #222;
    color: var(--gold-soft);
}
.bulletin-wrap,
.supporters-section,
.programs-calendar-wrap {
    background: none !important;
    position: relative;
    z-index: 2;
}

.bulletin-wrap {
    background: transparent !important;
    padding: 0.2rem 0;
    border-bottom: none !important;
}

.bulletin-row {
    background: #cc1414;
    min-height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    justify-content: space-between;
    padding: 0.4rem 1.2rem;
}
.bulletin-label {
    background: #a00;
    color: #fff;
    border-radius: 6px;
    padding: 0.2em 1em;
    font-weight: bold;
    margin-right: 1.2em;
}
.ticker {
    flex: 1 1 auto;
    color: #fff;
    font-weight: 600;
    font-size: 1.08em;
    margin-right: 1.2em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.bulletin-join-btn {
    background: #fff;
    color: #cc1414;
    border-radius: 22px;
    padding: 0.5em 1.4em;
    font-weight: bold;
    border: none;
    transition: background 0.2s, color 0.2s;
    margin-left: 1.2em;
}
.bulletin-join-btn:hover {
    background: #ffeaea;
    color: #a00;
}
.blinking-logo {
    animation: blink-logo 1.2s steps(2, start) infinite, scale-logo 1.3s ease-in-out infinite;
}

@keyframes scale-logo {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}
.news-ticker-badge {
    display: inline-block;
    background: #e5a000;
    color: #222;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 7px;
    padding: 0.1em 0.7em;
    margin-right: 0.2em;
    text-decoration: none;
    transition: background 0.2s;
}
.news-ticker-badge:hover {
    background: #ffd54f;
}
.blinking-logo {
    animation: blink-logo 1.2s steps(2, start) infinite;
}

@keyframes blink-logo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.15; }
}
.breaking-news-logo-row {
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 0.2em;
}

.breaking-news-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 7px;
    background: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    display: inline-block;
}
/* Blinking bullets for second news panel */
.blinking-bullets li::marker {
    color: var(--gold);
    animation: blink-bullet 2s steps(2, start) infinite;
}

@keyframes blink-bullet {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.1; }
}
.breaking-news-badge {
    /* ...existing styles... */
    animation: blink-badge 2s steps(2, start) infinite;
}

@keyframes blink-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.breaking-news-separator {
    margin: 1.2em 0 0.1em 0;
    border: none;
    border-top: 2px dashed var(--gold);
    opacity: 0.7;
}
/* Breaking News Panel */
.breaking-news-panel {
    background: var(--bg-soft);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    padding: 0.7rem 1rem 1.2rem 1rem;
    color: var(--text-main);
    margin-bottom: 1.1rem;
    margin-top: 0.3rem;
}

.breaking-news-separator {
    margin: 1.2em 0 0.2em 0 !important;
}

.breaking-news-badge {
    margin-top: 0.2em !important;
}
.breaking-news-badge {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-weight: bold;
    font-size: 1.12rem;
    border-radius: 8px;
    padding: 0.2em 0.8em;
    margin-bottom: 0.7em;
    letter-spacing: 0.04em;
}
.breaking-news-panel h3 {
    color: var(--gold);
    margin-top: 0.5em;
    margin-bottom: 0.7em;
    font-size: 1.2rem;
}
.news-list {
    list-style: disc inside;
    padding-left: 0.5em;
    margin: 0;
}
.news-list li {
    margin-bottom: 0.7em;
    font-size: 1rem;
    line-height: 1.5;
}
/* Walk to Talk Reality Show Hero Section Background */

.hero.inner {
    min-height: 350px;
    height: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: url('assets/images/worldmap.jpg') center 45% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 45%;
    background-color: #181818;
}
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.hero .container {
    background: transparent !important;
    position: relative;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 2;
}
/* Broadcasts Three-Column Layout */
.broadcasts-3col {
    display: flex;
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1300px;
    justify-content: center;
}
.broadcasts-left, .broadcasts-right {
    flex: 0 0 400px;
    max-width: 440px;
    min-width: 260px;
    background: var(--bg-soft);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    padding: 1.2rem 1.4rem;
    color: var(--text-main);
    height: fit-content;
}
.broadcasts-center {
    flex: 1 1 600px;
    max-width: 700px;
    min-width: 320px;
}
.video-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.broadcast-video {
    width: 100%;
    max-width: 480px;
    height: 270px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.promo-list, .ads-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.promo-list li, .ads-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}
@media (max-width: 1100px) {
    .broadcasts-3col {
        flex-direction: column;
        gap: 1.5rem;
    }
    .broadcasts-left, .broadcasts-right, .broadcasts-center {
        max-width: 100%;
        min-width: 0;
    }
    .broadcast-video {
        max-width: 100%;
    }
}
/* Calendar and Programs Layout */
.programs-calendar-wrap {
    display: flex;
    gap: 2.2rem;
    align-items: flex-start;
    margin-top: 1.2rem;
}
.program-list-side {
    flex: 1 1 60%;
    min-width: 0;
}
.calendar-side {
    flex: 0 0 340px;
    max-width: 340px;
    min-width: 260px;
    background: linear-gradient(180deg, #181818 0%, #232323 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.2rem 1.1rem 1.5rem 1.1rem;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    position: relative;
}
#programCalendar {
    min-height: 320px;
    color: #f4f4f4;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}
@media (max-width: 1100px) {
    .programs-calendar-wrap {
        flex-direction: column;
    }
    .calendar-side {
        max-width: 100%;
        width: 100%;
        margin-top: 1.5rem;
    }
}
:root {
    --bg-main: #0a0a0a;
    --bg-soft: #111111;
    --bg-card: rgba(255, 255, 255, 0.04);
    --text-main: #f4f4f4;
    --text-soft: #c9c9c9;
    --gold: #e5a000;
    --gold-soft: #ffd54f;
    --silver: #c0c0c0;
    --red-live: #cc1414;
    --line: rgba(255, 255, 255, 0.15);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: var(--text-main);
    font-family: 'Poppins', sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: url('assets/images/worldmap.jpg') center center / cover no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-wrap {
    min-height: 100vh;
}

.container {
    width: min(1280px, 95%);
    margin: 0 auto;
}

.top-strip {
    background: #121212;
    border-bottom: 1px solid var(--line);
}

.top-strip-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.contact-left,
.contact-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.15rem;
}

.contact-left a,
.contact-right a {
    font-size: 0.92rem;
    color: #dadada;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-left a:hover,
.contact-right a:hover {
    color: var(--gold-soft);
}

.contact-left i {
    color: #f4b319;
    margin-right: 0.4rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #a9afb8;
}

.translate-wrapper {
    position: relative;
}

.translate-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    color: #f2f2f2;
    font-size: 0.88rem;
    cursor: pointer;
}

.translate-pill:hover,
.translate-pill.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 214, 124, 0.75);
}

.translate-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 260px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-16px) scale(0.98);
    /* border removed for cleaner look */
        /* border removed for cleaner look */
        background: #181818;
        box-shadow: 0 20px 50px 0 rgba(0,0,0,0.65), 0 0 0 4px rgba(255,215,0,0.10);
        z-index: 9999;
        transition: all 0.25s cubic-bezier(.4,2,.6,1), max-height 0.3s cubic-bezier(.4,2,.6,1);
}
    .broadcasts-3col, .broadcasts-3col * {
        background: none !important;
    }
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: #141414;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    background: url('/universal/images/banner/skyline.jpg') center 30% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
    background-color: #181818;
}

.translate-dropdown.open {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0) scale(1.04);
    /* border-color removed for cleaner look */
    box-shadow: 0 24px 60px 0 rgba(255,215,0,0.18), 0 0 0 4px rgba(255,215,0,0.18);
    animation: dropdown-pop 0.22s cubic-bezier(.4,2,.6,1);
}

@keyframes dropdown-pop {
    0% {
        opacity: 0;
        transform: translateY(-24px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1.04);
    }
}

.translate-search {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.translate-search input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(240, 179, 21, 0.85);
    background: #1b1b1b;
    color: #f3f3f3;
    padding: 0.85rem 0.95rem;
    font-size: 0.92rem;
    outline: none;
}

.translate-search input::placeholder {
    color: #9b9b9b;
}

.translate-list {
    max-height: 260px;
    overflow-y: auto;
    padding: 8px 6px;
}

.translate-list::-webkit-scrollbar {
    width: 6px;
}

.translate-list::-webkit-scrollbar-track {
    background: #1b1b1b;
}

.translate-list::-webkit-scrollbar-thumb {
    background: rgba(240, 179, 21, 0.55);
    border-radius: 999px;
}

.translate-lang-btn {
    width: 100%;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: none;
    background: transparent;
    color: #ececec;
    text-align: left;
    border-radius: 8px;
    cursor: pointer;
}

.translate-lang-btn:hover {
    background: #1f1f1f;
    color: var(--gold-soft);
}

.translate-lang-code {
    color: #b8bcc4;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.translate-lang-name {
    font-size: 0.98rem;
}

.translate-no-results {
    padding: 18px 12px;
    text-align: center;
    color: #9b9b9b;
}

.btn-signup {
    background: linear-gradient(135deg, #b8860b, #8a6d1d);
    color: #000 !important;
    font-weight: 700;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.top-signup {
    padding: 0.75rem 1.35rem;
    font-size: 0.9rem;
}

.main-nav-wrap {
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-inner {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 290px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffcf38, #eba914);
    color: #171102;
    font-size: 1.35rem;
    box-shadow: 0 10px 24px rgba(242, 170, 18, 0.24);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: 'Playfair Display', serif;
    color: #f3cd5f;
    font-size: 1.42rem;
    font-weight: 800;
}

.brand-text small {
    color: #ddd1a5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav {
    flex: 1;
    margin-left: auto;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.25rem;
}

nav a {
    padding: 0.5rem 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: #f0f0f0;
    border-bottom: 3px solid transparent;
}

nav a.active,
nav a:hover {
    color: #ffcf38;
    border-color: #ffcf38;
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}


.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.38)),
        url('assets/images/worldmap.jpg') center / cover no-repeat;
}

/* About Us page banner background override */
.hero.inner {
    /* fallback for specificity */
}

.hero.inner::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.38)),
        url('assets/images/worldmap.jpg') center / cover no-repeat !important;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(229, 160, 0, 0.22), transparent 30%);
}

.hero.home {
    min-height: 350px;
    height: 350px;
    /* max-height removed for consistency */
}
          min-height: 500px;


.hero.inner {
    min-height: 300px;
    height: 400px;
    max-height: 300px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('assets/images/worldmap.jpg') center 45% / cover no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 45%;
    background-color: #181818;
}


@media (max-width: 900px) {
    .hero.inner {
        min-height: 200px !important;
        height: 220px !important;
        max-height: 220px !important;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 1.5rem 1rem;
    }
}

.web-banner-content {
            min-height: 400px;
        }


@media (max-width: 900px) {
  .web-banner-full {
     min-height: 420px;
  }
  .web-banner-content {
     padding: 2rem 1rem;
  }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82));
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-soft);
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
}

.hero-lead {
    margin: 0 0 0.15rem;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    color: var(--gold-soft);
    line-height: 1.05;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.3vw, 4rem);
    margin: 0;
    max-width: 950px;
}

.hero p {
    color: #e4e4e4;
    max-width: 800px;
    font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.bulletin-wrap {
    background: var(--red-live);
    border-bottom: 2px solid #861111;
}

.bulletin-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 48px;
}

.bulletin-label {
    background: #8c0707;
    color: #fff;
    padding: 0.45rem 0.95rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.ticker {
    flex: 1;
    overflow: hidden;
}

.bulletin-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.35px;
    white-space: nowrap;
}

.bulletin-join-btn:hover {
    background: #ffffff;
    color: #9d0f0f;
    border-color: #ffffff;
}

.ticker-track {
    white-space: nowrap;
    animation: slideTicker 28s linear infinite;
    font-weight: 600;
}

@keyframes slideTicker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

main {
    padding: 1rem 0;
}

.section-head h2 {
    margin-top: 0;
    margin-bottom: 0.45rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold-soft);
    font-size: clamp(1.45rem, 2.2vw, 2.3rem);
}

.section-head p {
    margin-top: 0;
    color: var(--text-soft);
    max-width: 900px;
}

.panel {
    background: linear-gradient(180deg, #111111 0%, #181818 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stats-chip {
    border: 1px solid rgba(229, 160, 0, 0.18);
    border-radius: 12px;
    padding: 0.9rem;
    text-align: center;
    background: linear-gradient(180deg, #101010, #171717);
}

.stats-chip strong {
    color: var(--gold-soft);
    font-size: 1.3rem;
    display: block;
}

.video-news-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 1.2rem;
    margin-top: 0;
}

.primary-video iframe,
.primary-video video,
.right-video-stack iframe,
.right-video-stack video {
    width: 100%;
    min-height: 360px;
    border: none;
    border-radius: 14px;
}

.right-video-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.right-card {
    background: linear-gradient(180deg, #131313, #191919);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem;
}

.right-card h4 {
    margin: 0 0 0.6rem;
    color: var(--gold-soft);
}

.promo-copy {
    color: #d4d4d4;
    line-height: 1.75;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(229, 160, 0, 0.14);
    color: var(--gold-soft);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 0.9rem;
}

.promo-points {
    list-style: none;
    padding: 0;
    margin: 0.9rem 0 0;
}

.promo-points li {
    padding: 0.45rem 0 0.45rem 1.25rem;
    position: relative;
    color: #bfc3c9;
}

.promo-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff2222;
    box-shadow: 0 0 8px #ff2222;
    animation: blink-red-dot 1s infinite alternate;
}

@keyframes blink-red-dot {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.feature-banner {
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(229, 160, 0, 0.14);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.3)), url('/universal/images/banner/stage.jpg') center / cover no-repeat;
}

.feature-banner-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.4rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
}

.feature-banner-content h3 {
    margin: 0 0 0.4rem;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.feature-banner-content p {
    margin: 0;
    color: #d3d6db;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.program-card {
    overflow: hidden;
}

.program-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.program-card h3 {
    margin-bottom: 0.35rem;
}

.program-meta {
    color: var(--gold-soft);
    font-size: 0.88rem;
}

.btn {
    display: inline-block;
    border-radius: 10px;
    padding: 0.7rem 1.1rem;
    font-weight: 600;
    border: 1px solid var(--line);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), #8f6f19);
    color: #160f01;
    border: none;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.07);
    color: #f6f6f6;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #0f0f0f;
    color: #f8f8f8;
    padding: 0.75rem 0.9rem;
    font-family: inherit;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
}

.form-row {
    margin-bottom: 0.9rem;
}

.alert {
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: rgba(36, 145, 36, 0.25);
    border: 1px solid rgba(86, 190, 86, 0.75);
}

.alert-error {
    background: rgba(186, 27, 27, 0.24);
    border: 1px solid rgba(231, 88, 88, 0.7);
}

.owners-zone {
    padding: 2.4rem 0;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.owners-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

.owner-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
}

.owner-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.owner-content {
    padding: 0.8rem 0.85rem;
}

.owner-content h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
    font-size: 0.92rem;
    line-height: 1.2;
}

.owner-role {
    color: var(--gold-soft);
    font-size: 0.78rem;
    margin: 0 0 0.35rem;
}

.owner-date {
    color: #d7dbe3;
    font-size: 0.76rem;
    margin: 0 0 0.45rem;
}

.owner-content p:last-child {
    margin: 0;
    font-size: 0.74rem;
    line-height: 1.45;
}

.owners-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.owners-cta-btn {
    min-width: 240px;
    text-align: center;
}

.join-calendar-form {
    margin-top: 0.4rem;
}

.join-calendar-form label {
    display: block;
    margin-bottom: 0.35rem;
    color: #f2d67c;
    font-size: 0.9rem;
}

.site-footer {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(90deg, rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.86)), url('../images/contact.jpg') center / cover no-repeat;
    padding: 4.4rem 0 1.3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr 1fr;
    gap: 2.4rem;
    align-items: start;
}

.footer-brand-block {
    max-width: 460px;
}

.footer-connect-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2.2rem;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-summary {
    max-width: 360px;
    color: #a8acb4;
    line-height: 1.8;
    margin: 0 0 1.7rem;
}

.footer-connect-title {
    margin: 0 0 0.9rem;
    color: #f3cd5f;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-align: center;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.55rem;
    overflow: visible;
    padding-bottom: 0.2rem;
}

.footer-socials a {
    min-width: 38px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #232323;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
    background: #f0b315;
    color: #151103;
    transform: translateY(-2px);
}

.footer-socials a i {
    display: block;
    font-size: 1rem;
    line-height: 1;
    color: inherit;
}

.footer-socials .social-facebook {
    color: #7fb2ff;
}

.footer-socials .social-twitter {
    color: #f3f6fb;
}

.footer-socials .social-tiktok {
    color: #7ef8f1;
}

.footer-socials .social-snapchat {
    color: #ffe55c;
}

.footer-socials .social-instagram {
    color: #ff8ab9;
}

.footer-socials .social-youtube {
    color: #ff7b7b;
}

.footer-socials .social-whatsapp {
    color: #61e58f;
}

.footer-socials .social-email {
    color: #ffd970;
}

.footer-socials .social-linkedin {
    color: #79b8ff;
}

.footer-socials a:hover i {
    color: #151103;
}


.footer-column h3 {
    margin: 0 0 1.7rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    margin-top: 0.8rem;
    background: #f0b315;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-note {
    color: #b2b5bc;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--gold-soft);
}

.footer-bottom {
    margin-top: 2.8rem;
}

.footer-bottom-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.copyright {
    text-align: center;
    margin: 1.6rem 0 0;
    color: #9ea3ad;
    font-size: 0.98rem;
}

.floating-hotline {
    position: fixed;
    right: 28px;
    bottom: 28px;
    min-width: 64px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffcf38, #f0ad14);
    color: #1b1301;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 14px 30px rgba(240, 173, 20, 0.22);
    z-index: 25;
    animation: hotlineBlink 1.2s infinite;
}

.floating-hotline:hover {
    transform: translateY(-2px);
    color: #1b1301;
}

.floating-hotline i {
    font-size: 1.35rem;
}

@keyframes hotlineBlink {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 207, 56, 0.55), 0 14px 30px rgba(240, 173, 20, 0.22);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 207, 56, 0), 0 18px 34px rgba(240, 173, 20, 0.35);
        filter: brightness(1.08);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 207, 56, 0), 0 14px 30px rgba(240, 173, 20, 0.22);
        filter: brightness(1);
    }
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    border: 1px solid var(--line);
    padding: 0.65rem;
    text-align: left;
    vertical-align: top;
}

table th {
    background: rgba(212, 175, 55, 0.15);
}

@media (max-width: 1100px) {
    .video-news-layout,
    .grid-3,
    .owners-grid,
    .program-list,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .right-video-stack iframe,
    .right-video-stack video,
    .primary-video iframe,
    .primary-video video {
        min-height: 280px;
    }
}

@media (max-width: 760px) {
    .top-strip-inner,
    .nav-inner,
    .bulletin-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    .bulletin-join-btn {
        align-self: flex-start;
    }

    .hero.home {
        min-height: 460px;
    }

    .hero.inner {
        min-height: 72px;
        height: 96px;
        max-height: 72px;
    }
    .grid-2,
    .grid-3,
    .owners-grid,
    .program-list,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    nav ul {
        gap: 0.5rem;
    }

    nav a {
        font-size: 0.88rem;
    }

    .brand {
        min-width: auto;
    }

    .brand-text strong {
        font-size: 1.08rem;
    }

    .translate-pill,
    .nav-signup {
        width: auto;
    }

    .translate-dropdown {
        right: auto;
        left: 0;
    }

    .site-footer {
        padding-top: 3rem;
    }

    .floating-hotline {
        right: 18px;
        bottom: 18px;
        height: 52px;
        padding: 0 0.9rem;
    }
}
