/* ====================================
   MOSTBET CZ – Premium Casino Landing
   ==================================== */

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #080418;
    color: #e0dce8;
    line-height: 1.7;
    overflow-x: hidden;
}

/* VARIABLES */
:root {
    --gold: #daa520;
    --gold-light: #f0c850;
    --gold-dark: #b8860b;
    --bg-deep: #080418;
    --bg-card: #120e24;
    --bg-card-hover: #1a1436;
    --bg-section: #0c0820;
    --text-main: #e0dce8;
    --text-muted: #9890a8;
    --text-white: #ffffff;
    --accent-red: #e8364a;
    --accent-green: #2ecc71;
    --border: rgba(218,165,32,0.15);
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 4px 24px rgba(218,165,32,0.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* UTILITIES */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold); }
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 48px;
    font-size: 1.05rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    white-space: nowrap;
    max-width: 100%;
}
.btn--sm { padding: 10px 24px; font-size: 0.85rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--xl { padding: 20px 48px; font-size: 1.15rem; }
.btn--gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #0a0520;
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(218,165,32,0.4);
    filter: brightness(1.1);
}
.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn--outline:hover {
    background: rgba(218,165,32,0.1);
    transform: translateY(-2px);
}
.pulse {
    animation: pulse 2.5s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: var(--shadow-gold); }
    50% { box-shadow: 0 4px 40px rgba(218,165,32,0.5); }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8,4,24,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(8,4,24,0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo img { display: block; height: 42px; width: auto; }
.nav { display: flex; gap: 24px; }
.nav__link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }
.header__actions { display: flex; gap: 12px; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: var(--transition);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
    background: linear-gradient(135deg, #080418 0%, #0f0a28 40%, #1a0e3a 70%, #0d0620 100%);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.webp') center/cover no-repeat;
    opacity: 0.4;
}
.hero__particles {
    position: absolute;
    inset: 0;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}
.hero__badge {
    display: inline-block;
    background: rgba(218,165,32,0.15);
    border: 1px solid rgba(218,165,32,0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}
.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-white);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero__title .gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 650px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero__stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}
.stat { text-align: center; }
.stat__num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}
.stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 8px auto 0;
    animation: scrollLine 2s infinite;
}

@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes scrollLine { 0%,100% { opacity:0.3; } 50% { opacity:1; } }

/* INFO BAR */
.info-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}
.info-bar__grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 48px;
    font-size: 0.9rem;
}

/* ABOUT */
.about {
    padding: 80px 0;
    background: var(--bg-deep);
}
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.about__text p {
    margin-bottom: 16px;
    color: var(--text-muted);
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}
.info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { font-weight: 600; width: 40%; }

/* BONUSES */
.bonuses {
    padding: 80px 0;
    background: var(--bg-section);
}
.bonus-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, rgba(218,165,32,0.08), rgba(218,165,32,0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
}
.bonus-hero__tag {
    display: inline-block;
    background: var(--gold);
    color: #0a0520;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.bonus-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    word-break: break-word;
}
.bonus-hero__desc { color: var(--text-muted); margin-bottom: 20px; }
.bonus-hero__list {
    list-style: none;
    margin-bottom: 24px;
}
.bonus-hero__list li {
    padding: 6px 0;
    font-size: 0.95rem;
}
.bonus-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.bonus-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(218,165,32,0.2), rgba(218,165,32,0.05));
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-gold);
    animation: float 4s ease-in-out infinite;
}
.bonus-card__amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
}
.bonus-card__plus {
    font-size: 2rem;
    color: var(--text-muted);
    margin: 8px 0;
}
.bonus-card__spins {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.bonuses__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.bonus-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.bonus-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.bonus-item__icon { font-size: 2.5rem; margin-bottom: 16px; }
.bonus-item__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-white);
}
.bonus-item__desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

/* PROMO CODES */
.promo-codes {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.promo-codes__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    text-align: center;
}
.promo-codes__desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
}
.promo-codes__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.promo-code {
    background: var(--bg-deep);
    border: 1px dashed var(--gold);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}
.promo-code__value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold);
    background: rgba(218,165,32,0.1);
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 8px;
    word-break: break-all;
}
.promo-code__reward {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

/* GAMES */
.games {
    padding: 80px 0;
    background: var(--bg-deep);
}
.games__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.tab {
    padding: 12px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.tab:hover, .tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0520;
    border-color: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeInUp 0.4s ease-out; }
.games__intro {
    max-width: 800px;
    margin: 0 auto 32px;
    text-align: center;
}
.games__intro p { color: var(--text-muted); font-size: 0.95rem; }
.games__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.game-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.game-card img {
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}
.game-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 6px;
}
.game-card__rtp {
    display: block;
    color: var(--accent-green);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.games__cta { text-align: center; margin-top: 40px; }

/* PROVIDERS */
.providers {
    margin-top: 48px;
    overflow: hidden;
}
.providers__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}
.providers__track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.providers__slide {
    display: flex;
    gap: 24px;
    animation: scroll 25s linear infinite;
    width: max-content;
}
.providers__slide img {
    flex-shrink: 0;
    opacity: 0.7;
    transition: var(--transition);
}
.providers__slide img:hover { opacity: 1; }
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ADVANTAGES */
.advantages {
    padding: 80px 0;
    background: var(--bg-section);
}
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.adv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.adv-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.adv-card__icon {
    margin-bottom: 16px;
}
.adv-card__icon img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}
.adv-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-white);
    margin-bottom: 12px;
}
.adv-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* REGISTRATION STEPS */
.registration {
    padding: 80px 0;
    background: var(--bg-deep);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.step {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}
.step:hover { border-color: var(--gold); }
.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0520;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-bottom: 16px;
}
.step h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}
.step p { color: var(--text-muted); font-size: 0.88rem; }
.registration__cta { text-align: center; }

