/* Luke 10:9 Conference — purple & gold brand system */

:root {
    --l10-purple: #5B3FA8;
    --l10-purple-dark: #2e005c;
    --l10-purple-deep: #1a0f3d;
    --l10-gold: #D4AF37;
    --l10-gold-light: #e8c766;
    --l10-navy: #1a237e;
    --l10-gradient: linear-gradient(135deg, #5B3FA8 0%, #D4AF37 100%);
    --l10-gradient-hover: linear-gradient(135deg, #6b4fbf 0%, #e0bc4a 100%);
    --l10-bg: #ffffff;
    --l10-bg-soft: #f8f7fc;
    --l10-bg-muted: #f0ebff;
    --l10-surface: #ffffff;
    --l10-surface-2: #f8f7fc;
    --l10-text: #2a2d42;
    --l10-text-soft: #3a3f5c;
    --l10-text-muted: #6c757d;
    --l10-nav-text: #3a3f5c;
    --l10-nav-hover-bg: rgba(91, 63, 168, 0.08);
    --l10-border: rgba(91, 63, 168, 0.1);
    --l10-input-bg: #ffffff;
    --l10-input-border: #ced4da;
    --l10-modal-bg: #ffffff;
    --l10-modal-text: #2a2d42;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --l10-bg: #0c0f24;
    --l10-bg-soft: #121632;
    --l10-bg-muted: #0f1229;
    --l10-surface: #181d3f;
    --l10-surface-2: #121632;
    --l10-text: #e8eaf6;
    --l10-text-soft: #d5d9f0;
    --l10-text-muted: #b8bdd8;
    --l10-nav-text: #eef0ff;
    --l10-nav-hover-bg: rgba(212, 175, 55, 0.12);
    --l10-border: rgba(212, 175, 55, 0.15);
    --l10-input-bg: #121632;
    --l10-input-border: rgba(212, 175, 55, 0.22);
    --l10-modal-bg: #181d3f;
    --l10-modal-text: #e8eaf6;
}

html[data-theme="dark"] body {
    background: var(--l10-bg);
    color: var(--l10-text);
}

html[data-theme="dark"] #spinner {
    background: var(--l10-bg) !important;
}

html[data-theme="dark"] .nav-bar.l10-navbar,
html[data-theme="dark"] .l10-navbar {
    background: rgba(12, 15, 36, 0.96) !important;
    border-bottom-color: rgba(212, 175, 55, 0.25);
}

html[data-theme="dark"] .l10-brand-title {
    color: var(--l10-text) !important;
}

html[data-theme="dark"] .l10-nav-links .nav-link {
    color: var(--l10-gold-light) !important;
}

html[data-theme="dark"] .l10-nav-links .nav-link:hover,
html[data-theme="dark"] .l10-nav-links .nav-link.active {
    color: #ffffff !important;
    background: rgba(212, 175, 55, 0.18);
}

html[data-theme="dark"] .navbar-collapse {
    background: transparent;
    border-radius: 14px;
    padding: 0;
    margin-top: 0.5rem;
    border: none;
}

/* Override newsite style.css white nav pill in dark mode */
html[data-theme="dark"] .l10-navbar .navbar .navbar-nav {
    background: rgba(18, 22, 50, 0.98) !important;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;
}

html[data-theme="dark"] .l10-navbar .l10-nav-links .nav-link {
    color: var(--l10-gold-light) !important;
}

html[data-theme="dark"] .l10-navbar .l10-nav-links .nav-link:hover,
html[data-theme="dark"] .l10-navbar .l10-nav-links .nav-link.active {
    color: #ffffff !important;
    background: rgba(212, 175, 55, 0.18);
}

html[data-theme="dark"] .bg-light,
html[data-theme="dark"] .l2-reg-section,
html[data-theme="dark"] .about,
html[data-theme="dark"] .testimonial,
html[data-theme="dark"] .faq-section {
    background: var(--l10-bg-soft) !important;
}

html[data-theme="dark"] .about-item-content,
html[data-theme="dark"] .l2-reg-card,
html[data-theme="dark"] .l2-mini-form,
html[data-theme="dark"] .l2-form-shell,
html[data-theme="dark"] .complete-card,
html[data-theme="dark"] .l2-message-card {
    background: var(--l10-surface) !important;
    border-color: var(--l10-border) !important;
    color: var(--l10-text);
}

html[data-theme="dark"] .complete-title,
html[data-theme="dark"] .l2-message-card h3,
html[data-theme="dark"] .l2-message-card h4 {
    color: var(--l10-text) !important;
}

html[data-theme="dark"] .complete-description,
html[data-theme="dark"] .text-muted,
html[data-theme="dark"] .l10-reg-lead {
    color: var(--l10-text-muted) !important;
}

html[data-theme="dark"] .display-5,
html[data-theme="dark"] .about-item-content p,
html[data-theme="dark"] .l2-mini-form label,
html[data-theme="dark"] .portal-label {
    color: var(--l10-text-soft) !important;
}

html[data-theme="dark"] .form-control,
html[data-theme="dark"] .my-select,
html[data-theme="dark"] select.form-control {
    background: var(--l10-input-bg) !important;
    color: var(--l10-text) !important;
    border-color: var(--l10-input-border) !important;
}

html[data-theme="dark"] .form-control::placeholder {
    color: #8b93b8;
}

html[data-theme="dark"] .l2-reg-divider {
    color: var(--l10-text-muted);
}

html[data-theme="dark"] .l2-reg-divider::before,
html[data-theme="dark"] .l2-reg-divider::after {
    background: linear-gradient(90deg, transparent, var(--l10-border), transparent);
}

html[data-theme="dark"] .l10-scripture-card {
    background: linear-gradient(145deg, #181d3f 0%, #121632 55%, #1a0f3d 100%);
}

html[data-theme="dark"] .l10-scripture-quote {
    color: #f0e8ff;
}

html[data-theme="dark"] .l10-scripture-ref,
html[data-theme="dark"] .l10-scripture-logo-title {
    color: #f0e8ff;
}

html[data-theme="dark"] .accordion-item {
    background: var(--l10-surface);
    border-color: var(--l10-border);
}

html[data-theme="dark"] .accordion-button.collapsed {
    background: var(--l10-surface) !important;
    color: var(--l10-text) !important;
}

html[data-theme="dark"] .accordion-body {
    background: var(--l10-surface-2);
    color: var(--l10-text-muted);
}

html[data-theme="dark"] .l10-icon-btn {
    background: var(--l10-surface);
    border-color: var(--l10-border);
    color: var(--l10-text);
}

html[data-theme="dark"] .l10-icon-btn:hover {
    background: var(--l10-surface-2);
}

html[data-theme="dark"] .l10-mobile-register {
    border-color: var(--l10-border) !important;
}

html[data-theme="dark"] .modal-content {
    background: var(--l10-modal-bg);
    color: var(--l10-modal-text);
}

html[data-theme="dark"] .modal-header {
    border-color: var(--l10-border);
}

html[data-theme="dark"] .copyright {
    background: #080512 !important;
}

html[data-theme="dark"] .copyright .text-body,
html[data-theme="dark"] .copyright span,
html[data-theme="dark"] .copyright p {
    color: var(--l10-text-muted) !important;
}

html[data-theme="dark"] .l10-section-kicker-dark {
    color: var(--l10-gold-light);
}

html[data-theme="dark"] .faq-section .accordion-button.collapsed {
    color: var(--l10-text) !important;
}

html[data-theme="dark"] .footer-item p {
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Topbar */
.topbar {
    background: linear-gradient(135deg, var(--l10-purple-dark) 0%, var(--l10-purple) 100%);
    border-bottom: 2px solid var(--l10-gold);
    font-size: 14px;
    padding: 12px 0;
}

.topbar a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none;
}

.topbar a:hover {
    color: var(--l10-gold-light) !important;
}

.topbar i {
    color: var(--l10-gold-light);
}

.topbar .text-muted {
    color: rgba(255, 255, 255, 0.92) !important;
}

.topbar .border-primary {
    border-color: rgba(255, 255, 255, 0.35) !important;
}

@media (max-width: 991px) {
    .topbar {
        display: none !important;
    }
}

/* Navbar */
.l10-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(91, 63, 168, 0.1);
    transition: box-shadow 0.3s ease;
}

.l10-navbar.is-scrolled {
    box-shadow: 0 8px 32px rgba(91, 63, 168, 0.14);
}

.l10-nav-links .nav-link {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--l10-nav-text) !important;
    padding: 0.55rem 0.85rem !important;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.l10-nav-links .nav-link:hover,
.l10-nav-links .nav-link.active {
    color: var(--l10-purple) !important;
    background: var(--l10-nav-hover-bg);
}

.navbar-light .l10-nav-links .nav-link {
    color: var(--l10-nav-text) !important;
}

/* Light theme: keep nav pill readable on white menu background from style.css */
.l10-navbar .navbar .navbar-nav {
    border-radius: 12px;
}

.l10-navbar .l10-nav-links .nav-link {
    color: var(--l10-purple-dark) !important;
}

.l10-navbar .l10-nav-links .nav-link:hover,
.l10-navbar .l10-nav-links .nav-link.active {
    color: var(--l10-purple) !important;
}

#register-console .display-5,
#global-cta .display-5,
#faq .display-5 {
    color: var(--l10-text);
}

