/* ============================================================
   OLYMPE CASINO — assets/styles.css
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  font-size: 16px;
}

body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  background: #1a2537;
  color: #e8e0cc;
  line-height: 1.7;
  min-height: 100vh;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS VARIABLES ---------------------------------------- */
:root {
  --gold:      #F0D172;
  --gold-dark: #c9a83e;
  --gold-light:#f7e8a8;
  --navy:      #1a2537;
  --navy-mid:  #213047;
  --navy-light:#2d4060;
  --navy-card: #243350;
  --accent:    #31425E;
  --text:      #e8e0cc;
  --text-muted:#a89e84;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
  --shadow-gold: 0 0 24px rgba(240,209,114,.25);
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --container: 1200px;
  --gutter:    clamp(16px, 4vw, 40px);
}

/* ---- TYPOGRAPHY ------------------------------------------ */
h1,h2,h3,h4,h5 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.highlight {
  color: var(--gold);
  position: relative;
}

/* ---- CONTAINER ------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(240,209,114,.45), 0 2px 6px rgba(0,0,0,.3);
  border: 2px solid var(--gold-light);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(240,209,114,.65), 0 4px 12px rgba(0,0,0,.35);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn--primary:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 2px 10px rgba(240,209,114,.3);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 2px 10px rgba(240,209,114,.15);
}
.btn--ghost:hover {
  background: rgba(240,209,114,.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240,209,114,.25);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--hero {
  min-width: 200px;
  font-size: 1.1rem;
  padding: 15px 36px;
  min-height: 54px;
}

.btn--xl {
  font-size: 1.1rem;
  padding: 16px 40px;
  min-height: 56px;
}

/* ---- SECTION BASE ---------------------------------------- */
.section {
  padding: clamp(48px, 8vw, 100px) 0;
}

.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.section__title--left { text-align: left; }

.section__subtitle {
  text-align: center;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  overflow-wrap: anywhere;
}

.section__text {
  color: var(--text);
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---- MEDIA CARD ------------------------------------------ */
.media-card {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(240,209,114,.2);
  box-shadow: var(--shadow), var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition);
  max-height: 460px;
}
.media-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 40px rgba(240,209,114,.35);
}
.media-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 460px;
  display: block;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(26,37,55,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,209,114,.18);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.header__container {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  min-height: 68px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.header__logo-link { flex-shrink: 0; }

.header__logo {
  height: clamp(36px, 5vw, 48px);
  width: auto;
  object-fit: contain;
  max-width: 160px;
}

.header__nav { flex: 1; overflow: hidden; }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  white-space: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0;
}
.header__nav-list::-webkit-scrollbar { display: none; }

