/* =============================================================
   STAGENATION — home.css (RAPIH — reorganisasi & bugfix)
   Di-load di: front-page, ranking, membership, tentang,
   profil-peserta, dan halaman WooCommerce (lihat enqueue.php)

   Perubahan di revisi ini:
   - BUGFIX: ".sn-filter-box" sebelumnya tertulis "..sn-filter-box"
     (titik dobel = selector invalid, gak match apapun). Diperbaiki.
   - Semua CSS terkait filter box (search row, stat value, dst) yang
     sebelumnya kececer di banyak tempat terpisah, sekarang digabung
     jadi satu section utuh (§17).
   - Semua CSS terkait CTA banner digabung jadi satu section utuh (§19).
   - Nomor section dirapikan urut 0 → 23, gak ada lagi lompat/dobel.
   - Tidak ada rule yang dihapus — murni reorganisasi + 1 bugfix.
   ============================================================= */


/* =============================================================
   0. GLOBAL MOBILE FIX — cegah horizontal scroll
   ============================================================= */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

*, *::before, *::after {
    box-sizing: border-box;
}

section {
    overflow-x: hidden;
    max-width: 100vw;
}

.sn-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}


/* =============================================================
   0b. RADIUS SCALE (dipakai konsisten di seluruh file)
   ---------------------------------------------------------------
   --sn-r-pill : 999px  -> badge, tag, pill
   --sn-r-sm   : 8px    -> tombol, input
   --sn-r-md   : 10px   -> card kecil (points, step, tag card)
   --sn-r-lg   : 14px   -> card besar (winner, level, form wrap)
   ============================================================= */
:root {
    --sn-r-pill: 999px;
    --sn-r-sm: 8px;
    --sn-r-md: 10px;
    --sn-r-lg: 14px;

    --sn-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.25);
    --sn-shadow-card-hover: 0 8px 28px rgba(168, 85, 247, 0.22);
    --sn-shadow-btn-hover: 0 6px 18px rgba(168, 85, 247, 0.35);
}


/* =============================================================
   1. HERO SECTION
   ============================================================= */
.sn-hero {
    background: #0a0118;
    overflow: hidden;
}

.sn-hero-media-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.sn-hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.sn-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(10, 1, 24, 0.92) 0%,
        rgba(10, 1, 24, 0.65) 40%,
        rgba(10, 1, 24, 0.25) 70%,
        rgba(10, 1, 24, 0.05) 100%
    );
}

.sn-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    max-width: 720px;
    color: #fff;
    line-height: normal;
}

.sn-hero-title {
    font-size: 58px;
    line-height: 1.15;
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sn-hero-desc {
    color: #d8d2e8;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .sn-hero-media-wrap {
        display: flex;
        flex-direction: column;
    }
    .sn-hero-overlay {
        display: none;
    }
    .sn-hero-content {
        position: static;
        max-width: 100%;
        padding: 28px 20px;
        background: #0a0118;
        text-align: center;
        align-items: center;
    }
    .sn-hero-title {
        font-size: 30px;
    }
    .sn-hero-desc {
        font-size: 14px;
    }
}


/* =============================================================
   2. SHARED TEXT UTILITIES
   ============================================================= */
.sn-eyebrow {
    color: #e879f9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sn-eyebrow-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #e879f9;
}

.sn-eyebrow-center {
    text-align: center;
    justify-content: center;
}

.sn-title-center {
    text-align: center;
    margin-top: 10px;
}

.sn-title-sm {
    font-size: 26px;
    margin-top: 8px;
}

.sn-subtitle-center {
    text-align: center;
    color: #a89fc2;
    max-width: 600px;
    margin: 12px auto 40px;
}

