/* ======================================================
   LUCKYSBET DESIGN SYSTEM
   Base: 10px (html 62.5%), all rem values ×10
   ====================================================== */

/* ============ RESET ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============ TOKENS ============ */
:root {
    /* Brand */
    --primary: #a8003a;
    --primary-dark: #4a0018;
    --primary-mid: #7a0230;
    --gold: #e8b816;
    --gold-dark: #b8920e;
    --gold-light: #fff0a0;
    --green: #22c55e;
    --red: #ef4444;

    /* Surfaces */
    --bg-dark: #4a0018;
    --bg-card: #1e1e2a;
    --bg-card-hover: #26263a;
    --bg-footer: #2d2d38;
    --bg-footer-bar: #1e1e2a;
    --bg-input: rgba(255, 255, 255, 0.06);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #d0cdd8;
    --text-muted: #8a8598;
    --text-half: rgba(255, 255, 255, 0.5);

    /* Misc */
    --transition: 200ms ease;
    --radius: 1.2rem;
    --radius-lg: 1.6rem;
    --radius-sm: 0.8rem;
    --radius-pill: 20rem;
    --shadow-card: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.35);
    --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============ BASE ============ */
html {
    font-size: 62.5%;
    height: 100%;
    color: var(--text-primary);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Roboto Flex', -apple-system, sans-serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.bg-gradient {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: -1;
    background: linear-gradient(160deg, #a8003a 0%, #4a0018 55%, #2a0020 100%);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

strong { font-weight: 700; }

.scroll-lock { overflow: hidden; }

/* ============ LAYOUT ============ */
.container {
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 1.6rem;
}

@media (min-width: 600px) {
    .container { padding: 0 2.4rem; }
}

@media (min-width: 960px) {
    .container { padding: 0 3.2rem; }
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

p { line-height: 1.6; }

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -0.016rem;
    text-align: center;
    white-space: nowrap;
    line-height: 1.5;
    padding: 1rem 2.4rem;
    transition: all var(--transition);
    transition-property: background, color, border-color, opacity, transform, box-shadow;
    cursor: pointer;
}

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

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn--gold {
    background: linear-gradient(135deg, #b8920e 0%, #e8d060 45%, #b8920e 100%);
    color: #000;
    border: none;
    font-weight: 700;
    box-shadow: 0 0.2rem 1.2rem rgba(232, 184, 22, 0.25);
}

.btn--gold:hover {
    box-shadow: 0 0.4rem 1.8rem rgba(232, 184, 22, 0.35);
}

.btn--outline-white {
    background: transparent;
    border: 0.15rem solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.btn--outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.btn--white {
    background: #fff;
    color: #000;
    border: none;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    border: none;
}

.btn--full {
    width: 100%;
    display: flex;
}

.btn--sm {
    padding: 0.6rem 1.6rem;
    font-size: 1.3rem;
}

.btn--lg {
    padding: 1.2rem 3.2rem;
    font-size: 1.8rem;
}

/* ============ HEADER ============ */
.header {
    position: sticky;
    top: -0.1px;
    z-index: 999;
    background: rgba(122, 2, 48, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header__main {
    position: relative;
}

.header__main-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 6rem;
}

@media (min-width: 960px) {
    .header__main-inner { height: 6.4rem; }
}

/* Nav in one row with logo */
.header__nav {
    display: none;
    align-items: center;
    gap: 2.4rem;
    margin-left: 3.2rem;
}

@media (min-width: 960px) {
    .header__nav { display: flex; }
}

.header__nav-link {
    color: var(--text-half);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: color var(--transition);
    padding: 0.4rem 0;
    position: relative;
    white-space: nowrap;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    width: 0;
    height: 0.2rem;
    background: var(--gold);
    border-radius: 0.1rem;
    transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: #fff;
}

.header__nav-link.active::after {
    width: 100%;
}

.header__logo svg,
.header__logo img {
    width: 14rem;
    height: auto;
}

@media (min-width: 960px) {
    .header__logo svg,
    .header__logo img { width: 17rem; }
}

.header__actions {
    display: none;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
    flex-shrink: 0;
}

@media (min-width: 960px) {
    .header__actions { display: flex; }
}

.header__actions .btn {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
}

.header__user-btn {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0;
    margin-left: auto;
}

@media (min-width: 960px) {
    .header__user-btn { display: none; }
}

/* Burger */
.header__burger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.4rem;
    width: 2.4rem;
    height: 2rem;
    position: relative;
    cursor: pointer;
}

@media (min-width: 960px) {
    .header__burger { display: none; }
}

.header__burger span {
    display: block;
    width: 100%;
    height: 0.2rem;
    background: #fff;
    border-radius: 0.1rem;
    position: absolute;
    left: 0;
    transition: all var(--transition);
}

.header__burger span:nth-child(1) { top: 0.2rem; }
.header__burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__burger span:nth-child(3) { bottom: 0.2rem; width: 60%; }

.header__burger.active span:nth-child(1) { transform: rotate(45deg); top: 50%; }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg); bottom: auto; top: 50%; width: 100%; }

/* Drawer (mobile) */
.header__drawer {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: var(--bg-card);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header__drawer.open {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 960px) {
    .header__drawer { display: none; }
}

.header__drawer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem 1.6rem 2.4rem;
    max-height: calc(100dvh - 6rem);
    overflow-y: auto;
}

@media (min-width: 600px) {
    .header__drawer-inner { padding: 2.4rem; }
}

.drawer__link {
    font-size: 1.7rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-half);
    transition: color var(--transition);
    padding: 0.4rem 0;
}

.drawer__link:hover { color: #fff; }

.drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.8rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer__lang {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.8rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-half);
    text-transform: uppercase;
    padding: 0.4rem 0;
    transition: color var(--transition);
}

.lang-btn.active { color: #fff; }
.lang-btn svg { border-radius: 2px; flex-shrink: 0; }

/* ============ SLIDER ============ */
.slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.slider__track {
    position: relative;
    width: 100%;
}

.slider__slide {
    display: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 36rem;
    padding: 3.2rem 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slider__slide.active {
    display: flex;
}

@media (min-width: 600px) {
    .slider__slide {
        align-items: flex-start;
        min-height: 42rem;
        padding: 4rem 0;
    }
}

@media (min-width: 960px) {
    .slider__slide {
        min-height: 48rem;
        padding: 6rem 0;
    }
}

.slider__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
}

.slider__text {
    max-width: 50rem;
}

.slider__badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(232, 184, 22, 0.15);
    border: 1px solid rgba(232, 184, 22, 0.4);
    border-radius: 0.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1.2rem;
}

.slider__title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

@media (min-width: 600px) {
    .slider__title { font-size: 3rem; }
}

@media (min-width: 960px) {
    .slider__title { font-size: 3.6rem; }
}

.slider__desc {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.75;
    margin-bottom: 2rem;
}

.slider__desc a { color: var(--gold); }

.slider__character {
    display: none;
    max-width: 28rem;
}

@media (min-width: 960px) {
    .slider__character { display: block; }
}

.slider__character img {
    max-height: 36rem;
    width: auto;
}

/* Slider pagination */
.slider__pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

@media (min-width: 600px) {
    .slider__pagination { bottom: 2.4rem; }
}

.slider__dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.slider__dot.active {
    background: var(--gold);
    width: 2.8rem;
    border-radius: 0.5rem;
}

.slider__dot.active::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.5rem;
    animation: dotProgress 5s linear forwards;
}