#global-cta p {
    color: var(--l10-text-muted);
}

body {
    background: var(--l10-bg);
    color: var(--l10-text);
    font-family: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
    transition: background 0.3s ease, color 0.3s ease;
}

.l10-nav-actions {
    flex-shrink: 0;
}

.l10-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(91, 63, 168, 0.18);
    background: #f8f7fc;
    color: var(--l10-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    padding: 0;
}

.l10-icon-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(91, 63, 168, 0.2);
    background: #fff;
}

.l10-btn-gradient,
.btn-register-now,
.complete-btn,
.video-buttons-container a {
    background: var(--l10-gradient) !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 6px 20px rgba(91, 63, 168, 0.28);
}

.l10-btn-gradient:hover,
.btn-register-now:hover,
.complete-btn:hover,
.video-buttons-container a:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 10px 28px rgba(91, 63, 168, 0.35);
    color: #fff !important;
    text-decoration: none;
}

/* Logo lockup */
.l10-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
}

.l10-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.l10-brand-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--l10-purple-dark);
    letter-spacing: -0.02em;
}

.l10-brand-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--l10-gold);
}

.l10-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
    margin-bottom: 1rem;
}

.l10-footer-brand img:not(.l10-footer-brand__banner) {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.l10-footer-brand span {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.l10-footer-brand--banner {
    display: block;
    max-width: min(100%, 280px);
    margin-bottom: 1rem;
}

.l10-footer-brand__banner {
    display: block;
    width: 100%;
    height: auto;
    max-height: 118px;
    max-width: 280px;
    object-fit: contain;
    object-position: left center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 575.98px) {
    .l10-footer-brand--banner {
        max-width: 100%;
    }

    .l10-footer-brand__banner {
        max-width: 100%;
        max-height: 104px;
    }
}

/* Hero / video */
.video-parallax-container {
    height: 60vh !important;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.video-parallax-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-parallax-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(26, 15, 61, 0.72) 0%,
        rgba(91, 63, 168, 0.55) 45%,
        rgba(10, 16, 48, 0.78) 100%
    );
    pointer-events: none;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    padding: 20px 15px;
    overflow: hidden;
}

#videoContent .hs-hero-shell {
    width: min(100%, 1140px);
    padding-inline: 0.75rem;
}