/* SPORTS */
.sports {
    padding: 80px 0;
    background: var(--bg-section);
}
.sports__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}
.sports__text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}
.sports__icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sport-icon {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.sport-icon:hover { border-color: var(--gold); transform: translateY(-4px); }
.sport-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    border-radius: 10px;
}
.sport-icon span {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-white);
}
.sports__bet-types { margin-bottom: 40px; }
.sports__bet-types h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    text-align: center;
}
.bet-types__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.bet-type {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.bet-type strong {
    display: block;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}
.bet-type p { color: var(--text-muted); font-size: 0.9rem; }
.sports__cta { text-align: center; }

/* APP SECTION */
.app-section {
    padding: 80px 0;
    background: var(--bg-deep);
}
.app-section__content {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 48px;
    align-items: center;
}
.app-section__mockup { text-align: center; }
.app-section__mockup img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(218,165,32,0.15));
}
.app-section__info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}
.app-section__info > p {
    color: var(--text-muted);
    margin-bottom: 24px;
}
.app-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.app-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.app-feature__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.app-feature strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 4px;
}
.app-feature p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.app-download {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* PAYMENTS */
.payments {
    padding: 80px 0;
    background: var(--bg-section);
}
.payments__intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}
.payments__intro p { color: var(--text-muted); }
.payments__methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.pay-method {
    text-align: center;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    min-width: 100px;
}
.pay-method:hover { border-color: var(--gold); transform: translateY(-2px); }
.pay-method img {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    border-radius: 8px;
}
.pay-method span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-white);
}
.payments__table-wrap { overflow-x: auto; }
.payments__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}
.payments__table th, .payments__table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.payments__table th {
    background: rgba(218,165,32,0.1);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.payments__table td { color: var(--text-muted); }
.payments__table tr:last-child td { border-bottom: none; }

/* TIPS */
.tips {
    padding: 80px 0;
    background: var(--bg-deep);
}
.tips__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.tip-card:hover { border-color: var(--gold); }
.tip-card__num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(218,165,32,0.2);
    margin-bottom: 8px;
}
.tip-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}
.tip-card p { color: var(--text-muted); font-size: 0.9rem; }

/* SECURITY */
.security {
    padding: 80px 0;
    background: var(--bg-section);
}
.security__text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* REVIEWS */
.reviews {
    padding: 80px 0;
    background: var(--bg-deep);
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.review-card:hover { border-color: var(--gold); }
.review-card__stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}
.review-card__text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}
.review-card__author strong {
    display: block;
    color: var(--text-white);
    font-size: 0.95rem;
}
.review-card__author span {
    color: var(--gold);
    font-size: 0.8rem;
}

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

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-section);
}
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
}
.faq-item__question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-item__question:hover { color: var(--gold); }
.faq-item__arrow {
    transition: var(--transition);
    font-size: 0.75rem;
    color: var(--gold);
}
.faq-item.active .faq-item__arrow { transform: rotate(180deg); }
.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-item__answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FINAL CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(218,165,32,0.1), rgba(218,165,32,0.02));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.final-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}
.final-cta > .container > p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 32px;
}
.final-cta__note {
    margin-top: 24px;
}
.final-cta__note p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* RESPONSIBLE GAMING */
.responsible {
    padding: 60px 0;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
}
.responsible__content {
    max-width: 850px;
    margin: 0 auto;
}
.responsible__content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.92rem;
}

