/* index.css — splash + gallery page styles */

/* ══════════════════════════════════════════
   SPLASH — Editorial Split Hero (v2)
   ══════════════════════════════════════════ */

.splash {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    overflow-x: hidden;
}

.splash::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 25%, rgba(59,130,246,.06) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 75%, rgba(34,211,238,.04) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* ── Hero: 48/52 grid ── */
.splash-hero {
    display: grid;
    grid-template-columns: 48% 52%;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
}

/* ── Left column ── */
.splash-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5rem 5rem 5rem;
    position: relative;
    z-index: 2;
}

/* Vertical accent bar */
.splash-hero-bar {
    position: absolute;
    left: 0; top: 18%; bottom: 18%;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, var(--accent) 30%, var(--cyan) 70%, transparent 100%);
    border-radius: 2px;
    z-index: 3;
}

/* Text logo (replaces webp image) */
.hero-logo-text {
    font-family: 'Delius Swash Caps', cursive;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    color: var(--text-bright);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.6rem;
    line-height: 1.1;
    letter-spacing: .01em;
}

.splash-hero-eyebrow {
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.splash-hero-eyebrow::before {
    content: '';
    display: block;
    width: 22px; height: 1.5px;
    background: var(--accent);
    flex-shrink: 0;
}

.splash-hero-h1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -3px;
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.splash-hero-accent {
    display: block;
    background: linear-gradient(110deg, var(--accent) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-hero-desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.75;
    max-width: 430px;
    margin-bottom: 2.2rem;
}

.splash-hero-ctas {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.splash-hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.shs-item {
    padding-right: 1.8rem;
    margin-right: 1.8rem;
    border-right: 1px solid var(--border);
}

.shs-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.shs-val {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1;
    display: block;
}

.shs-label {
    font-size: .68rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .3rem;
    display: block;
}

/* Quick-links nav below hero stats */
.splash-quick-links {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.splash-quick-links a {
    font-size: .78rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .15s;
}

.splash-quick-links a:hover {
    color: var(--accent-light);
}

.splash-ql-dot {
    color: var(--border-light);
    font-size: .85rem;
    line-height: 1;
    user-select: none;
}

/* ── Right column: CSS grid image collage ── */
.splash-hero-right {
    position: relative;
    overflow: hidden;
}

/* Fade edges into bg */
.splash-hero-right::before {
    content: '';
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
        linear-gradient(to right, var(--bg-deep) 0%, transparent 18%),
        linear-gradient(to bottom, var(--bg-deep) 0%, transparent 12%),
        linear-gradient(to top, var(--bg-deep) 0%, transparent 14%),
        linear-gradient(to left, var(--bg-deep) 0%, transparent 8%);
}

.img-grid {
    position: absolute;
    inset: -20px -10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    padding: 20px 10px 20px 30px;
}

.img-cell {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.7);
    border: 1.5px solid rgba(255,255,255,.04);
    display: block;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s;
    background: var(--bg-surface);
}

.img-cell:hover { z-index: 5; box-shadow: 0 20px 60px rgba(0,0,0,.8); }
.img-cell:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.img-cell:nth-child(1) { transform: rotate(-2deg) translateY(8px); }
.img-cell:nth-child(2) { transform: rotate(2.5deg) translateY(-4px); }
.img-cell:nth-child(3) { transform: rotate(1.5deg) translateY(12px); }
.img-cell:nth-child(4) { transform: rotate(-3deg) translateY(-8px); }
.img-cell:nth-child(5) { transform: rotate(2deg) translateY(6px); }
.img-cell:nth-child(6) { transform: rotate(-1.5deg) translateY(-2px); }

.img-cell img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Daily puzzle card ── */
.splash-daily-card {
    position: absolute;
    bottom: 2.5rem; right: 2.5rem;
    z-index: 10;
    background: rgba(6,10,18,.88);
    border: 1px solid rgba(59,130,246,.22);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 210px;
}

.splash-daily-label {
    display: flex; align-items: center; gap: .5rem;
    font-family: var(--font-mono);
    font-size: .65rem; letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}

.splash-daily-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 7px var(--gold);
    flex-shrink: 0;
}

.splash-daily-date {
    font-size: .75rem;
    color: var(--text-dim);
    margin-bottom: .4rem;
}

.splash-daily-link {
    font-size: .88rem; font-weight: 700;
    color: var(--accent-light);
    display: flex; align-items: center; gap: .35rem;
    text-decoration: none;
    transition: gap .2s;
}

.splash-daily-link:hover { gap: .6rem; }
.splash-daily-link:focus-visible { outline: 2px solid var(--accent); border-radius: 4px; }

/* ══════════════════════════════════════════
   LANGUAGE BAR
   ══════════════════════════════════════════ */
.lang-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .85rem 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.lang-bar-label {
    font-family: var(--font-mono);
    font-size: .65rem; letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
    white-space: nowrap;
}

.lang-bar-list {
    display: flex; gap: .4rem; flex-wrap: wrap;
    align-items: center;
}

.lang-pill {
    font-size: .78rem;
    color: var(--text-dim);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: .22rem .65rem;
    text-decoration: none;
    transition: border-color .15s, color .15s;
    white-space: nowrap;
}

.lang-pill:hover { border-color: var(--accent); color: var(--accent-light); }
.lang-pill:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.lang-pill-active { border-color: rgba(59,130,246,.4); color: var(--accent-light); background: rgba(59,130,246,.05); }

.lang-pill.lang-pill-extra { display: none; }

.lang-bar-more {
    font-size: .78rem;
    color: var(--accent-light);
    font-family: var(--font-mono);
    white-space: nowrap;
    align-self: center;
    background: none;
    border: 1px solid var(--border-accent);
    border-radius: 6px;
    padding: .22rem .65rem;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
}

.lang-bar-more:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--text-bright);
}

