:root {
    --color-bg: #0f172a;
    --color-bg-light: #1e293b;
    --color-primary: #0ea5e9;
    --color-accent: #8b5cf6;
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 12px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s, opacity 0.2s;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-text-muted);
    color: var(--color-text);
}

.btn-full {
    width: 100%;
}

.bg-darker {
    background-color: #0b1120;
}

.mt-2 {
    margin-top: 2rem;
}


.main-header {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--color-primary);
}

.nav-list .nav-cta {
    color: white;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-light);
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        z-index: -1;
        transition: all 0.3s ease;
        visibility: hidden;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        z-index: 99;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list .btn {
        width: 100%;
    }
}


.hero-section {
    padding: 4rem 0;
    text-align: center;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 70%);
}

.hero-card {
    background: var(--color-bg-light);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge {
    background-color: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-header h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin: 1rem 0 0.5rem;
}

.draw-date {
    color: var(--color-text-muted);
}

.jackpot-display {
    margin: 2rem 0;
}

.jackpot-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.jackpot-amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.asterisk {
    font-size: 1rem;
    vertical-align: top;
    color: var(--color-text-muted);
}


.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    min-width: 70px;
}

.time-box span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}


.ticket-selector {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 8px;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-bg);
    border-radius: 25px;
    margin: 1rem 0;
}

.qty-control button {
    background: none;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
}

.qty-control span {
    padding: 0 10px;
    font-weight: 600;
}

.disclaimer {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 1rem;
}


section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.icon-card {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s;
}

.icon-card:hover {
    transform: translateY(-5px);
}

.icon-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.icon-card h3 {
    margin-bottom: 0.5rem;
}