#videoContent .hs-hero-stack {
    width: 100%;
    gap: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#videoContent .hs-hero-title {
    margin: 0.75rem 0 0 !important;
    max-width: 22ch;
    line-height: 1.1 !important;
    font-size: clamp(1.18rem, 5.7vw, 2.6rem) !important;
}

.hs-hero-kicker {
    margin: 0;
    font-size: clamp(0.72rem, 2.4vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--l10-gold-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

/* Countdown — gradient panel */
.l10-countdown {
    width: min(94vw, 720px);
    margin: 1.25rem auto 1.5rem;
    padding: 1.35rem 1.25rem 1.1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(91, 63, 168, 0.92) 0%, rgba(46, 0, 92, 0.88) 55%, rgba(212, 175, 55, 0.35) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.l10-countdown-heading {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--l10-gold-light);
    text-align: center;
}

.l10-countdown-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.35rem, 2vw, 0.85rem);
    flex-wrap: wrap;
}

.l10-countdown-unit {
    min-width: 72px;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.l10-countdown-num {
    display: block;
    font-size: clamp(1.75rem, 6vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.l10-countdown-name {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.l10-countdown-sep {
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--l10-gold-light);
    line-height: 1;
    padding-bottom: 1.1rem;
}

.l10-countdown-status {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.video-buttons-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.video-buttons-container a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 25px;
    white-space: nowrap;
    font-size: 13px;
}

.btn-kingschat {
    background: linear-gradient(135deg, #5c2d91 0%, #7b3fbf 50%, #9b59b6 100%);
    color: white !important;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 45, 145, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.btn-kingschat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 45, 145, 0.45);
    color: white !important;
    text-decoration: none;
}

.btn-kingschat img {
    width: 28px;
    height: auto;
}

/* Registration */
#register-console,
#message-bar {
    scroll-margin-top: 6.5rem;
}

.l10-share-wrap {
    background: var(--l10-surface);
    border: 1px solid var(--l10-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(91, 63, 168, 0.1);
}

.l10-share-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--l10-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.l10-share-intro {
    color: var(--l10-text-muted);
    margin-bottom: 1rem;
}

.l10-share-extra {
    margin-bottom: 1rem;
}

.l10-btn-healing {
    display: inline-block;
    text-decoration: none;
}

.l10-share-box {
    background: var(--l10-surface-2);
    border: 1px solid var(--l10-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.l10-share-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--l10-purple);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.l10-share-input {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.l10-share-copy {
    margin-bottom: 0.5rem;
}

.l10-share-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.l10-share-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--l10-purple) 0%, #7c3aed 100%);
    color: #fff !important;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 1.1rem;
}

.l10-share-icon:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(91, 63, 168, 0.35);
}

html[data-theme="dark"] .l10-share-wrap,
html[data-theme="dark"] .l10-share-box {
    background: var(--l10-surface);
}

html[data-theme="dark"] .l10-share-label {
    color: var(--l10-gold);
}

.l2-reg-section {
    background: linear-gradient(180deg, var(--l10-bg-soft) 0%, var(--l10-bg-muted) 100%);
}

.l10-reg-lead {
    color: var(--l10-text-muted);
}

.l2-reg-card {
    background: var(--l10-surface);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(91, 63, 168, 0.12);
    border: 1px solid var(--l10-border);
}

.l2-reg-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.l2-reg-divider::before,
.l2-reg-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.l2-mini-form {
    background: var(--l10-surface-2);
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    border: 1px solid var(--l10-border);
    transition: box-shadow 0.3s ease;
}

.l2-mini-form:hover {
    box-shadow: 0 6px 20px rgba(91, 63, 168, 0.1);
}

.l2-mini-form label {
    font-weight: 600;
    color: var(--l10-text-soft);
    margin-bottom: 0.5rem;
}

.l2-form-shell {
    background: var(--l10-surface-2);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid var(--l10-border);
}

.l2-form-shell h4 {
    color: var(--l10-purple);
    font-weight: 700;
}

.l2-message-card {
    background: var(--l10-surface);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(91, 63, 168, 0.12);
    border-left: 4px solid var(--l10-gold);
}

.l2-message-card h3,
.l2-message-card h4 {
    margin-bottom: 0;
    color: var(--l10-text);
}

.l2-message-error {
    border-left-color: #dc3545;
    text-align: left;
}

.l2-message-success .button,
.l2-message-success a.button,
.l2-message-success .btn {
    display: inline-block;
    margin: 0.35rem 0.25rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    color: #fff !important;
    background: var(--l10-gradient);
    border: none;
    font-weight: 600;
}

.l2-message-success input.form-control {
    margin: 0.75rem 0;
    text-align: left;
}

.l10-portal-form .portal-label,
.l10-portal-form label {
    font-weight: 600;
    color: var(--l10-text-soft);
    margin-bottom: 0.35rem;
}

.l10-portal-form .form-control,
.l10-portal-form select.form-control {
    border-radius: 10px;
    border-color: var(--l10-border);
    background: var(--l10-surface);
    color: var(--l10-text);
}

.l10-portal-form .portal-check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.l10-portal-form .portal-submit-btn {
    margin-top: 0.5rem;
}

.l10-portal-form .select2-container--default .select2-selection--single {
    height: calc(2.5rem + 2px);
    border-color: var(--l10-border);
    border-radius: 10px;
    background: var(--l10-surface);
}

.l10-portal-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: calc(2.5rem + 2px);
    color: var(--l10-text);
}

html[data-theme="dark"] .select2-dropdown,
html[data-theme="dark"] .select2-container--default .select2-results__option {
    background: var(--l10-surface);
    color: var(--l10-text);
}

.l10-portal-form font[color="#1B4F72"],
.l10-portal-form font[color="red"] {
    color: var(--l10-purple) !important;
}

.l10-portal-form font[color="red"] {
    color: #c0392b !important;
}

html[data-theme="dark"] .l10-portal-form font[color="red"] {
    color: #ff8a80 !important;
}

/* Portal form — shared typography & layout */
.l10-portal-form,
.l10-portal-form .portal-label,
.l10-portal-form .portal-policy-note,
.l10-portal-form .l10-field-hint,
.l10-portal-form .l10-form-welcome,
.l10-portal-form .l10-option-copy {
    font-family: 'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;
}

.l10-old-reg-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.l10-form-section {
    padding: 1.25rem;
    border-radius: 18px;
    border: 1px solid var(--l10-border);
    background: var(--l10-surface);
    box-shadow: 0 8px 24px rgba(91, 63, 168, 0.05);
}

.l10-form-section--options {
    background: linear-gradient(180deg, var(--l10-surface) 0%, var(--l10-surface-2) 100%);
}

.l10-form-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.l10-form-section-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--l10-gradient);
}

