/* =====================================================================
   7DG 2026 — Visual Upgrade Layer
   Polish on top of the base AIvent theme to match the 2026 banner:
   vibrant magenta → violet → blue gradients, richer cards & badges.
   ===================================================================== */

:root {
    --accent-magenta: #C026D3;
    --accent-violet: #7C3AED;
    --accent-blue: #2563EB;
    --accent-pink: #EC4899;
    --grad-brand: linear-gradient(115deg, #EC4899 0%, #C026D3 38%, #7C3AED 70%, #2563EB 100%);
}

/* ---- Animated brand gradient text helper ---- */
.text-gradient {
    background: var(--grad-brand);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandShine 6s linear infinite;
}

@keyframes brandShine {
    to { background-position: 200% center; }
}

/* ---- Soft glow accents that echo the banner light streaks ---- */
.glow-orbs::before,
.glow-orbs::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .45;
    z-index: 0;
    pointer-events: none;
}
.glow-orbs > .container { position: relative; z-index: 2; }
.glow-orbs::before {
    width: 480px; height: 480px;
    background: var(--accent-magenta);
    top: -120px; left: -120px;
}
.glow-orbs::after {
    width: 520px; height: 520px;
    background: var(--accent-blue);
    bottom: -160px; right: -140px;
}

/* ---- Hero refinements ---- */
#section-hero h1 {
    letter-spacing: -1px;
    text-shadow: 0 8px 40px rgba(192, 38, 211, .35);
}

/* Service-time pills (Evening 6PM / Morning 6AM / Sunday 9AM) like the banner */
.service-times {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}
.service-pill {
    min-width: 120px;
    padding: 14px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.service-pill:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--primary-color-rgb), .7);
    box-shadow: 0 18px 50px rgba(var(--primary-color-rgb), .35);
}
.service-pill .label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .7;
    margin-bottom: 4px;
}
.service-pill .time {
    display: block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Buttons: gradient fill + lift ---- */
.btn-main {
    background: var(--grad-brand) !important;
    background-size: 180% auto !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), .35);
    transition: background-position .5s ease, transform .3s ease, box-shadow .3s ease;
}
.btn-main:hover {
    background-position: right center !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(var(--primary-color-rgb), .5);
}
.btn-main.btn-line {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, .35) !important;
    box-shadow: none;
}
.btn-main.btn-line:hover {
    border-color: var(--accent-magenta) !important;
    background: rgba(var(--primary-color-rgb), .12) !important;
}

/* ---- Section heading accents ---- */
.subtitle {
    color: var(--accent-pink);
    font-weight: 600;
    letter-spacing: 2px;
}

/* ---- Speaker / minister cards ---- */
.spk-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.spk-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-color-rgb), .6);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .55), 0 0 0 1px rgba(var(--primary-color-rgb), .3);
}
.spk-card img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .6s ease;
}
.spk-card:hover img { transform: scale(1.06); }

/* Initials avatar for ministers without a photo */
.spk-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    background: var(--grad-brand);
    background-size: 200% 200%;
    animation: brandShine 8s ease infinite alternate;
}
.spk-body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 22px 20px 18px;
    background: linear-gradient(to top, rgba(8,6,18,.92) 0%, rgba(8,6,18,.55) 55%, transparent 100%);
    z-index: 2;
}
.spk-body h4, .spk-body h3 { margin: 0; }
.spk-body p { margin: 2px 0 0; opacity: .75; font-size: 14px; }

/* ---- Schedule tabs polish ---- */
.de-tab .d-tab-nav li.active-tab,
.de-tab .d-tab-nav li:hover {
    color: var(--accent-pink);
}
.de-tab .d-tab-nav li.active-tab h3 { color: #fff; }

/* ---- FAQ + cards rounded consistency ---- */
.rounded-1 { border-radius: 16px !important; }

/* ---- Marquee tint to brand ---- */
.bg-color { background: var(--accent-magenta) !important; }
.bg-color-2 { background: var(--accent-violet) !important; }

/* ---- Footer subtle top border ---- */
footer { border-top: 1px solid rgba(255,255,255,.06); }

/* ---- Watch Live modal ---- */
.wl-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wl-modal.open { display: flex; }
.wl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 4, 16, .72);
    backdrop-filter: blur(6px);
}
.wl-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    padding: 36px 30px 30px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(160deg, #16101f 0%, #0d0a16 100%);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .65), 0 0 0 1px rgba(var(--primary-color-rgb), .25);
    animation: wlPop .35s cubic-bezier(.2, .9, .3, 1.2);
}
@keyframes wlPop {
    from { opacity: 0; transform: translateY(24px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wl-close {
    position: absolute;
    top: 14px; right: 18px;
    width: 38px; height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}
.wl-close:hover { background: var(--accent-magenta); transform: rotate(90deg); }

.wl-channels { display: flex; flex-direction: column; gap: 14px; }
.wl-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.wl-channel:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .08);
    border-color: rgba(var(--primary-color-rgb), .6);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .4);
    color: #fff;
}
.wl-icon {
    flex: 0 0 auto;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
}
.wl-icon.yt { background: #FF0000; }
.wl-icon.fb { background: #1877F2; }
.wl-info { flex: 1 1 auto; display: flex; flex-direction: column; line-height: 1.2; }
.wl-name { font-weight: 700; font-size: 17px; }
.wl-platform { font-size: 13px; opacity: .65; }
.wl-live {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff4d4d;
}
.wl-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #ff3b3b;
    box-shadow: 0 0 0 0 rgba(255, 59, 59, .7);
    animation: wlPulse 1.4s infinite;
}
@keyframes wlPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 59, 59, .7); }
    70%  { box-shadow: 0 0 0 8px rgba(255, 59, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

/* ---- Responsive ---- */
@media (max-width: 575px) {
    .service-pill { min-width: 90px; padding: 10px 14px; }
    .service-pill .time { font-size: 20px; }
    .spk-avatar { font-size: 44px; }
    .wl-dialog { padding: 30px 20px 24px; }
}
