/*
 * Vietnam Lottery — Huesca-inspired theme
 * Navy + bright orange professional palette, white content cards.
 */

:root {
    --vl-navy: #1d2870;
    --vl-navy-2: #2a3784;
    --vl-navy-dark: #131a4d;
    --vl-navy-deep: #0e133b;
    --vl-orange: #f59c19;
    --vl-orange-2: #ff8a00;
    --vl-orange-dark: #e07b00;
    --vl-yellow: #ffd23f;
    --vl-text: #0f1438;
    --vl-text-muted: #5a6178;
    --vl-bg: #f7f8fd;
    --vl-bg-card: #ffffff;
    --vl-link: #2966e7;
    --vl-line: #e6e9f5;
}

/* Base reset (override legacy CSS) */
html, body {
    background: var(--vl-bg) !important;
    color: var(--vl-text);
    font-family: 'Poppins', 'Inter', 'Segoe UI', system-ui, sans-serif;
}

body {
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
}

body::before { content: none !important; }
img { max-width: 100%; height: auto; }

a { color: var(--vl-link); text-decoration: none; }
a:hover { color: var(--vl-orange); }

/* ===================================================================
   HEADER
   =================================================================== */
.vl-header {
    background: #fff;
    box-shadow: 0 6px 18px rgba(20, 30, 80, 0.06);
    position: relative;
    z-index: 100;
}

.vl-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    gap: 24px;
    flex-wrap: wrap;
}

.vl-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--vl-navy);
}

.vl-brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, var(--vl-yellow) 0%, var(--vl-orange) 100%);
    color: #fff;
    font-weight: 900;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(245, 156, 25, 0.35);
    line-height: 1;
}

.vl-brand-text {
    line-height: 1;
}

.vl-brand-name {
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--vl-navy);
    letter-spacing: 1px;
}

.vl-brand-name span { color: var(--vl-orange); }

.vl-brand-tag {
    display: block;
    margin-top: 4px;
    color: var(--vl-text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.vl-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.vl-nav-link {
    color: var(--vl-navy);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.vl-nav-link:hover,
.vl-nav-link.active {
    color: var(--vl-orange);
    border-bottom-color: var(--vl-orange);
}

.vl-join-btn {
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff !important;
    border: none;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.88rem;
    box-shadow: 0 8px 20px rgba(245, 156, 25, 0.42);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.vl-join-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 156, 25, 0.55);
}

/* Language switcher */
.vl-lang-switch { position: relative; }

.vl-lang-current {
    background: var(--vl-bg);
    border: 1px solid var(--vl-line);
    color: var(--vl-navy);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vl-lang-current:hover { border-color: var(--vl-orange); }

.vl-lang-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: #fff;
    border: 1px solid var(--vl-line);
    border-radius: 12px;
    overflow: hidden;
    min-width: 200px;
    box-shadow: 0 16px 40px rgba(20, 30, 80, 0.15);
    display: none;
    z-index: 200;
}

.vl-lang-menu.show { display: block; }

.vl-lang-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--vl-text);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--vl-line);
}

.vl-lang-menu a:hover,
.vl-lang-menu a.active {
    background: rgba(245, 156, 25, 0.1);
    color: var(--vl-orange);
}

.vl-lang-menu a:last-child { border-bottom: none; }

/* ===================================================================
   HERO (homepage)
   =================================================================== */
.vl-hero {
    position: relative;
    background: var(--vl-navy);
    color: #fff;
    overflow: hidden;
    padding: 80px 0 120px 0;
    min-height: 480px;
}

/* Orange diagonal stripes — two triangles top-left and bottom-left */
.vl-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--vl-orange) 0%, var(--vl-orange) 28%, transparent 28%);
    z-index: 1;
}

.vl-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--vl-yellow) 0%, var(--vl-yellow) 12%, transparent 12%);
    opacity: 0.6;
    z-index: 1;
}

.vl-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
    align-items: center;
}

.vl-hero-tag {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vl-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0 0 18px 0;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.vl-hero-desc {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.08rem;
    margin-bottom: 26px;
    max-width: 560px;
}

.vl-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff !important;
    padding: 16px 38px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.95rem;
    box-shadow: 0 12px 28px rgba(245, 156, 25, 0.45);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.vl-hero-cta:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 156, 25, 0.55);
}