.header__nav-link {
  font-size: clamp(.82rem, 1.2vw, .95rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
  padding: 4px 0;
}
.header__nav-link:hover { color: var(--gold); }

.header__cta { flex-shrink: 0; font-size: .88rem; padding: 10px 20px; min-height: 40px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(480px, 80vh, 820px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__banner-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,37,55,.35) 0%,
    rgba(26,37,55,.65) 40%,
    rgba(26,37,55,.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: clamp(100px, 15vw, 180px) var(--gutter) clamp(60px, 8vw, 100px);
  flex: 1;
}

.hero__badge {
  display: inline-block;
  background: rgba(240,209,114,.15);
  border: 1px solid rgba(240,209,114,.4);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.hero__bonus {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(240,209,114,.7), 0 2px 10px rgba(0,0,0,.5);
  line-height: 1.1;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.hero__wagering {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .9;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages { background: var(--navy-mid); }

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.advantages__card {
  background: var(--navy-card);
  border: 1px solid rgba(240,209,114,.1);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 36px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.advantages__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 24px rgba(240,209,114,.12);
  border-color: rgba(240,209,114,.3);
}

.advantages__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.advantages__card-title {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.advantages__card p {
  font-size: .93rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses { background: var(--navy); }

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
}

.bonuses__card {
  background: var(--navy-card);
  border: 1px solid rgba(240,209,114,.1);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.bonuses__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}

.bonuses__card--featured {
  border-color: rgba(240,209,114,.4);
  background: linear-gradient(145deg, #2d3f5a 0%, var(--navy-card) 100%);
  box-shadow: 0 0 30px rgba(240,209,114,.15);
}

.bonuses__card-badge {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,209,114,.1);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
}

.bonuses__img-wrap {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(240,209,114,.2);
  max-height: 200px;
}
.bonuses__img-wrap:hover .bonuses__img { transform: scale(1.04); }
.bonuses__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.bonuses__card-title {
  font-size: 1.05rem;
  color: var(--white);
  font-family: 'Cinzel', serif;
}

.bonuses__amount {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--gold);
  overflow-wrap: anywhere;
}

.bonuses__detail {
  font-size: .88rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

/* ============================================================
   HOW TO START
   ============================================================ */
.howto { background: var(--navy-mid); }

.howto__steps {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2.5vw, 24px);
  margin-bottom: 48px;
}

.howto__step {
  flex: 1;
  min-width: 0;
  background: var(--navy-card);
  border: 1px solid rgba(240,209,114,.1);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  transition: transform var(--transition), box-shadow var(--transition);
}
.howto__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35), 0 0 20px rgba(240,209,114,.1);
}

.howto__step-num {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240,209,114,.2);
  line-height: 1;
  margin-bottom: 12px;
}

.howto__step-title {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.howto__step p {
  font-size: .92rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.howto__step-arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: .4;
  flex-shrink: 0;
  padding-top: 36px;
  font-weight: 900;
}

.howto__cta {
  text-align: center;
}

/* ============================================================
   SPORT
   ============================================================ */
.sport { background: var(--navy); }

.sport__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.sport__list {
  margin: 18px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sport__list li {
  font-size: .95rem;
  color: var(--text);
  padding: 8px 14px;
  background: rgba(240,209,114,.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow-wrap: anywhere;
}

/* ============================================================
   CASINO SECTION
   ============================================================ */
.casino-section { background: var(--navy-mid); }

.casino-section__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.casino-section__cats {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 22px 0 28px;
}

.casino-section__cat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(240,209,114,.04);
  border: 1px solid rgba(240,209,114,.1);
  border-radius: var(--radius);
  min-width: 0;
}

.casino-section__cat-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1.3; }

.casino-section__cat strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.casino-section__cat p {
  font-size: .88rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-section { background: var(--navy); }

.mobile-section__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(16px, 2.5vw, 28px);
  margin-bottom: 40px;
}

.mobile-section__item {
  background: var(--navy-card);
  border: 1px solid rgba(240,209,114,.1);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 30px);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.mobile-section__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.mobile-section__icon { font-size: 2rem; margin-bottom: 12px; }

.mobile-section__item h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: 'Cinzel', serif;
  overflow-wrap: anywhere;
}

.mobile-section__item p {
  font-size: .9rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.mobile-section__cta { text-align: center; }

/* ============================================================
   PAYMENTS
   ============================================================ */
.payments { background: var(--navy-mid); }

.payments__table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240,209,114,.12);
  margin-bottom: 20px;
}

.payments__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 480px;
}

.payments__table th, .payments__table td {
  padding: clamp(10px, 2vw, 16px) clamp(10px, 2vw, 18px);
  text-align: left;
  font-size: clamp(.78rem, 1.3vw, .93rem);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  border-bottom: 1px solid rgba(240,209,114,.07);
}