/* ============ MAIN CONTENT ============ */
.main-content {
    flex: 1;
    padding: 2.4rem 0 4rem;
}

@media (max-width: 599px) {
    .main-content { padding-bottom: 8rem; }
}

/* ============ GAME SECTIONS ============ */
.game-section {
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
    border-bottom: var(--border-subtle);
    /* scroll reveal handled by JS adding .visible */
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.game-section:last-child {
    border-bottom: none;
}

.game-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.game-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.6rem;
}

.game-section__title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 960px) {
    .game-section__title { font-size: 2.4rem; }
}

.game-section__title svg {
    color: var(--gold);
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
}

.game-section__all {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03rem;
    transition: opacity var(--transition);
}

.game-section__all:hover {
    opacity: 0.7;
    color: var(--gold);
}

/* Game grid */
.game-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 480px) {
    .game-carousel { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .game-carousel { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
}

@media (min-width: 960px) {
    .game-carousel { grid-template-columns: repeat(5, 1fr); }
}

/* Game card */
.game-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    border: var(--border-subtle);
    background: var(--bg-card);
}

.game-card:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-hover);
}

.game-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    background: var(--bg-card);
}

.game-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.game-card:hover .game-card__overlay {
    opacity: 1;
}

.game-card__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.4rem 1rem 0.8rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============ FOOTER ============ */
.footer {
    margin-top: auto;
}

.footer__legal-bar {
    background-color: var(--bg-footer-bar);
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 1.2rem 0;
}

.footer__legal-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
    text-align: center;
    color: var(--text-primary);
    opacity: 0.6;
}

.footer__separator {
    display: none;
    margin: 0 0.4rem;
}

@media (min-width: 960px) {
    .footer__separator { display: inline; }
}

.footer__main {
    background-color: var(--bg-footer);
    color: var(--text-primary);
    padding: 4rem 0 3rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.2rem;
    text-align: center;
}

@media (min-width: 600px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (min-width: 960px) {
    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    }
}

.footer__logo {
    display: none;
    margin-bottom: 1.2rem;
}

@media (min-width: 960px) {
    .footer__logo { display: block; }
}

.footer__logo img,
.footer__logo svg {
    max-width: 14rem;
}

.footer__copyright {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-muted);
}