/* ══════════════════════════════════════════
   SECTION SHARED
   ══════════════════════════════════════════ */
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: .7rem;
}

.section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1.4rem;
    letter-spacing: -.5px;
}

/* ══════════════════════════════════════════
   PREVIEW STRIP
   ══════════════════════════════════════════ */
.preview-section {
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.preview-strip {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    padding: .25rem .25rem 1rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.1) transparent;
}

.preview-strip::-webkit-scrollbar { height: 4px; }
.preview-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 2px; }

.preview-card {
    flex: 0 0 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(0,0,0,.45);
    display: block;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.04);
    transition: transform .2s, box-shadow .2s;
}

.preview-card:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 12px 36px rgba(0,0,0,.6); }
.preview-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.preview-card img {
    width: 180px; height: 130px;
    object-fit: cover; display: block;
}

.preview-more {
    flex: 0 0 180px;
    height: 130px;
    border-radius: 10px;
    background: var(--bg-surface);
    border: 1.5px dashed var(--border);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: .4rem;
    text-decoration: none;
    color: var(--accent-light);
    font-size: .88rem; font-weight: 600;
    transition: background .2s, border-color .2s;
}

.preview-more:hover { background: rgba(59,130,246,.06); border-color: rgba(59,130,246,.4); }

/* ══════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════ */
.features-section {
    padding: 2rem 0 3rem;
    position: relative;
    z-index: 1;
}

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

.feat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    transition: border-color .2s, box-shadow .2s;
}

.feat-card:hover {
    border-color: rgba(59,130,246,.25);
    box-shadow: 0 4px 24px rgba(59,130,246,.08);
}

.feat-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(59,130,246,.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--accent-light);
}

.feat-card h3 {
    font-size: 1rem; font-weight: 700;
    color: var(--text-bright);
    margin-bottom: .5rem;
}