.sn-white  { color: #f5f3fa; }
.sn-yellow { color: #facc15; }
.sn-gradient {
    background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sn-tag {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.07);
    color: #a89fc2;
    padding: 3px 10px;
    border-radius: var(--sn-r-pill);
}

.sn-btn-outline {
    display: inline-block;
    border: 1px solid #a855f7;
    color: #e9d5ff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--sn-r-sm);
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sn-btn-outline:hover {
    background: rgba(168, 85, 247, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--sn-shadow-btn-hover);
}


/* =============================================================
   3. WINNERS SECTION
   ============================================================= */
.sn-winners {
    background: #0a0118;
    padding: 70px 20px;
}

.sn-winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.sn-winner-card {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    overflow: hidden;
    box-shadow: var(--sn-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sn-winner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sn-shadow-card-hover);
    border-color: #a855f7;
}

.sn-winner-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.sn-winner-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sn-winner-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a1e46, #1a1030);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-winner-photo-placeholder::after {
    content: "★";
    font-size: 40px;
    color: rgba(255, 255, 255, 0.15);
}

.sn-rank-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: var(--sn-r-sm);
    color: #1a1030;
}

.sn-rank-gold   { background: #facc15; }
.sn-rank-silver { background: #93c5fd; }
.sn-rank-bronze { background: #d8a15c; }

.sn-winner-info {
    padding: 14px 16px;
}

.sn-winner-name {
    font-size: 16px;
    margin: 0 0 4px;
    color: #f5f3fa;
}

.sn-winner-meta {
    color: #c084fc;
    font-size: 13px;
    margin: 0 0 4px;
}

.sn-winner-city {
    color: #a89fc2;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 480px) {
    .sn-winners-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =============================================================
   4. HOME EVENTS PREVIEW
   ============================================================= */
.sn-home-events {
    background: #0a0118;
    padding: 70px 20px;
}

.sn-home-events .sn-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.sn-see-all-wrap {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 480px) {
    .sn-home-events .sn-event-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================================
   5. RANKING / LEADERBOARD (list hasil — bukan filter box)
   CATATAN: .sn-filter-tabs-center, .sn-tab-disabled, dan
   .sn-filter-dropdown di bawah ini kemungkinan sudah TIDAK DIPAKAI
   lagi sejak template-parts/ranking.php direvisi ke versi filter
   box baru (§17) yang pakai select biasa, bukan tab. Dibiarkan
   (harmless) kalau-kalau masih dipanggil di tempat lain — aman
   dihapus belakangan kalau sudah dipastikan gak ada yang pakai.
   ============================================================= */
.sn-ranking {
    background: #0a0118;
    padding: 70px 20px;
}

.sn-filter-tabs-center {
    justify-content: center;
    margin: 30px 0 40px;
    flex-wrap: wrap;
    gap: 8px;
}

.sn-tab-disabled {
    background: #140a26;
    color: #5c5470;
    padding: 10px 20px;
    border-radius: var(--sn-r-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: not-allowed;
}

.sn-filter-dropdown {
    max-width: 320px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
}

.sn-filter-dropdown::after {
    content: "▼";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #c084fc;
    font-size: 11px;
    pointer-events: none;
}

.sn-filter-dropdown select {
    width: 100%;
    padding: 14px 40px 14px 18px;
    border-radius: var(--sn-r-md);
    border: 1px solid #2a1e46;
    background: #140a26;
    color: #f5f3fa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-filter-dropdown select:hover  { border-color: #a855f7; }
.sn-filter-dropdown select:focus  {
    outline: none;
    border-color: #c084fc;
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.15);
}

.sn-filter-dropdown select option {
    background: #140a26;
    color: #f5f3fa;
}

@media (max-width: 640px) {
    .sn-filter-dropdown {
        max-width: 100%;
        padding: 0;
    }
}

.sn-leaderboard-list {
    max-width: 900px;
    margin: 0 auto;
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    overflow: hidden;
    box-shadow: var(--sn-shadow-card);
}

.sn-rank-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #241640;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.sn-rank-row:last-child { border-bottom: none; }

.sn-rank-row:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(4px);
}

.sn-rank-position {
    width: 32px;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    color: #a89fc2;
    flex-shrink: 0;
}

.sn-rank-avatar a {
    display: block;
    border-radius: 50%;
    overflow: hidden;
    transition: opacity 0.2s;
}

.sn-rank-avatar a:hover { opacity: 0.8; }

.sn-rank-avatar img {
    border-radius: 50%;
    display: block;
}

.sn-rank-info { flex: 1; min-width: 0; }

.sn-rank-name-link {
    text-decoration: none;
    color: inherit;
}

.sn-rank-name-link:hover .sn-rank-name {
    color: #c084fc;
    text-decoration: underline;
}

.sn-rank-name {
    color: #f5f3fa;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sn-rank-city {
    color: #a89fc2;
    font-size: 12px;
    margin-top: 2px;
}

.sn-rank-points {
    text-align: right;
    margin-right: 8px;
    flex-shrink: 0;
}

.sn-rank-points-num {
    color: #c084fc;
    font-weight: 800;
    font-size: 18px;
}

.sn-rank-points-label {
    color: #6b6280;
    font-size: 10px;
    letter-spacing: 1px;
}

.sn-rank-badge-level {
    background: #2a1e46;
    color: #facc15;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: var(--sn-r-sm);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .sn-rank-row { flex-wrap: wrap; }
    .sn-rank-badge-level {
        order: 10;
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
    .sn-rank-points { margin-right: 0; }
}


/* =============================================================
   6. MEMBERSHIP SECTION
   ============================================================= */
.sn-membership {
    background: #0a0118;
    padding: 70px 20px;
}

.sn-points-box {
    max-width: 900px;
    margin: 40px auto 0;
    background: #140a26;
    border: 1px solid #2a1e46;
    border-radius: var(--sn-r-lg);
    padding: 28px;
    box-shadow: var(--sn-shadow-card);
}

.sn-points-box-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.sn-points-icon      { font-size: 22px; }

.sn-points-box-title {
    color: #f5f3fa;
    font-weight: 700;
    font-size: 17px;
}

.sn-points-box-desc {
    color: #a89fc2;
    font-size: 13px;
    margin-top: 4px;
}

.sn-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.sn-points-card {
    background: #0f0820;
    border: 1px solid #241640;
    border-radius: var(--sn-r-md);
    padding: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sn-points-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sn-shadow-card-hover);
    border-color: #a855f7;
}

.sn-points-card-icon {
    font-size: 22px;
    display: block;
    margin-bottom: 8px;
}

.sn-points-card-title {
    color: #f5f3fa;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.sn-points-card-desc {
    color: #a89fc2;
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.sn-points-card-amount {
    color: #facc15;
    font-weight: 700;
    font-size: 13px;
}

.sn-levels-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 14px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.sn-level-card {
    position: relative;
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--sn-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sn-level-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sn-shadow-card-hover);
    border-color: #a855f7;
}

.sn-level-current {
    border-color: #c084fc;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.15), rgba(20, 10, 38, 1));
}

.sn-level-you {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 3px 10px;
    border-radius: var(--sn-r-pill);
    white-space: nowrap;
}

.sn-level-title {
    color: #f5f3fa;
    font-weight: 700;
    font-size: 14px;
    margin-top: 6px;
}

.sn-level-range {
    color: #a89fc2;
    font-size: 11px;
    margin-top: 4px;
}


/* =============================================================
   7. PROFIL PUBLIK PESERTA (profile-public-*)
   ============================================================= */
.profile-public-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: #fff;
}

.profile-public-header {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--sn-shadow-card);
}

.profile-public-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #c084fc;
    flex-shrink: 0;
}

.profile-public-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #f5f3fa;
}

.profile-public-level {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #c084fc);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: var(--sn-r-pill);
    margin-bottom: 12px;
}

.profile-public-points {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
}

.profile-public-points-num {
    font-size: 2rem;
    font-weight: 800;
    color: #c084fc;
}

.profile-public-points-label {
    font-size: 0.75rem;
    color: #a89fc2;
    letter-spacing: 0.1em;
}

.profile-public-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.profile-public-stat-box {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-md);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--sn-shadow-card);
}