.l10-form-section-title {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--l10-purple);
}

.l10-form-section-sub {
    margin: 0;
    font-size: 0.84rem;
    color: var(--l10-text-muted);
    line-height: 1.45;
}

.l10-field-label,
.l10-portal-form .portal-label,
.l10-portal-form label.l10-field-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--l10-text-soft);
}

.l10-field-control,
.l10-portal-form .form-control,
.l10-portal-form select.form-control {
    min-height: calc(2.65rem + 2px);
    border-radius: 12px;
    border: 1px solid var(--l10-input-border);
    background: var(--l10-input-bg);
    color: var(--l10-text);
    font-size: 0.95rem;
    padding: 0.65rem 0.9rem;
}

.l10-field-control:focus,
.l10-portal-form .form-control:focus {
    border-color: var(--l10-purple);
    box-shadow: 0 0 0 0.2rem rgba(91, 63, 168, 0.12);
}

.l10-form-policy {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--l10-text-muted);
    text-align: center;
}

.l10-form-policy a {
    color: var(--l10-purple);
    font-weight: 600;
}

.l10-consent-card {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    margin: 0;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    border: 1.5px solid var(--l10-border);
    background: var(--l10-surface-2);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.l10-consent-card:hover {
    border-color: rgba(91, 63, 168, 0.35);
}

.l10-consent-card:has(.l10-option-check:checked) {
    border-color: var(--l10-purple);
    background: linear-gradient(135deg, rgba(91, 63, 168, 0.05) 0%, rgba(212, 175, 55, 0.07) 100%);
}

.l10-consent-copy {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--l10-text-muted);
}

