:root {
    --bible-card-shadow: 0 18px 40px rgba(72, 49, 24, 0.08);
    --bible-soft-border: rgba(86, 70, 50, 0.12);
    --bible-soft-surface: rgba(255, 255, 255, 0.86);
}

main.bible-shell {
    margin-top: 50px;
    margin-bottom: 44px;
    min-height: calc(100vh - 94px);
    display: block;
    padding: 0 0 28px;
    background:
        radial-gradient(circle at top left, rgba(184, 144, 89, 0.12), transparent 24%),
        linear-gradient(180deg, #f3ece2 0%, #f8fafc 30%, #faf7f0 100%);
}

main.bible-shell.br-page {
    padding-top: 0;
}

.bible-shell--reading {
    --bible-accent: #4b7059;
    --bible-accent-strong: #24382d;
    --bible-accent-soft: #dce9dd;
    --bible-warm: #b8844f;
    --bible-ink: #1d2920;
}

.bible-shell--study {
    --bible-accent: #436b4c;
    --bible-accent-strong: #253a2c;
    --bible-accent-soft: #d7e7d8;
    --bible-warm: #bb8852;
    --bible-ink: #1e2921;
}

.bible-shell--audio {
    --bible-accent: #41697a;
    --bible-accent-strong: #213844;
    --bible-accent-soft: #d8e7ec;
    --bible-warm: #c18a52;
    --bible-ink: #1b2630;
}

.bible-shell--translation {
    --bible-accent: #5a73a7;
    --bible-accent-strong: #2a3557;
    --bible-accent-soft: #dde4f4;
    --bible-warm: #bd8850;
    --bible-ink: #202944;
}

.bible-banner {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 30, 24, 0.9) 0%, rgba(31, 46, 37, 0.88) 45%, rgba(75, 112, 89, 0.8) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    color: #fff;
}

.bible-shell--audio .bible-banner {
    background:
        linear-gradient(135deg, rgba(18, 31, 40, 0.93) 0%, rgba(32, 55, 66, 0.9) 50%, rgba(65, 105, 122, 0.8) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.bible-shell--translation .bible-banner {
    background:
        linear-gradient(135deg, rgba(26, 33, 55, 0.94) 0%, rgba(45, 56, 92, 0.9) 48%, rgba(90, 115, 167, 0.82) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.bible-banner::before,
.bible-banner::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.6;
}

.bible-banner::before {
    width: 440px;
    height: 440px;
    right: -120px;
    top: -220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 72%);
    animation: bibleFloat 16s ease-in-out infinite;
}

.bible-banner::after {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: -220px;
    background: radial-gradient(circle, rgba(200, 148, 84, 0.28) 0%, rgba(200, 148, 84, 0) 72%);
    animation: bibleFloat 18s ease-in-out infinite reverse;
}

.bible-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 24px 78px;
    min-height: 270px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 360px);
    gap: 28px;
    align-items: center;
}

.bible-banner__inner::after {
    content: "";
    position: absolute;
    inset: 18px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    pointer-events: none;
}

.bible-banner__content,
.bible-banner__visual {
    position: relative;
    z-index: 1;
}

.bible-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f7ead8;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
}

.bible-banner__title {
    margin: 18px 0 12px;
    max-width: 640px;
    font-size: clamp(2rem, 4.6vw, 3.65rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #fffaf2;
}

.bible-banner__lead {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(248, 245, 238, 0.82);
}

.bible-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.bible-banner__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.bible-banner__action--primary {
    color: #172118;
    background: linear-gradient(135deg, #f4dfc3, #e8c89e);
    box-shadow: 0 14px 32px rgba(26, 19, 12, 0.18);
}

.bible-banner__action--secondary {
    color: #f9f2e9;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.bible-banner__action:hover {
    transform: translateY(-2px);
}

.bible-banner__visual {
    display: flex;
    justify-content: flex-end;
}

.bible-banner__visual-card {
    width: min(100%, 340px);
    padding: 18px 18px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 50px rgba(12, 16, 14, 0.2);
    backdrop-filter: blur(18px);
    transform: translateY(10px);
    transition: transform 0.65s ease;
}

.bible-banner.is-ready .bible-banner__visual-card {
    transform: translateY(0);
}

.bible-banner__visual-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f6e5ce;
    background: rgba(0, 0, 0, 0.18);
}

.bible-banner__visual-title {
    margin: 14px 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.bible-banner__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bible-banner__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(250, 247, 240, 0.88);
}

.bible-banner__list li + li {
    margin-top: 10px;
}

.bible-banner__list li i {
    margin-top: 3px;
    color: #f0ca95;
}

.bible-banner__note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 12px;
    line-height: 1.65;
    color: rgba(247, 244, 236, 0.7);
}

.bible-module-strip,
.bible-feature-row {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.bible-module-strip {
    margin-top: -44px;
}

.bible-module-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.bible-module-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 122px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    text-decoration: none;
    color: var(--bible-ink);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: var(--bible-card-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.bible-module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(72, 49, 24, 0.12);
}

.bible-module-card.is-active {
    border-color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(243, 236, 223, 0.94)),
        var(--bible-accent-soft);
}