.payments__table th {
  background: rgba(240,209,114,.08);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: clamp(.72rem, 1.2vw, .85rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.payments__table tbody tr {
  transition: background var(--transition);
}
.payments__table tbody tr:hover { background: rgba(240,209,114,.04); }

.payments__table td:first-child { font-weight: 600; color: var(--text); }
.payments__table td { color: var(--text-muted); }

.payments__note {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  overflow-wrap: anywhere;
}

.payments__cta { text-align: center; }

/* ============================================================
   SUPPORT
   ============================================================ */
.support { background: var(--navy); }

.support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.support__card {
  background: var(--navy-card);
  border: 1px solid rgba(240,209,114,.1);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.support__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
}

.support__icon { font-size: 2.2rem; }

.support__card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--gold);
  overflow-wrap: anywhere;
}

.support__card p {
  font-size: .9rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
  flex: 1;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--navy-mid); }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq__item {
  background: var(--navy-card);
  border: 1px solid rgba(240,209,114,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.is-open { border-color: rgba(240,209,114,.35); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  text-align: left;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: clamp(.9rem, 1.5vw, 1rem);
  color: var(--text);
  background: none;
  cursor: pointer;
  transition: color var(--transition);
  overflow-wrap: anywhere;
}
.faq__question:hover { color: var(--gold); }

.faq__chevron {
  flex-shrink: 0;
  font-size: .75rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }

.faq__answer {
  padding: 0 22px 18px;
}
.faq__answer p {
  font-size: .93rem;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { background: var(--navy); }

.final-cta__box {
  background: linear-gradient(135deg, #2d4060 0%, var(--navy-card) 100%);
  border: 2px solid rgba(240,209,114,.3);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 64px) clamp(24px, 5vw, 60px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 0 60px rgba(240,209,114,.1), var(--shadow);
}

.final-cta__img-wrap {
  display: block;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(240,209,114,.25);
  box-shadow: var(--shadow);
  max-height: 280px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.final-cta__img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 40px rgba(240,209,114,.3);
}
.final-cta__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.final-cta__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
}

.final-cta__bonus {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--gold);
  overflow-wrap: anywhere;
}

.final-cta__text {
  max-width: 640px;
  color: var(--text-muted);
  font-size: .97rem;
  overflow-wrap: anywhere;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-card); }

.footer__top {
  border-bottom: 1px solid rgba(240,209,114,.1);
  padding: clamp(28px, 4vw, 48px) 0;
}

.footer__top-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}

.footer__logo-link { flex-shrink: 0; }
.footer__logo {
  height: clamp(36px, 5vw, 54px);
  width: auto;
  object-fit: contain;
  max-width: 180px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 22px);
}
.footer__nav a {
  font-size: clamp(.78rem, 1.2vw, .88rem);
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  overflow-wrap: anywhere;
}
.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  padding: clamp(24px, 3vw, 36px) 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__legal {
  font-size: clamp(.75rem, 1.2vw, .85rem);
  color: var(--text-muted);
  max-width: 900px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer__copy {
  font-size: .8rem;
  color: rgba(168,158,132,.5);
  overflow-wrap: anywhere;
}

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

.footer__badge {
  background: rgba(240,209,114,.07);
  border: 1px solid rgba(240,209,114,.15);
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================================================
   EXIT POPUP
   ============================================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup.is-active { display: flex; }

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,16,26,.85);
  backdrop-filter: blur(6px);
}

.exit-popup__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #2d4060 0%, var(--navy-card) 100%);
  border: 2px solid rgba(240,209,114,.4);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 44px);
  max-width: 520px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 60px rgba(240,209,114,.12);
  animation: popIn .3s cubic-bezier(.34,1.56,.64,1) forwards;
}

@keyframes popIn {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.exit-popup__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(240,209,114,.1);
  color: var(--gold);
  font-size: 1.3rem;
  transition: background var(--transition), transform var(--transition);
}
.exit-popup__close:hover { background: rgba(240,209,114,.25); transform: scale(1.1); }

.exit-popup__badge {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(240,209,114,.1);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(240,209,114,.3);
}