/* FOOTER */
.footer {
    padding: 60px 0 30px;
    background: #050310;
    border-top: 1px solid var(--border);
}
.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer__brand img { height: 36px; width: auto; margin-bottom: 12px; }
.footer__brand p { color: var(--text-muted); font-size: 0.85rem; }
.footer__links h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    font-size: 0.95rem;
}
.footer__links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}
.footer__bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: #0a0520;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,4,24,0.97);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-overlay.active { display: flex; }
.mobile-overlay .nav__link {
    font-size: 1.3rem;
    color: var(--text-white);
}
.mobile-overlay .btn { margin-top: 8px; }

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 1024px) {
    .about__content,
    .sports__content,
    .app-section__content { grid-template-columns: 1fr; }
    .bonuses__grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-hero { grid-template-columns: 1fr; text-align: center; }
    .bonus-hero__list { text-align: left; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .advantages__grid { grid-template-columns: repeat(2, 1fr); }
    .tips__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .promo-codes__grid { grid-template-columns: repeat(2, 1fr); }
    .bet-types__grid { grid-template-columns: 1fr; }
}

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

    .container { padding: 0 16px; }

    .hero { min-height: 100vh; min-height: 100dvh; padding: 100px 0 60px; display: flex; align-items: center; }
    .hero__content { text-align: center; max-width: 100%; }
    .hero__title { font-size: clamp(1.6rem, 7vw, 2.4rem); word-break: break-word; hyphens: auto; margin-bottom: 28px; }
    .hero__desc { margin-left: auto; margin-right: auto; font-size: 0.95rem; padding: 0 4px; margin-bottom: 44px; }
    .hero__badge { font-size: 0.78rem; padding: 6px 16px; margin-bottom: 32px; }
    .hero__cta { justify-content: center; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 56px; }
    .hero__cta .btn { width: 100%; max-width: 320px; }
    .hero__stats { justify-content: center; gap: 20px; flex-wrap: wrap; }
    .hero__scroll { display: none; }

    .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem); padding: 0 4px; }
    .section-subtitle { font-size: 0.9rem; padding: 0 4px; margin-bottom: 32px; }

    .bonuses__grid { grid-template-columns: 1fr; }
    .promo-codes__grid { grid-template-columns: 1fr 1fr; }
    .promo-codes { padding: 24px 16px; }
    .games__grid { grid-template-columns: repeat(2, 1fr); }
    .advantages__grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .tips__grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; text-align: center; }
    .sports__icons { grid-template-columns: repeat(3, 1fr); }

    .app-section__content { grid-template-columns: 1fr; }
    .app-section__mockup { order: -1; }
    .app-download { justify-content: center; flex-direction: column; align-items: stretch; }

    .bonus-hero { padding: 28px 16px; gap: 32px; }
    .bonus-hero__title { font-size: 1.5rem; }
    .bonus-card { padding: 28px 20px; }
    .bonus-card__amount { font-size: 2rem; }
    .bonus-card__spins { font-size: 1.4rem; }

    .info-bar__grid { gap: 8px 20px; font-size: 0.78rem; flex-direction: column; align-items: center; }

    .payments__methods { gap: 10px; }
    .pay-method { min-width: 70px; padding: 12px 10px; }
    .payments__table th, .payments__table td { padding: 10px 12px; font-size: 0.8rem; }

    .info-table td { padding: 10px 12px; font-size: 0.84rem; }

    .about__content { gap: 32px; }

    .reviews__grid { grid-template-columns: 1fr; }
    .bet-types__grid { grid-template-columns: 1fr; }

    .final-cta h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
    .final-cta > .container > p { font-size: 0.9rem; }

    section { padding: 50px 0; }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .container { padding: 0 14px; }

    .header__inner { height: 60px; }
    .logo img { height: 34px; }
    .hero { padding: 80px 0 50px; min-height: 100vh; min-height: 100dvh; }
    .hero__title { font-size: 1.5rem; line-height: 1.25; margin-bottom: 24px; }
    .hero__desc { font-size: 0.88rem; margin-bottom: 36px; }
    .hero__badge { margin-bottom: 28px; }
    .hero__cta { gap: 14px; margin-bottom: 48px; }
    .hero__stats { gap: 12px; }
    .stat__num { font-size: 1.3rem; }
    .stat__label { font-size: 0.7rem; }

    .promo-codes__grid { grid-template-columns: 1fr; }
    .promo-code { padding: 16px; }

    .games__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .game-card { padding: 14px; }
    .game-card img { max-width: 100px; }
    .game-card h4 { font-size: 0.85rem; }
    .games__tabs { gap: 6px; }
    .tab { padding: 8px 14px; font-size: 0.78rem; }

    .sports__icons { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .sport-icon { padding: 16px; }
    .sport-icon img { width: 48px; height: 48px; }

    .bonus-item { padding: 24px 16px; }
    .bonus-item__title { font-size: 0.95rem; }
    .bonus-item__desc { font-size: 0.82rem; }

    .adv-card { padding: 24px 16px; }
    .step { padding: 24px 16px; }
    .tip-card { padding: 24px 16px; }
    .faq-item__question { padding: 16px; font-size: 0.88rem; }
    .faq-item__answer p { padding: 0 16px 16px; font-size: 0.85rem; }

    .app-section__mockup img { max-width: 220px; }
    .app-feature { gap: 12px; }
    .app-feature__icon { font-size: 1.2rem; width: 32px; }

    .btn--lg { padding: 14px 24px; font-size: 0.9rem; white-space: normal; text-align: center; }
    .btn--xl { padding: 16px 28px; font-size: 0.95rem; white-space: normal; text-align: center; }
    .btn--sm { padding: 8px 18px; font-size: 0.8rem; }

    .footer__top { gap: 28px; }
    .footer__brand p { font-size: 0.8rem; }
}