.bible-module-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--bible-accent-strong);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), var(--bible-accent-soft));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.bible-module-card__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bible-accent);
}

.bible-module-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.bible-module-card__text {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(45, 51, 45, 0.72);
}

.bible-feature-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.bible-feature-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: var(--bible-soft-surface);
    border: 1px solid var(--bible-soft-border);
    box-shadow: 0 14px 30px rgba(75, 54, 28, 0.05);
    backdrop-filter: blur(10px);
}

.bible-feature-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--bible-accent), var(--bible-warm));
    box-shadow: 0 10px 24px rgba(60, 44, 20, 0.12);
}

.bible-feature-card__title {
    margin: 14px 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: var(--bible-ink);
}

.bible-feature-card__text {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(46, 51, 46, 0.74);
}

.bible-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.bible-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

main.bible-shell .br-hero,
main.bible-shell .bst-hero,
main.bible-shell .ab-hero,
main.bible-shell .bt-hero {
    position: relative;
    z-index: 2;
    left: auto;
    width: auto;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
}

main.bible-shell .br-hero {
    padding: 0;
}

main.bible-shell .br-hero-shell {
    max-width: none;
    width: 100%;
    padding: 28px clamp(18px, 4vw, 34px);
    border-radius: 0;
    border: 0;
    background: linear-gradient(135deg, #25382d 0%, #355444 55%, #4d725d 100%);
    box-shadow: var(--bible-card-shadow);
    overflow: hidden;
}

main.bible-shell .bst-hero,
main.bible-shell .ab-hero,
main.bible-shell .bt-hero {
    max-width: none;
    margin: 0;
    padding-top: 56px;
    padding-bottom: 60px;
    border-radius: 0;
    box-shadow: var(--bible-card-shadow);
    border: 0;
}

main.bible-shell .bst-hero {
    background: linear-gradient(135deg, #2a402f 0%, #3d5d47 52%, #5c7c65 100%);
}

main.bible-shell .ab-hero {
    background: linear-gradient(135deg, #253946 0%, #365766 52%, #537b86 100%);
}

main.bible-shell .bt-hero {
    background: linear-gradient(135deg, #2f3858 0%, #475987 52%, #728cb4 100%);
}

main.bible-shell .bst-wrap,
main.bible-shell .ab-wrap,
main.bible-shell .bt-wrap {
    max-width: 1180px;
    padding-top: 34px;
}

main.bible-shell .br-container {
    max-width: 1180px;
}

main.bible-shell .bst-plan-card,
main.bible-shell .bst-tool-card,
main.bible-shell .bst-note-item,
main.bible-shell .bst-widget,
main.bible-shell .bst-cl-card,
main.bible-shell .ab-nav-card,
main.bible-shell .ab-queue-card,
main.bible-shell .ab-narrator-card,
main.bible-shell .ab-cl-card,
main.bible-shell .bt-compare-card,
main.bible-shell .bt-spectrum-card,
main.bible-shell .bt-trans-card,
main.bible-shell .bt-faq-card,
main.bible-shell .bt-cl-card {
    border: 1px solid rgba(114, 93, 60, 0.08);
    box-shadow: 0 18px 32px rgba(71, 52, 23, 0.06);
}

main.bible-shell .ab-player {
    box-shadow: 0 24px 52px rgba(29, 38, 56, 0.22);
}

main.bible-shell .br-hero-shell::before,
main.bible-shell .bst-hero::before,
main.bible-shell .bst-hero::after,
main.bible-shell .ab-hero::before,
main.bible-shell .ab-hero::after,
main.bible-shell .bt-hero::before,
main.bible-shell .bt-hero::after {
    animation: bibleFloat 18s ease-in-out infinite;
}

main.bible-shell .br-hero-shell::after {
    animation: bibleFloat 20s ease-in-out infinite reverse;
}

@keyframes bibleFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, 16px, 0) scale(1.04);
    }
}

@media (max-width: 960px) {
    .bible-banner__inner {
        grid-template-columns: 1fr;
        padding-bottom: 62px;
    }

    .bible-banner__visual {
        justify-content: flex-start;
    }

    .bible-module-strip__inner,
    .bible-feature-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .bible-banner__inner {
        padding: 22px 18px 56px;
        min-height: 240px;
    }

    .bible-banner__inner::after {
        inset: 14px 18px;
        border-radius: 24px;
    }

    .bible-banner__title {
        font-size: 1.95rem;
    }

    .bible-module-strip,
    .bible-feature-row {
        padding: 0 16px;
    }

    .bible-module-strip__inner,
    .bible-feature-row {
        grid-template-columns: 1fr;
    }

    main.bible-shell .br-hero {
        padding: 0;
    }

    main.bible-shell .br-hero-shell {
        padding: 24px 16px;
    }

    main.bible-shell .bst-hero,
    main.bible-shell .ab-hero,
    main.bible-shell .bt-hero {
        padding-top: 46px;
        padding-bottom: 48px;
    }
}