.feat-card p {
    font-size: .88rem;
    color: var(--text-dim);
    line-height: 1.7;
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about-section {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.about-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.about-inner h2 {
    font-size: 1.35rem; font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1rem;
}

.about-inner p {
    font-size: .95rem;
    color: var(--text-dim);
    line-height: 1.85;
}

.about-inner p + p { margin-top: .75rem; }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
.faq-section {
    padding: 2.5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.faq-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 3rem;
}

.faq-inner > h2 {
    font-size: 1.35rem; font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1.2rem;
    text-align: center;
}

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .2s;
}

.faq-item:hover { border-color: rgba(59,130,246,.25); }
.faq-item:focus-within { border-color: var(--accent); }

.faq-btn {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
    padding: .9rem 1.1rem;
    color: var(--text-bright);
    font-family: var(--font-display); font-weight: 600; font-size: .95rem;
    text-align: left;
}

.faq-arrow {
    color: var(--text-dim);
    font-size: .8rem;
    flex-shrink: 0;
    transition: transform .25s;
}

.faq-item.open .faq-arrow { transform: rotate(90deg); }

.faq-body {
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s;
    padding: 0 1.1rem;
    color: var(--text-dim);
    font-size: .9rem; line-height: 1.75;
}

.faq-item.open .faq-body {
    max-height: 300px;
    padding: 0 1.1rem .9rem;
}

/* ══════════════════════════════════════════
   FOOTER CTA
   ══════════════════════════════════════════ */
.footer-cta-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-cta-title {
    font-size: 1.5rem; font-weight: 800;
    color: var(--text-bright);
    margin-bottom: .5rem;
}

.footer-cta-sub {
    font-size: .95rem;
    color: var(--text-dim);
    margin-bottom: 1.8rem;
}

.footer-cta-btns {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap; margin-bottom: 2rem;
}

.footer-cta-nav {
    display: flex; gap: .5rem 1.2rem;
    flex-wrap: wrap; justify-content: center;
}

.footer-cta-nav a {
    font-size: .82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .15s;
}

.footer-cta-nav a:hover { color: var(--text-dim); }
.footer-cta-sep { color: var(--border); }

/* ══════════════════════════════════════════
   DECORATIVE PUZZLE OUTLINES
   ══════════════════════════════════════════ */
.splash-deco-wrap {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.deco-lane {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    pointer-events: none;
    z-index: 0;
}

.deco-lane-left { left: 0; }
.deco-lane-right { right: 0; }

@keyframes decoFloat {
    0%, 100% { transform: translateY(0) rotate(var(--deco-rot, 0deg)); }
    50% { transform: translateY(-12px) rotate(var(--deco-rot, 0deg)); }
}

@keyframes decoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 1199px) {
    .deco-lane { display: none; }
}

/* ══════════════════════════════════════════
   SPLASH EVENT GRID
   ══════════════════════════════════════════ */
.splash-event-section {
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

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

.splash-event-card {
    display: block;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: transform .25s, border-color .25s, box-shadow .25s;
}

.splash-event-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 8px 28px rgba(0,0,0,.4);
}

.splash-event-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.splash-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.splash-event-card:hover .splash-event-img img {
    transform: scale(1.05);
}

.splash-event-name {
    display: block;
    padding: .6rem .85rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-bright);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.splash-event-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .splash-hero { grid-template-columns: 52% 48%; }
    .splash-hero-left { padding: 4rem 3.5rem 4rem 4rem; }
}

@media (max-width: 768px) {
    .splash-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .splash-hero-right {
        height: 320px;
        order: -1;
    }
    .splash-hero-right::before {
        background:
            linear-gradient(to bottom, var(--bg-deep) 0%, transparent 25%),
            linear-gradient(to top, var(--bg-deep) 0%, transparent 25%);
    }
    .splash-hero-left { padding: 2.5rem 1.5rem 3rem; }
    .splash-hero-bar { display: none; }
    .splash-hero-h1 { font-size: 3rem; letter-spacing: -2px; }
    .img-grid {
        grid-template-columns: repeat(3,1fr);
        grid-template-rows: repeat(2,1fr);
    }
    .splash-daily-card { display: none; }
    .splash-hero-ctas { flex-direction: column; align-items: flex-start; }
    .lang-bar { padding: .75rem 1.5rem; gap: .75rem; }
    .section-inner { padding: 0 1.5rem; }
    .features-grid { grid-template-columns: 1fr; }
    .about-inner, .faq-inner { padding: 0 1.5rem; }
    .splash-hero-stats { gap: 0; }
    .shs-item { padding-right: 1.25rem; margin-right: 1.25rem; }
    .splash-event-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .splash-hero-left { padding: 2rem 1.2rem 1.5rem; }
    .splash-hero-h1 { font-size: 2.6rem; letter-spacing: -1.5px; }
    .splash-hero-desc { font-size: 1rem; }
    .splash-hero-ctas { flex-direction: column; align-items: center; }
    .splash-hero-stats { flex-wrap: wrap; gap: .8rem; }
    .shs-item { border-right: none; padding-right: 0; margin-right: 0; text-align: center; }
    .img-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,1fr); }
    .lang-bar { padding: .6rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    .img-cell, .faq-arrow, .faq-body, .preview-card, .lang-pill,
    .splash-daily-link { transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════
   GALLERY PAGE
   ══════════════════════════════════════════ */
.gallery-page .gallery-main {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 1.5rem 4rem;
    position: relative;
}

.pack-section {
    margin-bottom: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-lg);
}

.pack-section:nth-child(even) { background: rgba(59, 130, 246, .03); }
.pack-section:nth-child(odd)  { background: transparent; }

.pack-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .8rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    user-select: none;
}