.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table th {
    background-color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    font-size: 0.85rem;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.responsible-play-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-badge {
    border: 2px solid #ef4444;
    color: #ef4444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.badges i {
    font-size: 1.5rem;
    color: #cbd5e1;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.overlay-card {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
    border: 1px solid var(--color-primary);
}

.icon-accent {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    gap: 1rem;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}


.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.login-card {
    background: var(--color-bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 6px;
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.login-footer a {
    color: var(--color-primary);
}

.login-disclaimer {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 1.5rem;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}


.result-card {
    background: var(--color-bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--color-primary);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.result-jackpot {
    text-align: right;
}

.result-jackpot span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.result-jackpot strong {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.winning-numbers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ball {
    width: 40px;
    height: 40px;
    background: white;
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-header h1 {
        font-size: 1.8rem;
    }

    .jackpot-amount {
        font-size: 2.5rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}


.ticker-wrap {
    background-color: #020617;
    width: 100%;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.ticker-item i {
    color: gold;
    margin-right: 5px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.premium-hero {
    padding: 5rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;

    background-image:
        radial-gradient(circle at top, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.95) 80%),
        url('../img/hero.png');


    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

}

.premium-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(14, 165, 233, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.accent-text {
    color: var(--color-primary);
}


.countdown-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 3rem;
}

.cd-block {
    display: flex;
    flex-direction: column;
    min-width: 70px;
}

.cd-block span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.cd-block label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 5px;
}

.cd-separator {
    font-size: 2rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.cd-block.highlight span {
    color: var(--color-primary);
}


.ticket-action-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.price-info {
    text-align: left;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.qty-control-modern {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    padding: 5px;
}

.qty-control-modern button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-light);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.qty-control-modern button:hover {
    background: var(--color-primary);
}

.qty-control-modern span {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.hero-footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #475569;
}


.stats-bar {
    background: var(--color-primary);
    padding: 1rem 0;
    color: #0f172a;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}


.steps-section {
    padding: 5rem 0;
    background: var(--color-bg);
}

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

.step-card {
    background: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}


.odds-section-modern {
    padding: 5rem 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 10px;
}

.feature-list i {
    color: var(--color-primary);
    margin-top: 4px;
}

.table-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.modern-table th {
    text-align: left;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-table td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.div-badge {
    background: #334155;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.div-badge.gold {
    background: linear-gradient(135deg, #ffd700, #b8860b);
    color: #000;
}

.div-badge.silver {
    background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
    color: #000;
}

.div-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: #fff;
}

.table-note {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
}


.cta-section {
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('../img/hero-lottery.jpg');
    background-size: cover;
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .countdown-modern {
        gap: 10px;
    }

    .cd-block span {
        font-size: 1.8rem;
    }

    .cd-separator {
        font-size: 1.5rem;
    }

    .ticket-action-card {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

.ln-footer {
    background-color: #05080e;
    color: #f9fafb;
    padding: 40px 16px 32px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.ln-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ln-footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.ln-footer-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ln-footer-logo {
    height: 50px;
    width: auto;
    display: block;
}

.ln-footer-text {
    margin-bottom: 8px;
    color: #e5e7eb;
}

.ln-footer-text a {
    color: #ffffff;
    text-decoration: underline;
}

.ln-footer-warning {
    margin: 22px 0 26px;
    font-weight: 600;
    color: #ff3737;
}

.ln-footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.ln-footer-copy span {
    font-weight: 600;
}

.ln-footer-links {
    display: flex;
    gap: 24px;
}

.ln-footer-links a {
    color: #e5e7eb;
    text-decoration: none;
}

.ln-footer-links a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .ln-footer {
        padding: 48px 24px 32px;
    }

    .ln-footer-bottom {
        flex-direction: row;
    }
}

.results-hero {
    padding: 3rem 0 4rem;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
}

.subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}


.latest-result-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.latest-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.lrc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.draw-badge {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    display: inline-block;
}

.lrc-info h2 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.lrc-info p {
    color: var(--color-text-muted);
}

.lrc-prize {
    text-align: right;
}

.prize-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.prize-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.lrc-numbers {
    display: flex;
    justify-content: center;
    padding: 1rem 0 2.5rem;
}

.ball-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.big-ball {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    border: 2px solid #e2e8f0;
}

.lrc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 1rem;
}

.winner-stat {
    color: #facc15;
    font-size: 0.95rem;
}

.winner-stat i {
    margin-right: 8px;
}

.next-draw-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}


.checker-section {
    padding: 0 0 4rem;
    position: relative;
    margin-top: -30px;
    z-index: 10;
}

.checker-box {
    background: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.checker-text h3 {
    margin-bottom: 0.5rem;
}

.checker-text p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.checker-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.input-grid {
    display: flex;
    gap: 8px;
}

.num-input {
    width: 45px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.num-input:focus {
    border-color: var(--color-primary);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
}

.btn-checker {
    white-space: nowrap;
}


.archive-section {
    padding: 4rem 0;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.year-filter select {
    background: var(--color-bg);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.table-card-wrapper {
    background: var(--color-bg-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th {
    background: rgba(0, 0, 0, 0.2);
    text-align: left;
    padding: 1.2rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.results-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.results-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.date-cell {
    font-weight: 600;
    color: white;
}

.draw-num {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.prize-cell {
    font-weight: 700;
    color: var(--color-primary);
}

.sm-balls {
    display: flex;
    gap: 5px;
}

.sm-balls span {
    width: 28px;
    height: 28px;
    background: white;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.won {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.status-badge.rollover {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
}

.info-box i {
    color: var(--color-primary);
}

.info-box p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}


@media (max-width: 768px) {
    .lrc-header {
        text-align: center;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .lrc-prize {
        text-align: center;
    }

    .lrc-footer {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .checker-box {
        flex-direction: column;
        text-align: center;
    }

    .checker-form {
        justify-content: center;
    }

    .results-table th,
    .results-table td {
        padding: 1rem 0.8rem;
        font-size: 0.85rem;
    }

    .sm-balls span {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }


    .results-table th:nth-child(2),
    .results-table td:nth-child(2),
    .results-table th:nth-child(5),
    .results-table td:nth-child(5) {
        display: none;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

.htp-hero {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.htp-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.htp-hero p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}


.timeline-section {
    padding: 4rem 0;
    background: var(--color-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-light);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.timeline-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}


.ticket-visual {
    background: #e2e8f0;
    color: #0f172a;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 5px solid var(--color-primary);
    font-family: monospace;
    position: relative;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ticket-top {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px dashed #94a3b8;
    padding-bottom: 5px;
}

.ticket-nums {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ticket-nums span {
    background: #fff;
    border: 1px solid #cbd5e1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ticket-bottom {
    font-size: 0.75rem;
    text-align: center;
    color: #64748b;
}


.tiers-section {
    padding: 4rem 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: var(--color-bg);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.gold-border {
    border-top: 4px solid #ffd700;
}

.silver-border {
    border-top: 4px solid #c0c0c0;
}

.bronze-border {
    border-top: 4px solid #cd7f32;
}

.tier-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.tier-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ball-visual {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 1.5rem 0;
}

.b-win {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 5px #34d399;
}

.b-lose {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #334155;
    border: 1px solid #475569;
}

.tier-label {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 5px 0;
    color: var(--color-text-muted);
}

.tier-odds {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(14, 165, 233, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}


.faq-accordion-section {
    padding: 4rem 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion details {
    background: var(--color-bg-light);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.accordion summary {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    color: var(--color-primary);
    line-height: 1;
}

.accordion details[open] summary::after {
    content: '-';
}

.accordion details[open] summary {
    background: rgba(255, 255, 255, 0.02);
}

.acc-content {
    padding: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    line-height: 1.6;
}


.rp-section-highlight {
    padding: 2rem 0 4rem;
    text-align: center;
}

.rp-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(15, 23, 42, 0.5));
    border: 1px solid #14b8a6;
    padding: 2rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.rp-box h3 {
    margin-bottom: 0.5rem;
    color: #2dd4bf;
}

.text-link {
    color: #2dd4bf;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: inline-block;
}


@media (max-width: 768px) {
    .timeline::before {
        left: 24px;
    }

    .timeline-item {
        gap: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .ticket-visual {
        width: 100%;
    }
}

.login-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-main {
    flex-grow: 1;
    display: flex;
    align-items: center;
}


.split-layout-login {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px - 100px);
}


.login-visual {
    flex: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('../img/hero-lottery.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.login-visual::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 70%);
    pointer-events: none;
}

.visual-content {
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.visual-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.visual-content h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.visual-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-row {
    display: flex;
    gap: 1.5rem;
}

.f-item {
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.f-item i {
    color: #34d399;
}


.login-form-container {
    flex: 1;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-wrapper {
    width: 100%;
    max-width: 420px;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h1 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--color-text-muted);
}


.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    background: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--color-primary);
    background: rgba(14, 165, 233, 0.05);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
}


.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.forgot-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}


.custom-checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    color: var(--color-text-muted);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--color-primary);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--color-primary);
    font-weight: 600;
}

.secure-badge {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 6px;
}

.center-content {
    justify-content: center;
}


@media (max-width: 900px) {
    .split-layout-login {
        flex-direction: column;
    }

    .login-visual {
        display: none;
    }

    .login-form-container {
        width: 100%;
        padding: 3rem 1.5rem;
    }
}

.login-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.login-main {
    flex-grow: 1;
    display: flex;
    align-items: center;
}


.split-layout-login {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px - 100px);
}


.login-visual {
    flex: 1;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('../img/hero-lottery.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.login-visual::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2), transparent 70%);
    pointer-events: none;
}

.visual-content {
    max-width: 450px;
    position: relative;
    z-index: 2;
}

.visual-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.visual-content h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.visual-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.feature-row {
    display: flex;
    gap: 1.5rem;
}

.f-item {
    font-size: 0.9rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.f-item i {
    color: #34d399;
}


.login-form-container {
    flex: 1;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.form-wrapper {
    width: 100%;
    max-width: 420px;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h1 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--color-text-muted);
}


.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 45px;
    background: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--color-primary);
    background: rgba(14, 165, 233, 0.05);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
}


.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.forgot-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}


.custom-checkbox {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    color: var(--color-text-muted);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--color-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--color-primary);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--color-primary);
    font-weight: 600;
}

.secure-badge {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 6px;
}

.center-content {
    justify-content: center;
}


@media (max-width: 900px) {
    .split-layout-login {
        flex-direction: column;
    }

    .login-visual {
        display: none;
    }

    .login-form-container {
        width: 100%;
        padding: 3rem 1.5rem;
    }
}

.legal-hero {
    background: var(--color-bg-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-hero p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}


.legal-section {
    padding: 4rem 0;
    background: var(--color-bg);
}

.legal-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}


.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-sidebar ul {
    list-style: none;
}

.legal-sidebar li {
    margin-bottom: 0.8rem;
}

.legal-sidebar a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.legal-sidebar a:hover {
    color: var(--color-primary);
}


.legal-content {
    color: #e2e8f0;
    line-height: 1.7;
}

.legal-block {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
}

.legal-block h2 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-block h3 {
    font-size: 1.2rem;
    color: white;
    margin: 1.5rem 0 1rem;
}

.legal-block p {
    margin-bottom: 1rem;
}

.legal-block ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-muted);
}

.legal-block li {
    margin-bottom: 0.5rem;
}


.highlight-box {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 0 8px 8px 0;
    color: #fca5a5;
}

.contact-card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.contact-card i {
    width: 20px;
    color: var(--color-primary);
}


@media (max-width: 900px) {
    .legal-container {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        display: none;
    }

    .legal-block h2 {
        font-size: 1.5rem;
    }
}