.exit-popup__img-wrap {
  display: block;
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(240,209,114,.2);
}
.exit-popup__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.exit-popup__title {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--white);
  overflow-wrap: anywhere;
}

.exit-popup__bonus {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 900;
  color: var(--gold);
  overflow-wrap: anywhere;
}

.exit-popup__wagering {
  display: inline-block;
  background: rgba(240,209,114,.12);
  border: 1px solid rgba(240,209,114,.3);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: .8rem;
}

.exit-popup__btn { width: 100%; }

/* ============================================================
   CATFISH
   ============================================================ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, #1a2537 0%, #243350 50%, #1a2537 100%);
  border-top: 2px solid rgba(240,209,114,.35);
  box-shadow: 0 -4px 30px rgba(0,0,0,.5);
  padding: 10px var(--gutter);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.catfish.is-visible { transform: translateY(0); }
.catfish.is-hidden { display: none; }

.catfish__inner {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 20px);
  max-width: calc(var(--container) - 2 * var(--gutter));
  margin: 0 auto;
  flex-wrap: nowrap;
}

.catfish__text {
  flex: 1;
  min-width: 0;
  font-size: clamp(.78rem, 1.5vw, 1rem);
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.catfish__btn {
  flex-shrink: 0;
  font-size: clamp(.78rem, 1.3vw, .9rem);
  padding: 10px 20px;
  min-height: 42px;
  white-space: nowrap;
}

.catfish__close {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(240,209,114,.1);
  color: var(--gold);
  font-size: 1.2rem;
  transition: background var(--transition);
}
.catfish__close:hover { background: rgba(240,209,114,.22); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .advantages__grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .sport__grid,
  .casino-section__grid {
    grid-template-columns: minmax(0,1fr);
    gap: 32px;
  }

  .casino-section__media { order: -1; }

  .howto__steps {
    flex-direction: column;
    gap: 12px;
  }
  .howto__step-arrow { display: none; }

  .support__grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .header__nav { display: none; }
  .header__nav.is-open {
    display: block;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(26,37,55,.99);
    border-bottom: 1px solid rgba(240,209,114,.18);
    padding: 20px var(--gutter) 28px;
    z-index: 850;
    box-shadow: 0 8px 30px rgba(0,0,0,.5);
    animation: slideDown .25s ease forwards;
  }
  @keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }
  .header__nav.is-open .header__nav-list {
    flex-direction: column;
    gap: 0;
    overflow: visible;
    white-space: normal;
  }
  .header__nav.is-open .header__nav-link {
    display: block;
    padding: 13px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(240,209,114,.08);
  }
  .header__cta { display: none; }
  .header__burger { display: flex; }

  .advantages__grid {
    grid-template-columns: minmax(0,1fr);
  }

  .bonuses__grid {
    grid-template-columns: minmax(0,1fr);
  }

  .mobile-section__grid {
    grid-template-columns: minmax(0,1fr);
  }

  .support__grid {
    grid-template-columns: minmax(0,1fr);
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero__ctas .btn { width: 100%; }

  .final-cta__buttons {
    flex-direction: column;
    width: 100%;
  }
  .final-cta__buttons .btn { width: 100%; }

  .section { padding: 40px 0; }

  .catfish__text {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .footer__top-inner { flex-direction: column; align-items: flex-start; }

  .payments__table {
    font-size: .78rem;
  }
}

@media (max-width: 380px) {
  .hero__bonus { font-size: 1.8rem; }
  .hero__title { font-size: 2rem; }
  .btn--hero, .btn--xl { font-size: .9rem; padding: 12px 18px; }
}
/* ============================================================
   OLYMPE CASINO — Context / Wagering / FR Regulation Block
   Namespace: olympecasino-context__
   Page palette: #1a2537 (navy bg), #243350 (card), #F0D172 (gold),
                 #c9a83e (gold-dark), #e8e0cc (text), #a89e84 (muted)
   ============================================================ */