.l10-consent-copy a {
    color: var(--l10-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

html[data-theme="dark"] .l10-consent-copy a {
    color: var(--l10-gold-light);
}

.l10-consent-card .l10-option-check:invalid {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

.l10-form-submit {
    margin-top: 0.25rem;
    min-height: 3rem;
    font-size: 1rem;
    font-weight: 700;
}

html[data-theme="dark"] .l10-form-section-title {
    color: var(--l10-gold-light);
}

html[data-theme="dark"] .l10-form-section {
    background: var(--l10-surface-2);
}

html[data-theme="dark"] .l10-form-policy a {
    color: var(--l10-gold-light);
}

.l10-form-welcome {
    text-align: center;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(91, 63, 168, 0.08) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid var(--l10-border);
}

.l10-form-welcome-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--l10-gold);
}

.l10-form-welcome-title {
    margin: 0 0 0.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: var(--l10-purple);
}

.l10-form-welcome-lead {
    margin: 0;
    color: var(--l10-text-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

.l10-field-hint {
    margin: -0.15rem 0 0.5rem;
    font-size: 0.82rem;
    color: var(--l10-text-muted);
    line-height: 1.45;
}

.l10-label-accent {
    color: var(--l10-purple) !important;
}

html[data-theme="dark"] .l10-label-accent {
    color: var(--l10-gold-light) !important;
}

.l10-readonly-field {
    background: var(--l10-bg-soft) !important;
    color: var(--l10-text-muted) !important;
    cursor: not-allowed;
}

.l10-phone-wrap {
    width: 100%;
}

.l10-portal-form .iti {
    width: 100%;
    display: block;
    position: relative;
}

.l10-portal-form .iti__country-list {
    position: absolute !important;
    z-index: 10050 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 220px;
    overflow-y: auto;
    background: var(--l10-surface);
    border: 1px solid var(--l10-border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(91, 63, 168, 0.15);
}

.l10-portal-form .iti__country-list.iti__hide {
    display: none !important;
}

.l10-portal-form .iti__flag-container {
    z-index: 2;
}

.l10-portal-form .iti--separate-dial-code .iti__selected-flag {
    border-radius: 12px 0 0 12px;
}

.l10-portal-form .iti--separate-dial-code input[type="tel"] {
    padding-left: 96px !important;
}

.l10-form-section {
    overflow: visible;
}

.l10-portal-form .iti__tel-input,
.l10-portal-form .iti input[type="tel"] {
    width: 100%;
    min-height: calc(2.5rem + 2px);
    border-radius: 10px;
    border-color: var(--l10-border);
    background: var(--l10-surface);
    color: var(--l10-text);
}

.l10-option-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.l10-option-card {
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
    margin: 0;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    border: 1.5px solid var(--l10-border);
    background: var(--l10-surface);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.l10-option-card:hover {
    border-color: rgba(91, 63, 168, 0.35);
    box-shadow: 0 6px 18px rgba(91, 63, 168, 0.08);
}

.l10-option-card:has(.l10-option-check:checked) {
    border-color: var(--l10-purple);
    background: linear-gradient(135deg, rgba(91, 63, 168, 0.06) 0%, rgba(212, 175, 55, 0.08) 100%);
    box-shadow: 0 8px 22px rgba(91, 63, 168, 0.12);
}

.l10-option-check {
    flex-shrink: 0;
    width: 1.45rem;
    height: 1.45rem;
    margin-top: 0.1rem;
    accent-color: var(--l10-purple);
    cursor: pointer;
}

.l10-option-check:focus-visible {
    outline: 2px solid var(--l10-gold);
    outline-offset: 2px;
}

.l10-option-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--l10-text);
    line-height: 1.45;
}

.l10-option-copy strong {
    font-size: 0.98rem;
    color: var(--l10-purple);
}

.l10-option-copy span {
    font-size: 0.88rem;
    color: var(--l10-text-muted);
}

html[data-theme="dark"] .l10-option-copy strong {
    color: var(--l10-gold-light);
}

.l10-portal-form .portal-policy-note {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--l10-text-muted);
}

.l10-portal-form .portal-policy-note a {
    color: var(--l10-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

html[data-theme="dark"] .l10-portal-form .portal-policy-note a {
    color: var(--l10-gold-light);
}

.l10-portal-form .select2-container {
    width: 100% !important;
    max-width: 100%;
}

.l10-portal-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: calc(2.5rem + 2px);
}

html[data-theme="dark"] .l10-form-welcome {
    background: linear-gradient(135deg, rgba(91, 63, 168, 0.18) 0%, rgba(212, 175, 55, 0.12) 100%);
}

html[data-theme="dark"] .l10-form-welcome-title {
    color: var(--l10-gold-light);
}

html[data-theme="dark"] .l10-portal-form .iti__country-list,
html[data-theme="dark"] .l10-portal-form .iti__selected-flag {
    background: var(--l10-surface);
    color: var(--l10-text);
}

html[data-theme="dark"] .select2-container--default .select2-selection--single,
html[data-theme="dark"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    background: var(--l10-surface);
    color: var(--l10-text);
    border-color: var(--l10-border);
}


@media (max-width: 575.98px) {
    .l10-form-welcome {
        padding: 1rem 0.85rem;
    }

    .l10-option-card {
        padding: 0.9rem;
        gap: 0.8rem;
    }

    .l10-option-check {
        width: 1.55rem;
        height: 1.55rem;
    }

    .l10-portal-form .select2-container--default .select2-selection--single {
        min-height: calc(2.75rem + 2px);
    }

    .l10-portal-form .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: calc(2.75rem + 2px);
    }
}

.text-primary {
    color: var(--l10-purple) !important;
}

/* Scripture block */
.l10-scripture-wrap {
    padding: 0.5rem;
    gap: 1.25rem;
}

.l10-scripture-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
}

.l10-scripture-logo img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.l10-scripture-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.l10-scripture-logo-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--l10-purple-dark);
}