.profile-public-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #facc15;
    margin-bottom: 4px;
}

.profile-public-stat-label {
    font-size: 0.72rem;
    color: #a89fc2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-public-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2d9f3;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #241640;
}

.profile-public-prestasi-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.profile-public-prestasi-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-md);
    padding: 18px 20px;
    transition: background 0.2s, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--sn-shadow-card);
}

.profile-public-prestasi-card:hover {
    background: #1a1030;
    border-color: #a855f7;
}

.profile-public-prestasi-rank {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--sn-r-pill);
    white-space: nowrap;
    flex-shrink: 0;
}

.profile-public-badge-gold   { background: linear-gradient(135deg, #b7791f, #f6e05e); color: #1a1200; }
.profile-public-badge-silver { background: linear-gradient(135deg, #718096, #cbd5e0); color: #1a1a1a; }
.profile-public-badge-bronze { background: linear-gradient(135deg, #9c4221, #ed8936); color: #fff; }
.profile-public-badge-default {
    background: rgba(192, 132, 252, 0.2);
    color: #c084fc;
    border: 1px solid #c084fc;
}

.profile-public-prestasi-info  { flex: 1; min-width: 0; }

.profile-public-prestasi-event {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f5f3fa;
    margin-bottom: 6px;
}

.profile-public-prestasi-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profile-public-tag {
    font-size: 0.72rem;
    background: #0f0820;
    border: 1px solid #241640;
    color: #a89fc2;
    padding: 3px 10px;
    border-radius: var(--sn-r-pill);
}

.profile-public-cert-btn {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c084fc;
    border: 1px solid #c084fc;
    padding: 6px 14px;
    border-radius: var(--sn-r-pill);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.profile-public-cert-btn:hover {
    background: #c084fc;
    color: #0d0d1a;
}

.profile-public-empty {
    text-align: center;
    color: #a89fc2;
    padding: 40px 0;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .profile-public-header {
        flex-direction: column;
        text-align: center;
    }
    .profile-public-points    { justify-content: center; }
    .profile-public-prestasi-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-public-cert-btn  { align-self: flex-start; }
}


/* =============================================================
   8. ABOUT SECTION
   ============================================================= */
.sn-about {
    background: #0a0118;
    padding: 70px 20px;
}

.sn-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sn-about-media { position: relative; }

.sn-about-img {
    width: 100%;
    border-radius: var(--sn-r-lg);
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--sn-shadow-card);
}

.sn-about-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(10, 1, 24, 0.85);
    color: #facc15;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: var(--sn-r-sm);
}

.sn-about-content .sn-eyebrow { justify-content: flex-start; }
.sn-about-content .sn-title   { text-align: left; margin-top: 10px; }

.sn-about-text {
    color: #d8d2e8;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 16px;
}

.sn-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px;
}

.sn-stat-box {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-md);
    padding: 16px 20px;
    box-shadow: var(--sn-shadow-card);
}

.sn-stat-num {
    color: #facc15;
    font-weight: 800;
    font-size: 22px;
}

.sn-stat-label {
    color: #a89fc2;
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 4px;
}

@media (max-width: 800px) {
    .sn-about-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   9. ABOUT — VISI & MISI
   ============================================================= */
.sn-visi-misi {
    background: #0a0118;
    padding: 70px 20px;
}

.sn-vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.sn-vm-card {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    padding: 28px 24px;
    box-shadow: var(--sn-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sn-vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sn-shadow-card-hover);
    border-color: #a855f7;
}

.sn-vm-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.sn-vm-title {
    color: #f5f3fa;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.sn-vm-text {
    color: #d8d2e8;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.sn-vm-list {
    color: #d8d2e8;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 18px;
    margin: 0;
}

.sn-vm-list li { margin-bottom: 6px; }

@media (max-width: 600px) {
    .sn-vm-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   10. ABOUT — KENAPA STAGENATION
   ============================================================= */
.sn-why {
    background: #080114;
    padding: 70px 20px;
}

.sn-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sn-why-card {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-md);
    padding: 24px 20px;
    box-shadow: var(--sn-shadow-card);
    transition: border-color 0.2s, transform 0.25s ease, box-shadow 0.25s ease;
}

.sn-why-card:hover {
    border-color: #a855f7;
    transform: translateY(-4px);
    box-shadow: var(--sn-shadow-card-hover);
}

.sn-why-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 12px;
}

.sn-why-title {
    color: #f5f3fa;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sn-why-desc {
    color: #a89fc2;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 480px) {
    .sn-why-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   11. ABOUT — KONTAK
   ============================================================= */
.sn-kontak {
    background: #0a0118;
    padding: 70px 20px 100px;
}

.sn-kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.sn-kontak-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sn-kontak-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sn-kontak-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.sn-kontak-label {
    color: #a89fc2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sn-kontak-value {
    color: #f5f3fa;
    font-size: 14px;
}

.sn-kontak-wa {
    color: #c084fc;
    text-decoration: none;
}

.sn-kontak-wa:hover { text-decoration: underline; }

.sn-wa-btn {
    display: inline-block;
    background: linear-gradient(90deg, #25d366, #128c7e);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: var(--sn-r-sm);
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 8px;
    width: 100%;
}

.sn-wa-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.sn-kontak-form-wrap {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    padding: 32px;
    box-shadow: var(--sn-shadow-card);
}

.sn-form-group { margin-bottom: 20px; }

.sn-form-label {
    display: block;
    color: #d8d2e8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sn-form-input {
    width: 100%;
    background: #0f0820;
    border: 1px solid #2a1e46;
    border-radius: var(--sn-r-sm);
    color: #f5f3fa;
    font-size: 14px;
    padding: 12px 16px;
    box-sizing: border-box;
    transition: border-color 0.2s;
    font-family: inherit;
}

.sn-form-input:focus {
    outline: none;
    border-color: #a855f7;
}

.sn-form-input::placeholder { color: #5c5470; }

.sn-form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Custom Select */
.sn-custom-select {
    position: relative;
    width: 100%;
}

.sn-select-selected {
    background: #0f0820;
    border: 1px solid #2a1e46;
    border-radius: var(--sn-r-sm);
    color: #5c5470;
    font-size: 14px;
    padding: 12px 16px;
    cursor: pointer;
    transition: border-color 0.2s;
    user-select: none;
}

.sn-select-selected.active,
.sn-select-selected:hover {
    border-color: #a855f7;
    color: #f5f3fa;
}

.sn-select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background: #140a26;
    border: 1px solid #2a1e46;
    border-radius: var(--sn-r-sm);
    margin-top: 4px;
    overflow: hidden;
    box-shadow: var(--sn-shadow-card);
}

.sn-select-items div {
    color: #d8d2e8;
    font-size: 14px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s;
}

.sn-select-items div:hover {
    background: #2a1e46;
    color: #f5f3fa;
}

.sn-select-hide { display: none; }

.sn-form-submit {
    width: 100%;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    border: none;
    border-radius: var(--sn-r-sm);
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.sn-form-submit:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--sn-shadow-btn-hover);
}

.sn-form-note {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 768px) {
    .sn-kontak-grid { grid-template-columns: 1fr; }
    .sn-kontak-form-wrap { padding: 20px; }
}


/* =============================================================
   12. SEARCH PESERTA (dipakai halaman legal/FAQ & referensi umum)
   ============================================================= */
.sn-search-box {
    max-width: 500px;
    margin: 30px auto 20px;
    display: flex;
    gap: 10px;
}

.sn-search-input {
    flex: 1;
    padding: 14px 18px;
    border-radius: var(--sn-r-md);
    border: 1px solid #2a1e46;
    background: #140a26;
    color: #f5f3fa;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sn-search-input::placeholder {
    color: #6b6280;
}

.sn-search-input:focus {
    outline: none;
    border-color: #c084fc;
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.15);
}

.sn-search-btn {
    padding: 14px 28px;
    border-radius: var(--sn-r-md);
    border: none;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sn-search-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--sn-shadow-btn-hover);
}

.sn-search-back-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.sn-search-back {
    color: #c084fc;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.sn-search-back:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    .sn-search-box {
        flex-direction: column;
        padding: 0 20px;
    }
}


/* =============================================================
   13. DROPDOWN FILTER PER EVENT (variant warna, dipakai beberapa
   tempat lama — dibiarkan untuk kompatibilitas)
   ============================================================= */
.sn-filter-dropdown-event {
    max-width: 320px;
    margin: 0 auto 30px;
}

.sn-filter-dropdown-event select {
    border-color: #ec4899;
}

.sn-filter-dropdown-event select:hover {
    border-color: #f97316;
}


/* =============================================================
   14. STATS BAR (angka pencapaian, dipakai di beberapa halaman)
   ============================================================= */
.sn-stats-bar {
    background: linear-gradient(90deg, rgba(168,85,247,0.12), rgba(236,72,153,0.12));
    border-top: 1px solid #241640;
    border-bottom: 1px solid #241640;
    padding: 36px 20px;
}

.sn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sn-stat-item {
    text-align: center;
}

.sn-stat-item-num {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sn-stat-item-label {
    color: #a89fc2;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

@media (max-width: 640px) {
    .sn-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .sn-stat-item-num {
        font-size: 26px;
    }
}


/* =============================================================
   15. CARA KERJA POIN (How It Works)
   ============================================================= */
.sn-how-it-works {
    background: #0a0118;
    padding: 70px 20px;
}

.sn-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.sn-step-card {
    position: relative;
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-md);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--sn-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sn-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sn-shadow-card-hover);
    border-color: #a855f7;
}

.sn-step-num {
    position: absolute;
    top: 12px;
    left: 14px;
    color: #3a2e5c;
    font-size: 13px;
    font-weight: 800;
}

.sn-step-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.sn-step-title {
    color: #f5f3fa;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
}

.sn-step-desc {
    color: #a89fc2;
    font-size: 13px;
    line-height: 1.6;
}


/* =============================================================
   16. RESKIN WOOCOMMERCE
   ============================================================= */
.woocommerce,
.woocommerce-page {
    background: #0a0118;
    color: #d8d2e8;
    padding: 40px 20px;
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce-page h1,
.woocommerce-page h2 {
    color: #f5f3fa;
}

.woocommerce ul.products li.product {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    padding: 16px;
    box-shadow: var(--sn-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: var(--sn-shadow-card-hover);
    border-color: #a855f7;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
    color: #f5f3fa;
}

.woocommerce ul.products li.product .price {
    color: #facc15;
    font-weight: 700;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    border: none;
    border-radius: var(--sn-r-sm);
    font-weight: 700;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--sn-shadow-btn-hover);
}

.woocommerce table.shop_table,
.woocommerce-cart table.cart {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-md);
    color: #d8d2e8;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: #241640;
    color: #d8d2e8;
}

.woocommerce-cart-form .product-name a { color: #f5f3fa; }

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout .woocommerce-checkout-review-order {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    padding: 20px;
    box-shadow: var(--sn-shadow-card);
}

.woocommerce .cart_totals h2,
.woocommerce .cart_totals .amount { color: #facc15; }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: #0f0820;
    border: 1px solid #2a1e46;
    color: #f5f3fa;
    border-radius: var(--sn-r-sm);
}

.woocommerce form .form-row label { color: #d8d2e8; }

.woocommerce .cross-sells,
.woocommerce .related.products { background: transparent; }

.woocommerce .cross-sells h2,
.woocommerce .related.products h2 { color: #f5f3fa; }

.woocommerce ul.products li.product img,
.woocommerce-cart .product-thumbnail img {
    background: #1a1030;
    border-radius: var(--sn-r-sm);
}

.woocommerce .quantity input.qty {
    background: #0f0820;
    border: 1px solid #2a1e46;
    color: #f5f3fa;
}

.woocommerce a { color: #c084fc; }

.post-type-archive-product .page-header,
.post-type-archive-product h1.entry-title,
.post-type-archive-product .woocommerce-products-header__title {
    display: none;
}

.sn-shop-hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.sn-shop-hero .sn-subtitle {
    color: #a89fc2;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.woocommerce-result-count {
    color: #a89fc2;
    font-size: 13px;
}

.woocommerce-ordering select {
    background: #140a26;
    border: 1px solid #241640;
    color: #f5f3fa;
    border-radius: var(--sn-r-sm);
    padding: 8px 14px;
}

.woocommerce .woocommerce-ordering,
.woocommerce-result-count {
    margin-bottom: 30px;
}


/* =============================================================
   17. FILTER BOX (dipakai di Ranking & Semua Juara)
   ---------------------------------------------------------------
   Semua CSS terkait filter box digabung di sini — sebelumnya
   kececer di banyak tempat terpisah. BUGFIX: selector ".sn-filter-box"
   sebelumnya tertulis "..sn-filter-box" (titik dobel = invalid,
   gak match apapun) — ini yang bikin card filter gak fully-styled.
   ============================================================= */
.sn-filter-box {
    background: #140a26;
    border: 1px solid #241640;
    border-radius: var(--sn-r-lg);
    padding: 24px 28px;
    box-shadow: var(--sn-shadow-card);
    max-width: 1100px;
    margin: 24px auto 0;
}

/* Baris dropdown (Event, Medali, Jenjang, Kategori, Wilayah, dst) */
.sn-filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.sn-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sn-filter-group-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #a89fc2;
    text-transform: uppercase;
}

.sn-filter-group-select-wrap {
    position: relative;
}

.sn-filter-group-select-wrap::after {
    content: "▼";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #c084fc;
    font-size: 10px;
    pointer-events: none;
}

.sn-filter-group select {
    width: 100%;
    padding: 12px 36px 12px 14px;
    border-radius: var(--sn-r-sm);
    border: 1px solid #2a1e46;
    background: #0f0820;
    color: #f5f3fa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-filter-group select:hover { border-color: #a855f7; }
.sn-filter-group select:focus {
    outline: none;
    border-color: #c084fc;
    box-shadow: 0 0 0 3px rgba(192, 132, 252, 0.15);
}

.sn-filter-group select option {
    background: #140a26;
    color: #f5f3fa;
}

/* Tab Wilayah (kalau masih dipakai versi tab, bukan select) di dalam
   filter group — sebelumnya pakai wrapper .sn-filter-tabs-center yang
   center; sekarang di dalam grid cell, cukup flex+gap biasa. */
.sn-filter-group .sn-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Stat "Jumlah Peserta" di filter box — angka besar, bukan dropdown */
.sn-filter-stat-value {
    font-size: 26px;
    font-weight: 800;
    color: #facc15;
    padding: 12px 0;
}

/* Search versi "di dalam sn-filter-box" (dipakai kalau search jadi
   salah satu kolom filter, bukan search box mandiri terpisah) */
.sn-filter-box-search {
    display: flex;
    gap: 8px;
}

.sn-filter-box-search .sn-search-input {
    width: 100%;
}

/* Baris 2: Search + Jumlah Data ditemukan — sejajar kiri-kanan,
   dipisah garis tipis dari baris dropdown filter di atasnya */
.sn-filter-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #241640;
}

.sn-filter-search-wrap {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 240px;
    max-width: 420px;
}

.sn-filter-search-wrap .sn-search-input {
    flex: 1;
}

.sn-filter-count {
    color: #a89fc2;
    font-size: 14px;
    white-space: nowrap;
}

.sn-count-num {
    color: #facc15;
    font-weight: 800;
    font-size: 18px;
    margin-right: 4px;
}

@media (max-width: 640px) {
    .sn-filter-box { padding: 20px; }
    .sn-filter-row { grid-template-columns: 1fr 1fr; gap: 14px; }
    .sn-filter-search-row {
        flex-direction: column;
        align-items: stretch;
    }
    .sn-filter-search-wrap {
        max-width: 100%;
    }
    .sn-filter-count {
        text-align: center;
    }
}


/* =============================================================
   18. EVENT POSTER (card & thumbnail) — auto-center & crop rapi
   untuk semua event. Fallback placeholder kalau poster belum
   diupload (konsisten sama placeholder winner card).
   ============================================================= */
.sn-event-poster {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    border-radius: var(--sn-r-lg);
    display: block;
}

.sn-event-poster-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #2a1e46, #1a1030);
    border-radius: var(--sn-r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sn-event-poster-placeholder::after {
    content: "★";
    font-size: 40px;
    color: rgba(255, 255, 255, 0.15);
}


/* =============================================================
   19. CTA BANNER PENDAFTARAN
   Dipasang di bagian bawah halaman (mis. homepage), sebelum footer.
   ============================================================= */
.sn-cta-daftar-section {
    background: #0a0118;
    padding: 30px 20px 90px;
}

.sn-cta-banner {
    background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(236,72,153,0.18));
    border: 1px solid #2a1e46;
    border-radius: var(--sn-r-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
    max-width: 1100px;
    margin: 70px auto 0;
    box-shadow: var(--sn-shadow-card);
}

.sn-cta-banner-text {
    flex: 1;
    min-width: 220px;
}

.sn-cta-banner-title {
    font-size: 24px;
    font-weight: 700;
    color: #f5f3fa;
    margin: 0 0 8px;
    line-height: 1.3;
}

.sn-cta-banner-desc {
    color: #d8d2e8;
    font-size: 14px;
    max-width: 480px;
    margin: 0;
    line-height: 1.6;
}

.sn-cta-banner-btn {
    flex-shrink: 0;
    display: inline-block;
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: var(--sn-r-sm);
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sn-cta-banner-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: var(--sn-shadow-btn-hover);
}

@media (max-width: 700px) {
    .sn-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    .sn-cta-banner-desc { margin: 0 auto; }
    .sn-cta-banner-title { font-size: 22px; }
}


/* =============================================================
   20. KATEGORI LOMBA — slider horizontal di homepage
   Placeholder card: background image (nanti diisi manual via ACF/
   featured image), overlay gradasi, judul kategori di atasnya.
   ============================================================= */
.sn-kategori {
    background: #0a0118;
    padding: 70px 0;
}

.sn-kategori-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 20px 20px;
    max-width: 1200px;
    margin: 40px auto 0;
    -webkit-overflow-scrolling: touch;
}

.sn-kategori-scroll::-webkit-scrollbar { height: 6px; }
.sn-kategori-scroll::-webkit-scrollbar-thumb {
    background: #2a1e46;
    border-radius: 999px;
}

.sn-kategori-card {
    position: relative;
    flex: 0 0 240px;
    scroll-snap-align: start;
    aspect-ratio: 3/4;
    border-radius: var(--sn-r-lg);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #1a1030;
    border: 1px solid #241640;
    box-shadow: var(--sn-shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: flex-end;
}

.sn-kategori-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sn-shadow-card-hover);
}

.sn-kategori-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,1,24,0) 30%, rgba(10,1,24,0.92) 100%);
}