.olympecasino-context__section {
  background: #213047; /* navy-mid to differentiate from neighbours */
  padding: 3.5rem 0;
  color: #e8e0cc;
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
}

.olympecasino-context__container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ---- Headings ---- */
.olympecasino-context__title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 1.25rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.olympecasino-context__h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #F0D172;
  margin: 0 0 0.85rem;
  line-height: 1.35;
  border-left: 3px solid #F0D172;
  padding-left: 0.85rem;
}

.olympecasino-context__h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f7e8a8;
  margin: 1.1rem 0 0.55rem;
  letter-spacing: 0.02em;
}

/* ---- Lead block ---- */
.olympecasino-context__lead {
  background: #243350;
  border: 1px solid rgba(240, 209, 114, 0.18);
  border-left: 3px solid #F0D172;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 0 auto 2rem;
  max-width: 56rem;
}

.olympecasino-context__lead p {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #e8e0cc;
  margin: 0;
}

/* ---- Articles ---- */
.olympecasino-context__article {
  background: #243350;
  border: 1px solid rgba(240, 209, 114, 0.1);
  border-radius: 0.875rem;
  padding: 1.6rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.olympecasino-context__article:hover {
  border-color: rgba(240, 209, 114, 0.28);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.olympecasino-context__article p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: #e8e0cc;
  margin: 0 0 0.85rem;
}

.olympecasino-context__article p:last-child { margin-bottom: 0; }

.olympecasino-context__article strong {
  color: #ffffff;
  font-weight: 700;
}

.olympecasino-context__article em {
  color: #F0D172;
  font-style: italic;
}

/* ---- Lists ---- */
.olympecasino-context__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.85rem;
  counter-reset: olc-counter;
}

.olympecasino-context__list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.7rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: #e8e0cc;
  border-bottom: 1px dashed rgba(240, 209, 114, 0.1);
}

.olympecasino-context__list li:last-child {
  border-bottom: none;
}

.olympecasino-context__list li::before {
  content: "❖";
  position: absolute;
  left: 0.2rem;
  top: 0.65rem;
  color: #F0D172;
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1;
}

.olympecasino-context__list--ordered {
  counter-reset: olc-counter;
}

.olympecasino-context__list--ordered li {
  padding-left: 2.5rem;
  counter-increment: olc-counter;
}

.olympecasino-context__list--ordered li::before {
  content: counter(olc-counter);
  left: 0;
  top: 0.55rem;
  width: 1.6rem;
  height: 1.6rem;
  background: linear-gradient(135deg, #F0D172 0%, #c9a83e 100%);
  color: #1a2537;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(240, 209, 114, 0.35);
}

/* ---- Table ---- */
.olympecasino-context__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.85rem 0 1rem;
  background: #1a2537;
  border: 1px solid rgba(240, 209, 114, 0.18);
  border-radius: 0.5rem;
  overflow: hidden;
  font-size: 0.9rem;
}

.olympecasino-context__table thead {
  background: rgba(240, 209, 114, 0.1);
}

.olympecasino-context__table thead th {
  padding: 0.8rem 0.85rem;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #F0D172;
  text-align: left;
  border-bottom: 1px solid rgba(240, 209, 114, 0.2);
}

.olympecasino-context__table tbody td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(240, 209, 114, 0.07);
  vertical-align: top;
  line-height: 1.6;
  color: #e8e0cc;
}

.olympecasino-context__table tbody tr:nth-child(even) td {
  background: rgba(240, 209, 114, 0.03);
}

.olympecasino-context__table tbody tr:last-child td {
  border-bottom: none;
}

.olympecasino-context__table td:first-child {
  font-weight: 700;
  color: #F0D172;
  width: 24%;
}

/* ---- Aside ---- */
.olympecasino-context__aside {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(240, 209, 114, 0.1) 0%, rgba(240, 209, 114, 0.03) 100%);
  border-left: 3px solid #F0D172;
  border-radius: 0 0.5rem 0.5rem 0;
}