.footer__heading {
    color: var(--text-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links a {
    color: var(--text-half);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color var(--transition);
}

.footer__links a:hover { color: #fff; }

.footer__social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

@media (min-width: 600px) {
    .footer__social { justify-content: flex-start; }
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    transition: all var(--transition);
}

.footer__social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer__social-link svg {
    width: 2rem;
    height: 2rem;
}

/* ============ MOBILE BOTTOM NAV ============ */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
    height: 6.4rem;
    border-top-left-radius: 1.6rem;
    border-top-right-radius: 1.6rem;
    z-index: 100;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    box-shadow: 0 -0.4rem 2rem rgba(0, 0, 0, 0.3);
}

@media (min-width: 600px) {
    .mobile-nav { display: none; }
}

.mobile-nav__inner {
    display: flex;
    justify-content: space-evenly;
    height: 100%;
}

.mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    background: transparent;
    min-width: 6rem;
    text-transform: uppercase;
}

.mobile-nav__item svg {
    width: 2.2rem;
    height: 2.2rem;
}

/* ============ MODALS ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3.2rem;
    width: 100%;
    max-width: 42rem;
    position: relative;
    transform: translateY(2rem);
    transition: transform 0.3s ease;
    border: var(--border-subtle);
}

@media (min-width: 600px) {
    .modal { padding: 4rem; }
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2.4rem;
    color: var(--text-muted);
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.modal__title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 2.4rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.4rem;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1.5rem;
    line-height: 1.5;
    transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-group--checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    accent-color: var(--gold);
    width: 1.6rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.form-group--checkbox label {
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.form-group--checkbox a {
    color: var(--gold);
    text-decoration: underline;
}

.modal__form .btn {
    margin-top: 0.8rem;
}

.modal__switch {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

.modal__switch a {
    color: var(--gold);
    font-weight: 600;
}

/* ============ AUTH UI ============ */
.form-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--red);
    color: var(--red);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.form-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid var(--green);
    color: var(--green);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.header__user-greeting,
.drawer__user-greeting {
    color: var(--text-primary);
    font-size: 1.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 18rem;
}

.header__actions .header__user-greeting {
    margin-right: 0.8rem;
}

.drawer__user-greeting {
    display: block;
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
}

/* ============ PAGE CONTENT (shared for sub-pages) ============ */
.page-content {
    padding: 3.2rem 0 8rem;
}

@media (min-width: 600px) {
    .page-content { padding: 4rem 0 6rem; }
}

.page-hero {
    text-align: center;
    padding: 2rem 0 3.2rem;
}

.page-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

@media (min-width: 960px) {
    .page-hero__title { font-size: 3.6rem; }
}

.page-hero__desc {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 60rem;
    margin: 0 auto;
    line-height: 1.6;
}

.page-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: var(--border-subtle);
    padding: 2.4rem 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .page-card { padding: 3.2rem; }
}

.page-card h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.page-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin: 2.4rem 0 1.2rem;
}

.page-card h2:first-child { margin-top: 0; }

.page-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.page-card p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.page-card p:last-child { margin-bottom: 0; }

.page-card a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.page-card a:hover {
    text-decoration: none;
}

.page-card ul, .page-card ol {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
}

.page-card li {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    list-style: disc;
}

.page-card ol li { list-style: decimal; }

/* Info grid for cards */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}

.info-item {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    border: var(--border-subtle);
    padding: 2rem;
}

.info-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.info-item p {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

/* Bonus grid */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

@media (min-width: 640px) {
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .bonus-grid { grid-template-columns: repeat(3, 1fr); }
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: var(--border-subtle);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
    transform: translateY(-0.3rem);
    box-shadow: var(--shadow-hover);
}

.bonus-card__img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    display: block;
}

.bonus-card__body {
    padding: 1.6rem;
}

.bonus-card__badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(232, 184, 22, 0.15);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 0.4rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.bonus-card__title {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.bonus-card__desc {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

/* FAQ accordion */
.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    border: var(--border-subtle);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.6rem 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
    gap: 1.2rem;
}

.faq-item__question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-item__icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    display: none;
    padding: 0 2rem 1.6rem;
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.faq-item.open .faq-item__answer {
    display: block;
}

/* Promo code */
.promo-section {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: var(--border-subtle);
    padding: 2.4rem;
    text-align: center;
}

.promo-section__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.promo-section__form {
    display: flex;
    gap: 1rem;
    max-width: 40rem;
    margin: 0 auto;
}

.promo-section__form input {
    flex: 1;
    padding: 1rem 1.4rem;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1.5rem;
}

.promo-section__form input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Warning banner */
.warning-banner {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.warning-banner p {
    font-size: 1.5rem;
    color: #fca5a5;
    line-height: 1.6;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.4rem;
}

@media (min-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: var(--border-subtle);
    padding: 2.4rem;
    transition: transform var(--transition);
}

.benefit-card:hover {
    transform: translateY(-0.2rem);
}

.benefit-card__icon {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
}

.benefit-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Lottery grid */
.lottery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

@media (min-width: 960px) {
    .lottery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 599px) {
    .slider__text {
        text-align: center;
        padding: 0 1rem;
    }

    .slider__content {
        flex-direction: column;
        justify-content: center;
    }
}