/* Right-side illustration: confetti balls + winner ticket */
.vl-hero-art {
    position: relative;
    min-height: 380px;
}

.vl-hero-balls {
    position: absolute;
    inset: 0;
}

.vl-hero-balls span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff8c0, var(--vl-yellow));
    color: var(--vl-navy);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35), inset -4px -6px 10px rgba(180, 100, 0, 0.25);
    animation: vlBall 5s ease-in-out infinite;
}

.vl-hero-balls span.c2 { background: radial-gradient(circle at 30% 30%, #ffe1ad, var(--vl-orange)); color: #fff; }
.vl-hero-balls span.c3 { background: radial-gradient(circle at 30% 30%, #ffd0aa, #d72d2d); color: #fff; }
.vl-hero-balls span.c4 { background: radial-gradient(circle at 30% 30%, #fff, #fff); color: var(--vl-navy); }
.vl-hero-balls span.c5 { background: radial-gradient(circle at 30% 30%, #aae9ff, #2966e7); color: #fff; }

.vl-hero-balls .b1 { width: 86px; height: 86px; font-size: 2.4rem; top: 10%; left: 18%; animation-delay: 0s; }
.vl-hero-balls .b2 { width: 70px; height: 70px; font-size: 1.9rem; top: 6%;  left: 60%; animation-delay: 0.6s; }
.vl-hero-balls .b3 { width: 56px; height: 56px; font-size: 1.5rem; top: 38%; left: 80%; animation-delay: 1.2s; }
.vl-hero-balls .b4 { width: 76px; height: 76px; font-size: 2.1rem; top: 52%; left: 30%; animation-delay: 1.8s; }
.vl-hero-balls .b5 { width: 62px; height: 62px; font-size: 1.7rem; top: 70%; left: 64%; animation-delay: 2.4s; }

@keyframes vlBall {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%      { transform: translateY(-12px) rotate(6deg); }
}

/* WINNER ticket card */
.vl-hero-winner {
    position: absolute;
    right: -10px;
    bottom: -40px;
    background: linear-gradient(180deg, #fff14d 0%, var(--vl-yellow) 100%);
    color: #d72d2d;
    padding: 18px 28px;
    border-radius: 14px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    transform: rotate(-8deg);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    text-align: center;
    border: 3px dashed rgba(215, 45, 45, 0.4);
    z-index: 4;
}

.vl-hero-winner-lbl {
    display: block;
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b51e1e;
}

.vl-hero-winner-amt {
    display: block;
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    margin-top: 4px;
    letter-spacing: 2px;
}

/* Confetti dots (small scattered) */
.vl-hero-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background-image:
        radial-gradient(circle at 22% 28%, var(--vl-yellow) 0 4px, transparent 5px),
        radial-gradient(circle at 70% 18%, #ff5b8a 0 3px, transparent 4px),
        radial-gradient(circle at 14% 70%, #29e8a0 0 3px, transparent 4px),
        radial-gradient(circle at 80% 60%, #ff7a3a 0 5px, transparent 6px),
        radial-gradient(circle at 50% 88%, #4a9bff 0 3px, transparent 4px),
        radial-gradient(circle at 38% 12%, #fff 0 2px, transparent 3px),
        radial-gradient(circle at 90% 80%, var(--vl-yellow) 0 4px, transparent 5px);
    background-size: 100% 100%;
    opacity: 0.85;
}

/* ===================================================================
   PAGE HERO (for Live Draw / Result / Contact)
   =================================================================== */
.vl-page-hero {
    position: relative;
    background: var(--vl-navy);
    color: #fff;
    padding: 50px 0 80px 0;
    overflow: hidden;
    margin-bottom: 0;
}

.vl-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--vl-orange) 0%, var(--vl-orange) 26%, transparent 26%);
    z-index: 1;
}

.vl-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, var(--vl-yellow) 0%, var(--vl-yellow) 10%, transparent 10%);
    opacity: 0.6;
    z-index: 1;
}

.vl-page-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 180px;
}

.vl-page-hero-title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.vl-page-hero-balls {
    position: relative;
    width: 360px;
    height: 200px;
}

.vl-page-hero-balls span {
    position: absolute;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), inset -4px -6px 12px rgba(0,0,0,0.25);
}

.vl-page-hero-balls .b1 { width: 96px; height: 96px; font-size: 2.4rem; left: 20%; top: 20%; background: radial-gradient(circle at 30% 30%, #fff, #fff); color: var(--vl-navy); }
.vl-page-hero-balls .b2 { width: 80px; height: 80px; font-size: 2rem;   left: 50%; top: 10%; background: radial-gradient(circle at 30% 30%, #ff8484, #d72d2d); }
.vl-page-hero-balls .b3 { width: 72px; height: 72px; font-size: 1.8rem; left: 70%; top: 50%; background: radial-gradient(circle at 30% 30%, #ffe0aa, var(--vl-orange)); }

/* ===================================================================
   RESULT CARD (used on homepage live + result list)
   =================================================================== */
.vl-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 24px;
}

.vl-section--tight { padding: 50px 24px 60px 24px; }
.vl-section--lift {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.vl-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--vl-navy);
    text-align: center;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    margin: 0 0 10px 0;
}

.vl-section-sub {
    text-align: center;
    color: var(--vl-text-muted);
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto 36px auto;
}

.vl-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(20, 30, 80, 0.08);
    display: grid;
    grid-template-columns: 250px 1fr;
    margin-bottom: 26px;
    border: 1px solid var(--vl-line);
}

.vl-card-sidebar {
    background: linear-gradient(180deg, var(--vl-navy) 0%, var(--vl-navy-2) 100%);
    color: #fff;
    padding: 28px 24px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.vl-card-sidebar .lbl {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}

.vl-card-sidebar .num {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.vl-card-sidebar .day {
    color: var(--vl-orange);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.vl-card-sidebar .date {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-top: 4px;
}

.vl-card-sidebar .live-at {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 18px;
}

.vl-card-body {
    padding: 24px 30px 28px 30px;
    position: relative;
}

.vl-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
    flex-wrap: wrap;
}

.vl-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: var(--vl-text);
    font-size: 1.5rem;
    margin: 0;
}

.vl-card-livetime {
    color: var(--vl-text-muted);
    font-size: 0.92rem;
}

.vl-card-pill {
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff !important;
    padding: 7px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(245, 156, 25, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vl-card-pill:hover { color: #fff !important; filter: brightness(1.05); }

.vl-prizes-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: end;
    border: 1px solid var(--vl-line);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 18px;
}

.vl-prize-col {
    text-align: center;
    padding: 6px;
    border-right: 1px solid var(--vl-line);
}

.vl-prize-col:last-child { border-right: none; }

.vl-prize-col-label {
    font-weight: 700;
    color: var(--vl-text);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.vl-prize-col-label sup {
    color: var(--vl-text-muted);
    font-weight: 600;
    margin-right: 2px;
}

.vl-balls {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.vl-ball {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--vl-navy-2), var(--vl-navy-dark));
    color: #fff;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    display: grid;
    place-items: center;
    box-shadow: inset -3px -4px 10px rgba(0,0,0,0.35), 0 4px 8px rgba(20, 30, 80, 0.25);
}

.vl-balls-lg .vl-ball { width: 48px; height: 48px; font-size: 1.25rem; }

.vl-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.vl-extra-table {
    border: 1px solid var(--vl-line);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.vl-extra-table-head {
    background: #fafbff;
    color: var(--vl-text);
    font-weight: 700;
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid var(--vl-line);
}

.vl-extra-cells {
    display: grid;
    grid-template-columns: 1fr;
}

.vl-extra-cells.cols-2 { grid-template-columns: 1fr 1fr; }

.vl-extra-cell {
    padding: 11px 12px;
    text-align: center;
    color: var(--vl-text);
    font-weight: 600;
    border-bottom: 1px solid var(--vl-line);
    border-right: 1px solid var(--vl-line);
    font-size: 0.95rem;
}

.vl-extra-cell:last-child { border-bottom: none; }
.vl-extra-cells.cols-2 .vl-extra-cell:nth-child(2n) { border-right: none; }
.vl-extra-cells.cols-2 .vl-extra-cell:nth-last-child(-n+2) { border-bottom: none; }

.vl-card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    border-top: 1px solid var(--vl-line);
}

.vl-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vl-link);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
}

.vl-see-all:hover { color: var(--vl-orange); }

/* NEXT LIVEDRAW orange tab */
.vl-cd-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 6px;
    background: #fff;
    border: 1px solid var(--vl-line);
    border-radius: 999px;
    overflow: hidden;
    width: fit-content;
    max-width: 100%;
}

.vl-cd-tab {
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff;
    padding: 14px 28px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
    padding-right: 38px;
}

.vl-cd-units {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 32px;
    color: var(--vl-navy);
}

.vl-cd-unit {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.vl-cd-unit small {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--vl-text-muted);
    text-transform: capitalize;
}

/* ===================================================================
   LIVE DRAW page extras (state badges)
   =================================================================== */
.vl-live-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin-left: 8px;
}

.vl-live-state.live { background: #d72d2d; color: #fff; }
.vl-live-state.upcoming { background: var(--vl-orange); color: #fff; }
.vl-live-state.finished { background: #e8ecf5; color: var(--vl-text-muted); }

.vl-live-state .dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: vlBlink 1s ease-in-out infinite alternate;
}

@keyframes vlBlink { from { opacity: 0.35; } to { opacity: 1; } }

/* Period tabs (live draw page) */
.vl-period-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: center;
}

.vl-period-tab {
    background: #fff;
    border: 1px solid var(--vl-line);
    color: var(--vl-navy);
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 12px rgba(20, 30, 80, 0.06);
}

.vl-period-tab:hover { border-color: var(--vl-orange); color: var(--vl-orange); }

.vl-period-tab.active {
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(245, 156, 25, 0.4);
}

/* Pagination */
.vl-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.vl-pagination a, .vl-pagination span {
    background: #fff;
    color: var(--vl-navy);
    border: 1px solid var(--vl-line);
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(20, 30, 80, 0.04);
    transition: all 0.2s ease;
}

.vl-pagination a:hover { background: var(--vl-orange); color: #fff; border-color: var(--vl-orange); }
.vl-pagination .active { background: var(--vl-navy); color: #fff; border-color: var(--vl-navy); }
.vl-pagination .vl-next, .vl-pagination .vl-prev {
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff;
    border-color: transparent;
}

.vl-pagination .vl-next:hover, .vl-pagination .vl-prev:hover { filter: brightness(1.05); color: #fff; }

/* ===================================================================
   NEWSLETTER
   =================================================================== */
.vl-newsletter {
    position: relative;
    background: var(--vl-navy);
    color: #fff;
    padding: 100px 0 130px 0;
    overflow: hidden;
    margin-top: 60px;
}

/* curved top divider */
.vl-newsletter::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--vl-bg);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.vl-newsletter-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.vl-newsletter-tag {
    color: #fff;
    letter-spacing: 4px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.vl-newsletter-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    text-transform: uppercase;
    margin: 0 0 16px 0;
    letter-spacing: 1px;
}

.vl-newsletter-desc {
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    font-size: 1rem;
}

.vl-newsletter-form {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    padding: 8px 8px 8px 28px;
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}

.vl-newsletter-icon {
    color: #fff;
    font-size: 1.4rem;
    opacity: 0.85;
}

.vl-newsletter-form input[type=email] {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    flex: 1;
    padding: 12px 8px;
    font-size: 1rem;
    font-family: inherit;
}

.vl-newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

.vl-newsletter-btn {
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 14px 36px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(245, 156, 25, 0.45);
    transition: transform 0.15s ease;
}

.vl-newsletter-btn:hover { transform: translateY(-2px); color: #fff; }

.vl-newsletter-status {
    margin-top: 16px;
    color: var(--vl-yellow);
    font-weight: 700;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.vl-footer {
    background: var(--vl-navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.vl-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.vl-footer-copy { font-size: 0.92rem; }

.vl-footer-pay {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vl-pay-icon {
    background: #fff;
    color: var(--vl-navy);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    line-height: 1;
}

/* ===================================================================
   MARQUEE (small notification strip below header)
   =================================================================== */
.vl-marquee-strip {
    background: linear-gradient(90deg, var(--vl-orange) 0%, var(--vl-orange-2) 100%);
    color: #fff;
    padding: 8px 0;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
}

.vl-marquee-strip marquee { color: #fff; }

/* ===================================================================
   CONTACT page
   =================================================================== */
.vl-contact-grid {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(20, 30, 80, 0.08);
    padding: 36px 40px;
    border: 1px solid var(--vl-line);
}

.vl-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.vl-contact-field { display: flex; flex-direction: column; gap: 6px; }

.vl-contact-field label {
    font-weight: 700;
    color: var(--vl-navy);
    font-size: 0.9rem;
}

.vl-contact-field input,
.vl-contact-field textarea {
    border: 1px solid var(--vl-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--vl-text);
    background: #fafbff;
}

.vl-contact-field input:focus,
.vl-contact-field textarea:focus {
    outline: none;
    border-color: var(--vl-orange);
    background: #fff;
}

.vl-contact-submit {
    background: linear-gradient(180deg, var(--vl-orange-2), var(--vl-orange-dark));
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(245, 156, 25, 0.4);
    margin-top: 6px;
}

.vl-contact-submit:hover { filter: brightness(1.05); }

.vl-contact-status {
    margin-top: 18px;
    padding: 14px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
}

.vl-contact-status.success { background: #e7f6e1; color: #1a7a1a; border: 1px solid #b6df9e; }
.vl-contact-status.error { background: #fde6e3; color: #c0291d; border: 1px solid #f5b3ad; }

/* ===================================================================
   Bottom date bar — kept simple (legacy uses .navbot)
   =================================================================== */
.navbot { display: none !important; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
    .vl-hero { padding: 60px 0 100px 0; }
    .vl-hero-inner { grid-template-columns: 1fr; }
    .vl-hero-art { min-height: 320px; margin-top: 30px; }
    .vl-card { grid-template-columns: 1fr; }
    .vl-card-sidebar { text-align: center; padding: 18px; }
    .vl-prizes-row { grid-template-columns: 1fr; gap: 8px; }
    .vl-prize-col { border-right: none; border-bottom: 1px solid var(--vl-line); padding-bottom: 12px; }
    .vl-prize-col:last-child { border-bottom: none; }
    .vl-extras { grid-template-columns: 1fr; }
    .vl-contact-row { grid-template-columns: 1fr; }
    .vl-nav { gap: 14px; }
    .vl-nav-link { font-size: 0.8rem; letter-spacing: 1px; }
    .vl-join-btn { padding: 9px 20px; font-size: 0.78rem; letter-spacing: 1px; }
    .vl-page-hero-balls { display: none; }
    .vl-cd-row { flex-direction: column; align-items: stretch; border-radius: 16px; }
    .vl-cd-tab { clip-path: none; padding: 10px 20px; text-align: center; }
    .vl-cd-units { justify-content: center; padding: 12px 20px; gap: 16px; }
}

@media (max-width: 640px) {
    .vl-newsletter-form { flex-direction: column; border-radius: 18px; padding: 14px; gap: 10px; }
    .vl-newsletter-form input[type=email] { text-align: center; width: 100%; }
    .vl-footer-inner { justify-content: center; text-align: center; }
    .vl-ball { width: 30px; height: 30px; font-size: 0.85rem; }
    .vl-balls-lg .vl-ball { width: 36px; height: 36px; font-size: 1rem; }
    .vl-hero-winner { right: 0; bottom: -20px; padding: 12px 18px; transform: rotate(-6deg); }
}

/* Hide legacy elements we no longer need on the public site */
.swiper.vl-hidden, .card-live.vl-hidden, .card1.vl-hidden { display: none !important; }

/* Modal contrast (responsible play modal) */
.modal-content { background: #fff; color: var(--vl-text); border-radius: 14px; border: 1px solid var(--vl-line); }
.modal-content .modal-title { color: var(--vl-navy); }