.l10-scripture-logo-sub {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--l10-gold);
}

.l10-scripture-card {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 2.75rem 2rem 2.25rem;
    text-align: center;
    background: linear-gradient(145deg, #faf6ff 0%, #f0e8ff 55%, #fdfbff 100%);
    border: 2px solid var(--l10-gold);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(91, 63, 168, 0.08);
}

.l10-scripture-card::before,
.l10-scripture-card::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 2px solid var(--l10-gold);
}

.l10-scripture-card::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.l10-scripture-card::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.l10-scripture-mark {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--l10-gold);
    color: #fff;
    font-size: 2.4rem;
    font-family: Georgia, serif;
    line-height: 1;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
}

.l10-scripture-quote {
    margin: 1rem 0 1.25rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
    font-weight: 600;
    line-height: 1.55;
    color: var(--l10-purple-dark);
}

.l10-scripture-ref {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--l10-purple);
    letter-spacing: 0.02em;
}

/* Section headings */
.l10-section-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--l10-gold);
    margin-bottom: 0.5rem;
}

.l10-section-kicker-dark {
    color: var(--l10-purple);
}

.l10-section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.l10-section-lead {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Testimonies */
.l10-testimonies-section {
    background: linear-gradient(180deg, #050a15 0%, #0f1229 50%, #1a0f3d 100%);
    overflow: hidden;
}

.l10-testimony-scroll-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.l10-testimony-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0.25rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--l10-gold) transparent;
    flex: 1;
}

.l10-testimony-scroll::-webkit-scrollbar {
    height: 6px;
}

.l10-testimony-scroll::-webkit-scrollbar-thumb {
    background: var(--l10-gold);
    border-radius: 999px;
}

.l10-testimony-card {
    flex: 0 0 min(88vw, 340px);
    scroll-snap-align: start;
    background: #0d1228;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.l10-testimony-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35);
}