.pack-title {
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--text-bright);
}

.pack-badge {
    font-size: .7rem;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-weight: 600;
}

.pack-badge-free    { background: rgba(34, 197, 94, .15);  color: #22c55e; }
.pack-badge-locked  { background: rgba(100, 116, 139, .15); color: var(--text-dim); }
.pack-badge-special { background: rgba(168, 85, 247, .15);  color: #a855f7; }

.pack-body { padding-top: .5rem; }
.pack-body .gallery-grid { margin-top: .8rem; }

.star-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    padding: .1rem .4rem;
    line-height: 1;
    transition: all .2s;
    color: var(--text-dim);
}

.star-btn.active { border-color: rgba(234, 179, 8, .4); background: rgba(234, 179, 8, .1); color: #eab308; }
.star-btn:hover  { border-color: rgba(234, 179, 8, .5); background: rgba(234, 179, 8, .08); transform: scale(1.1); }

.user-nav { display: flex; align-items: center; gap: .6rem; margin-left: auto; }
.user-nav a { color: var(--text-dim); text-decoration: none; font-size: .85rem; transition: color .2s; }
.user-nav a:hover { color: var(--text); }

.user-avatar-sm {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--bg-active);
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem;
    color: var(--accent-light);
    border: 1px solid var(--border-accent);
    overflow: hidden;
}

.user-avatar-sm img { width: 100%; height: 100%; object-fit: cover; }

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

.filter-cb {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .88rem;
    color: var(--text);
    cursor: pointer;
}

.filter-cb input { accent-color: var(--accent); width: 16px; height: 16px; }

.unlock-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: .3rem;
    position: relative;
}

.unlock-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s cubic-bezier(.25, .46, .45, .94);
    background: linear-gradient(90deg, #3b82f6, #22d3ee);
    position: relative;
    z-index: 2;
}

.unlock-threshold {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: rgba(234, 179, 8, .2);
    border-radius: 4px;
    border-right: 2px solid rgba(234, 179, 8, .6);
    z-index: 1;
}