.sn-kategori-card-body {
    position: relative;
    padding: 20px 18px;
    width: 100%;
}

.sn-kategori-card-title {
    color: #f5f3fa;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px;
}

.sn-kategori-card-desc {
    color: #c9c0e0;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.sn-kategori-card-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: rgba(255,255,255,0.12);
}

@media (max-width: 640px) {
    .sn-kategori-card { flex-basis: 190px; }
}


/* =============================================================
   21. DESKRIPSI SINGKAT — cuplikan pendek di card event
   ============================================================= */
.sn-event-short-desc {
    color: #a89fc2;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* =============================================================
   22. DESKRIPSI SINGKAT — versi halaman single event (lebih besar
   dari yang di card, dan tanpa line-clamp karena ada ruang lebih)
   ============================================================= */
.sn-single-short-desc {
    color: #d8d2e8;
    font-size: 16px;
    line-height: 1.7;
    margin: 12px 0 20px;
    max-width: 700px;
}


/* =============================================================
   23. POSTER SINGLE EVENT — full-width mengikuti container,
   tinggi menyesuaikan otomatis (gak lagi dibatasi max-height
   yang bikin kecil di layar lebar)
   ============================================================= */
.sn-single-poster {
    max-width: 700px;
    margin: 0 auto 24px;
    border-radius: var(--sn-r-lg);
    overflow: hidden;
    box-shadow: var(--sn-shadow-card);
    background: #140a26;
}

.sn-single-poster-img {
    display: block;
    width: 100%;
    height: auto;
}