.l10-testimony-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #000;
}

.l10-testimony-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: transform 0.5s ease;
}

.l10-testimony-card:hover .l10-testimony-media img {
    transform: scale(1.05);
}

.l10-testimony-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #059669;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.l10-testimony-quote-bar {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.55rem 0.75rem;
    color: #e2e8f0;
    font-size: 0.72rem;
    font-style: italic;
    line-height: 1.4;
}

.l10-testimony-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: var(--l10-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.l10-testimony-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
    color: #fff;
}

.l10-testimony-play i {
    margin-left: 3px;
}

.l10-testimony-body {
    padding: 1.25rem;
}

.l10-testimony-tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--l10-gold);
    margin-bottom: 0.35rem;
}

.l10-testimony-body h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.l10-testimony-body p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    line-height: 1.55;
    margin: 0;
}

.l10-scroll-btn {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(91, 63, 168, 0.35);
    color: var(--l10-gold-light);
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.l10-scroll-btn:hover {
    background: rgba(91, 63, 168, 0.6);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .l10-scroll-btn {
        display: inline-flex;
    }

    .l10-testimony-card {
        flex-basis: min(42vw, 360px);
    }
}

/* CTA cards */
.complete-card {
    background: var(--l10-surface);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(91, 63, 168, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--l10-border);
}

.complete-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(91, 63, 168, 0.15);
}

.complete-letter {
    width: 60px;
    height: 60px;
    background: var(--l10-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(91, 63, 168, 0.3);
}

.complete-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--l10-text);
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: 'DM Sans', sans-serif;
}