.olympecasino-context__aside .olympecasino-context__h4 {
  margin-top: 0;
  color: #F0D172;
}

.olympecasino-context__aside p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---- Final CTA-style article ---- */
.olympecasino-context__article--cta {
  background: linear-gradient(135deg, #2d4060 0%, #243350 100%);
  border: 2px solid rgba(240, 209, 114, 0.3);
  text-align: center;
}

.olympecasino-context__article--cta .olympecasino-context__h3 {
  border-left: none;
  padding-left: 0;
  text-align: center;
  color: #F0D172;
}

.olympecasino-context__cta-line {
  margin-top: 0.85rem !important;
  font-size: 0.88rem;
  color: #F0D172;
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE — Tablet (≤900px)
   ============================================================ */
@media (max-width: 56.25em) {
  .olympecasino-context__section { padding: 3rem 0; }
  .olympecasino-context__article { padding: 1.35rem 1.25rem; }
  .olympecasino-context__lead { padding: 1.25rem; }
  .olympecasino-context__table { font-size: 0.85rem; }
  .olympecasino-context__table thead th,
  .olympecasino-context__table tbody td { padding: 0.6rem 0.6rem; }
  .olympecasino-context__table td:first-child { width: 28%; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤640px)
   ============================================================ */
@media (max-width: 40em) {
  .olympecasino-context__section { padding: 2.5rem 0; }
  .olympecasino-context__container { padding: 0 0.85rem; }

  .olympecasino-context__title { font-size: 1.3rem; line-height: 1.35; }
  .olympecasino-context__h3 {
    font-size: 1.05rem;
    border-left-width: 3px;
    padding-left: 0.65rem;
  }
  .olympecasino-context__h4 { font-size: 0.9rem; }

  .olympecasino-context__lead { padding: 1rem; margin-bottom: 1.5rem; }
  .olympecasino-context__lead p { font-size: 0.9rem; line-height: 1.75; }

  .olympecasino-context__article { padding: 1.05rem 0.9rem; margin-bottom: 1rem; }
  .olympecasino-context__article p { font-size: 0.9rem; }

  .olympecasino-context__list li,
  .olympecasino-context__list--ordered li { font-size: 0.9rem; }

  /* Card-style table on mobile */
  .olympecasino-context__table {
    border: none;
    background: transparent;
    border-radius: 0;
  }
  .olympecasino-context__table thead { display: none; }
  .olympecasino-context__table tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    background: #1a2537;
    border: 1px solid rgba(240, 209, 114, 0.18);
    border-left: 3px solid #F0D172;
    border-radius: 0.5rem;
    padding: 0.65rem 0.9rem;
  }
  .olympecasino-context__table tbody tr:nth-child(even) td {
    background: transparent;
  }
  .olympecasino-context__table tbody td {
    display: block;
    border-bottom: 1px dashed rgba(240, 209, 114, 0.12);
    padding: 0.5rem 0;
    font-size: 0.88rem;
    width: 100% !important;
  }
  .olympecasino-context__table tbody td:last-child { border-bottom: none; }
  .olympecasino-context__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    color: #F0D172;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
    font-weight: 700;
  }

  .olympecasino-context__aside { padding: 0.85rem 1rem; }
}

/* ============================================================
   RESPONSIVE — Very small (≤380px)
   ============================================================ */
@media (max-width: 23.75em) {
  .olympecasino-context__title { font-size: 1.15rem; }
  .olympecasino-context__h3 { font-size: 0.98rem; }
  .olympecasino-context__article { padding: 0.9rem 0.8rem; }
  .olympecasino-context__list--ordered li { padding-left: 2.15rem; }
  .olympecasino-context__list--ordered li::before { width: 1.4rem; height: 1.4rem; font-size: 0.72rem; }
}