.section-divider {
    color: var(--text-dim);
    font-size: .9rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* ══════════════════════════════════════════
   LIGHT THEME — SPLASH OVERRIDES
   ══════════════════════════════════════════ */
[data-theme="light"] .splash {
    background: linear-gradient(160deg, #f5f7fa 0%, #f0f3f7 55%, #f3f4f8 100%);
}

[data-theme="light"] .splash::before {
    background: radial-gradient(ellipse at 25% 25%, rgba(37,99,235,.03) 0%, transparent 55%),
                radial-gradient(ellipse at 75% 75%, rgba(8,145,178,.02) 0%, transparent 55%);
}

[data-theme="light"] .splash-hero-right::before {
    background:
        linear-gradient(to right, #f2f5f9 0%, transparent 18%),
        linear-gradient(to bottom, #f5f7fa 0%, transparent 12%),
        linear-gradient(to top, #f2f5f9 0%, transparent 14%),
        linear-gradient(to left, #f5f7fa 0%, transparent 8%);
}

[data-theme="light"] .splash-hero-h1 { color: #0f172a; }
[data-theme="light"] .section-eyebrow { color: #0f172a; }
[data-theme="light"] .splash-hero-eyebrow { color: #1e40af; }

[data-theme="light"] .splash-hero-accent {
    background: linear-gradient(110deg, #1d4ed8 0%, #0369a1 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] .img-cell {
    box-shadow: 0 16px 48px rgba(0,0,0,.15);
    border-color: rgba(0,0,0,.06);
}

[data-theme="light"] .img-cell:hover { box-shadow: 0 20px 60px rgba(0,0,0,.22); }

[data-theme="light"] .splash-daily-card {
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: rgba(37,99,235,.25);
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
}
[data-theme="light"] .splash-daily-label { color: #0f1d33; }
[data-theme="light"] .splash-daily-dot { background: #0f2847; box-shadow: 0 0 6px rgba(15,40,71,.5); }
[data-theme="light"] .splash-daily-date { color: #1e293b; }
[data-theme="light"] .splash-daily-link { color: #1d4ed8; }

[data-theme="light"] .gsi-btn {
    background: #fff !important;
    border-color: #dadce0 !important;
    color: #3c4043 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,.15) !important;
}

[data-theme="light"] .gsi-btn:hover { background: #f8f9fa !important; }
[data-theme="light"] .gsi-btn .gsi-logo { background: #fff !important; }

[data-theme="light"] .guest-btn {
    background: var(--bg-surface) !important;
    border-color: var(--border) !important;
    color: var(--text-bright) !important;
}

[data-theme="light"] .guest-btn:hover { background: rgba(37,99,235,.06) !important; }

[data-theme="light"] .guest-btn-wrap {
    animation: none !important;
    border-color: rgba(37,99,235,.35) !important;
    box-shadow: 0 0 12px rgba(37,99,235,.1) !important;
}

[data-theme="light"] .guest-btn-wrap:hover {
    border-color: rgba(37,99,235,.65) !important;
    box-shadow: 0 0 20px rgba(37,99,235,.22) !important;
}

[data-theme="light"] .gsi-btn-wrap {
    border-color: rgba(66,133,244,.35) !important;
    box-shadow: 0 0 12px rgba(66,133,244,.1) !important;
}

[data-theme="light"] .guest-icon { background: #e8edf5 !important; }
[data-theme="light"] .guest-icon svg { stroke: #334155 !important; }

[data-theme="light"] .lang-bar {
    background: rgba(255,255,255,.85);
    border-color: rgba(0,0,0,.06);
}

[data-theme="light"] .lang-pill-active {
    background: rgba(37,99,235,.08);
    border-color: rgba(37,99,235,.4);
}

[data-theme="light"] .feat-card {
    background: rgba(255,255,255,.9);
    border-color: rgba(99,102,241,.15);
}

[data-theme="light"] .feat-icon { background: rgba(37,99,235,.08); }

[data-theme="light"] .faq-item { background: rgba(255,255,255,.85); }

[data-theme="light"] .preview-card {
    box-shadow: 0 6px 22px rgba(0,0,0,.1);
    border-color: rgba(0,0,0,.06);
}

[data-theme="light"] .preview-more {
    background: rgba(255,255,255,.85);
    border-color: rgba(37,99,235,.25);
}

[data-theme="light"] .preview-strip::-webkit-scrollbar-thumb { background: rgba(0,0,0,.15); }

[data-theme="light"] .footer-cta-section { background: rgba(255,255,255,.5); }

[data-theme="light"] .gallery-tab:hover {
    background: var(--bg-hover) !important;
    color: var(--text-bright);
    animation: none;
}

[data-theme="light"] .gallery-tab.active:hover {
    background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(34,211,238,.1)) !important;
    color: var(--accent-dim) !important;
    animation: none;
}

[data-theme="light"] .splash-quick-links a { color: #475569; }
[data-theme="light"] .splash-quick-links a:hover { color: #1d4ed8; }
[data-theme="light"] .splash-ql-dot { color: #94a3b8; }

[data-theme="light"] .splash-event-card {
    background: #fff;
    border-color: var(--border);
}
[data-theme="light"] .splash-event-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.12);
}