.complete-description {
    font-size: 14px;
    color: var(--l10-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-family: 'DM Sans', sans-serif;
}

.l2-step-num {
    width: 52px;
    height: 52px;
    background: var(--l10-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(91, 63, 168, 0.3);
}

.l2-cta-herald .complete-letter { background: linear-gradient(135deg, #5B3FA8, #7b5fd4); }
.l2-cta-give .complete-letter { background: linear-gradient(135deg, #D4AF37, #b8922a); }
.l2-cta-pray .complete-letter { background: linear-gradient(135deg, #5B3FA8, #D4AF37); }
.l2-cta-publicize .complete-letter { background: linear-gradient(135deg, #7b2cbf, #D4AF37); }

/* FAQ */
.faq-section {
    background: linear-gradient(180deg, var(--l10-bg-soft) 0%, var(--l10-bg) 100%);
}

/* Video modal */
.l10-video-modal .modal-content {
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.l10-video-modal .modal-header {
    background: linear-gradient(135deg, #1a0f3d 0%, #5B3FA8 100%);
    color: #fff;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.l10-video-modal .modal-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding-right: 1rem;
}

.l10-video-modal .btn-close {
    filter: invert(1);
    opacity: 0.85;
}

.l10-video-modal video {
    width: 100%;
    max-height: 75vh;
    background: #000;
    display: block;
}

.l10-testimony-watch {
    margin-top: 0.75rem;
    width: 100%;
    position: relative;
    z-index: 4;
    cursor: pointer;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--l10-gradient) !important;
    color: #fff !important;
    box-shadow: none;
}

.faq-section .accordion-button.collapsed {
    color: var(--l10-purple-dark);
    font-weight: 600;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(91, 63, 168, 0.2);
}

/* Footer */
.l10-footer.footer,
.footer.l10-footer {
    background: linear-gradient(135deg, #1a0f3d 0%, #5B3FA8 48%, #2e005c 100%) !important;
}

.l10-footer .footer-item a:hover {
    color: var(--l10-gold-light) !important;
}

.l10-footer .footer-item a,
.l10-footer .footer-item .text-white {
    color: rgba(255, 255, 255, 0.92) !important;
}

.l10-footer .footer-item h4 {
    color: #ffffff !important;
}

.l10-footer .footer-item p {
    color: rgba(255, 255, 255, 0.88) !important;
}

.l10-footer .btn-xl-square.bg-primary {
    background: var(--l10-gradient) !important;
}

.copyright {
    background: #120a28 !important;
}

.back-to-top {
    background: var(--l10-gradient) !important;
    border: none;
    color: #fff !important;
}

.back-to-top i {
    font-size: 1.15rem;
    line-height: 1;
}

/* Cookie consent banner */
.l10-cookie-consent {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9990;
    max-width: 28rem;
    margin-left: auto;
    margin-right: 0;
    pointer-events: none;
}

.l10-cookie-consent.is-hidden {
    display: none;
}

.l10-cookie-consent:not(.is-hidden) {
    pointer-events: auto;
}

.l10-cookie-consent__panel {
    background: var(--l10-surface);
    border: 1px solid var(--l10-border);
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(91, 63, 168, 0.22);
    padding: 1.25rem;
}

.l10-cookie-consent__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--l10-gradient);
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.l10-cookie-consent__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--l10-text-soft);
}

.l10-cookie-consent__link,
.l10-cookie-consent__link-btn {
    color: var(--l10-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.l10-cookie-consent__link-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.l10-cookie-consent__link:hover,
.l10-cookie-consent__link-btn:hover {
    color: var(--l10-gold);
}

.l10-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.l10-cookie-consent__accept {
    flex: 1 1 9rem;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    border-radius: 0.85rem !important;
}

.l10-cookie-consent__decline {
    flex: 1 1 9rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--l10-border);
    border-radius: 0.85rem;
    background: var(--l10-surface-2);
    color: var(--l10-text);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.l10-cookie-consent__decline:hover {
    background: var(--l10-bg-muted);
    border-color: rgba(91, 63, 168, 0.25);
}

.l10-privacy-modal {
    background: var(--l10-modal-bg);
    color: var(--l10-modal-text);
}

.l10-privacy-modal__lead {
    color: var(--l10-text-soft);
    line-height: 1.6;
}

.l10-privacy-modal__list {
    margin: 1rem 0;
    padding-left: 1.15rem;
    color: var(--l10-text-soft);
}

.l10-privacy-modal__list li + li {
    margin-top: 0.5rem;
}

.l10-privacy-modal a {
    color: var(--l10-purple);
    font-weight: 600;
}

html[data-theme="dark"] .l10-cookie-consent__link,
html[data-theme="dark"] .l10-cookie-consent__link-btn {
    color: var(--l10-gold-light);
}

html[data-theme="dark"] .l10-cookie-consent__decline {
    background: var(--l10-surface-2);
    color: var(--l10-text);
}

html[data-theme="dark"] .l10-privacy-modal a {
    color: var(--l10-gold-light);
}

body.l10-cookie-visible .back-to-top {
    bottom: calc(1rem + 9.5rem);
}

@media (max-width: 767.98px) {
    .l10-cookie-consent {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        max-width: none;
        margin-right: 0;
    }

    .l10-cookie-consent__actions {
        flex-direction: column;
    }

    .l10-cookie-consent__accept,
    .l10-cookie-consent__decline {
        width: 100%;
        flex: 1 1 auto;
    }

    body.l10-cookie-visible .back-to-top {
        bottom: calc(0.75rem + 11rem);
    }
}

/* Responsive hero fixes */
@media (min-width: 768px) {
    .video-parallax-container {
        height: 70vh !important;
        min-height: 500px;
    }

    .l10-brand img {
        width: 58px;
        height: 58px;
    }

    .l10-brand-title {
        font-size: 1.5rem;
    }

    .l10-countdown-row {
        flex-wrap: nowrap;
    }

    .video-buttons-container a {
        font-size: 14px;
        padding: 12px 28px;
        min-width: 180px;
    }
}

@media (min-width: 992px) {
    .video-parallax-container {
        height: 75vh !important;
        min-height: 560px;
    }

    .video-buttons-container a {
        font-size: 15px;
        padding: 14px 32px;
        min-width: 200px;
    }
}

@media (max-width: 991px) {
    .video-parallax-container {
        min-height: 720px;
        height: auto !important;
    }

    .video-content {
        position: absolute;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 6.5rem;
        padding-bottom: 2rem;
        overflow-y: auto;
    }

    #videoContent .hs-hero-title {
        max-width: 100%;
        font-size: clamp(0.95rem, 4.2vw, 1.35rem) !important;
        line-height: 1.15 !important;
    }

    #videoContent .hs-hero-stack {
        gap: 0.85rem;
    }

    .l10-countdown {
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .l10-brand img {
        width: 44px;
        height: 44px;
    }

    .l10-brand-title {
        font-size: 1.05rem;
    }

    .l10-brand-sub {
        font-size: 0.68rem;
    }

    .l10-countdown-sep {
        display: none;
    }

    .l10-countdown-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .l10-countdown-unit {
        min-width: 0;
    }

    .l10-scripture-card {
        padding: 2.5rem 1.25rem 1.75rem;
    }

    .video-buttons-container a {
        font-size: 11px;
        line-height: 1.2;
        padding: 10px 14px;
        min-width: 142px;
        white-space: normal;
    }

    .l2-reg-card {
        padding: 1.25rem;
    }

    .complete-card {
        padding: 20px;
    }

    .l10-nav-links .nav-link {
        padding-left: 0 !important;
    }
}
