:root {
  --ink: #101828;
  --muted: #667085;
  --gold: #e2b538;
  --gold-dark: #bd8d11;
  --soft: #fbf7ed;
  --line: #e7e7e7;
  --dark: #070b12;
  --dark-2: #111722;
  --white: #fff;
  --radius: 10px;
  --shadow: 0 12px 30px rgba(16, 24, 40, .09);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6
}

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

a {
  color: #000;
  text-decoration: none
}

button,
input {
  font: inherit
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: auto
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 800
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 18px
}

h1 {
  font-size: clamp(40px, 5.4vw, 74px)
}

h2 {
  font-size: 24px
}

h3 {
  font-size: 22px
}

p {
  margin: 0 0 16px;
 
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer
}

.btn-gold {
  background: var(--gold);
  color: #111
}

.btn-gold:hover {
  background: #f0c94b
}

.btn-dark {
  background: #111;
  color: #fff
}

.btn-outline {
  border-color: #d7aa2e;
  color: #000;
  background: transparent
}

.site-header {
  height: 74px;
  background: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -.04em
}
.brand img{
  width: 190px;
  height: auto;
  margin-bottom: 10px;
}
.brand span {
  color: var(--gold)
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700
}

.nav a:hover {
  color:#000;
}

.header-actions {
  display: flex;
  gap: 12px
}

.menu-btn {
  display: none;
  background: none;
  color: #000;
  border: 0;
  font-size: 28px
}

.hero {
  background: #05080d;
  color: #fff
}

.hero-banner {
  min-height: 470px;
  background-image: linear-gradient(90deg, rgba(4, 7, 11, .93) 0%, rgba(4, 7, 11, .58) 38%, rgba(4, 7, 11, .08) 70%), url('https://images.unsplash.com/photo-1606176952548-e3462891db78?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center
}

.hero-copy {
  max-width: 580px;
  padding: 64px 0
}

.hero-copy .offer-kicker {
  font-size: 26px;
  font-weight: 900;
  margin: 0
}

.hero-copy h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin: 5px 0
}

.hero-copy h1 strong {
  color: var(--gold)
}

.hero-copy .terms {
  font-size: 16px;
  max-width: 440px;
  color: #d4d7dc;
  margin-top: 18px
}

.hero-arrows {
  position: absolute;
  inset: 50% 22px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none
}

.hero-arrow {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 24px
}

.hero-wrap {
  position: relative
}

.league-strip {
  background: #fff;
  padding: 25px 0;
  border-bottom: 1px solid var(--line)
}

.leagues {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center
}

.league-mark {
  font-size: 28px;
  font-weight: 900;
  color: #111
}

.league-mark small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px
}

.section {
  padding: 26px 0
}

.section-title {
  text-align: center;
  margin-bottom: 34px
}

.section-title p {
  max-width: 660px;
  margin: auto
}



.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.media-card img {
  width: 100%;
  height: 390px;
  object-fit: cover
}

.info-panel {
  background: var(--soft);
  padding: 42px;
  border-radius: var(--radius)
}

.checks {
  list-style: none;
  padding: 0;
  margin: 22px 0
}

.checks li {
  position: relative;
  padding-left: 26px;
  margin: 12px 0;
  color: #475467
}

.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 900
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px
}

.photo-collage img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 8px
}

.photo-collage img:first-child {
  height: 382px;
  grid-row: span 2
}

.bonus-area {
  background: #fcfcfd
}

.bonus-list {
  display: grid;
  gap: 15px
}

.bonus-item {
  background: var(--soft);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(16, 24, 40, .04)
}

.bonus-item strong {
  display: block;
  margin-bottom: 4px
}

.cta {
  margin: 0 auto 60px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 48px 30px
}

.cta p {
  color: #d0d5dd
}

.responsible {
  background: #f7f7f8;
  border-top: 1px solid var(--line);
  padding: 40px 0
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px
}

.notice {
  font-size: 14px;
  color: #475467
}

.site-footer {
  background: #fff;
  color: #000;
  padding: 52px 0 0
}

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

.footer-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #000;
  margin-bottom: 15px
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
  color: #b9c0cc
}

.footer-links a:hover {
  color: var(--gold)
}

.footer-brand p {
  color: #000;
  max-width: 330px;
  font-size: 14px
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin-top: 40px;
  padding: 24px 0;
  color: #1a1a1a;
  font-size: 13px
}

.footer-badges {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 22px
}

.badge {
  border: 1px solid #000;
  padding: 7px 11px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px
}

.badge-age {
  border-color: #e04b4b;
  color: #ff7b7b;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center
}

.legal-hero {
  padding: 72px 0;
  background: #111722;
  color: #fff
}

.legal-main {
  padding: 62px 0
}



.legal-wrap h2 {
  font-size: 26px;
  margin-top: 35px
}

.legal-wrap ul {
  color: var(--muted)
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 10, .82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px
}

.age-gate.show {
  display: flex
}

.age-box {
  background: #fff;
  width: min(470px, 100%);
  padding: 36px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3)
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px
}

@media(max-width:900px) {

  .nav,
  .header-actions {
    display: none
  }

  .menu-btn {
    display: block
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px 20px;
    flex-direction: column;
    align-items: flex-start
  }

  .hero-banner {
    min-height: 520px;
    background-position: 64% center
  }

  .hero-copy {
    max-width: 500px
  }

  .offer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .split {
    grid-template-columns: 1fr
  }

  .responsible-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 28px, 1140px)
  }

  .section {
    padding: 56px 0
  }

  .hero-banner {
    min-height: 380px;
    background-position: 70% center
  }

  .hero-banner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25)
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 70px
  }

  .hero-copy h1 {
    font-size: 48px
  }

  .hero-copy .offer-kicker {
    font-size: 20px
  }

  .leagues {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px
  }

  .league-mark {
    font-size: 20px
  }

  .offer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px
  }

  .offer-card a {
    font-size: 14px;
    min-height: 130px
  }

  .info-panel {
    padding: 28px
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr
  }

  .photo-collage img,
  .photo-collage img:first-child {
    height: 170px;
    grid-row: auto
  }

  .responsible-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .age-actions {
    flex-direction: column
  }
}

/* ===================================
   MEGAWAYS GAME GRID
=================================== */


#offers .section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

#offers .section-title h2 {
    margin: 0 0 12px;
    color: #000;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
}

#offers .section-title p {
    margin: 0;
    color: 475467;
    font-size: 16px;
    line-height: 1.7;
}

/* 6 cards per row */
#offers .offer-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

/* Card */
#offers .offer-card {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid #344258;
    border-radius: 26px;
    background: #081120;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Game image */
#offers .offer-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
    opacity: 0.86;
    transition:
        transform 0.45s ease,
        opacity 0.3s ease;
}

/* Bottom overlay */
#offers .offer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(3, 8, 23, 0.03) 20%,
        rgba(3, 8, 23, 0.28) 48%,
        rgba(3, 8, 23, 0.95) 100%
    );
    pointer-events: none;
}

/* Text wrapper */
#offers .offer-card-content {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 28px;
    z-index: 2;
    text-align: center;
}

/* Game heading */
#offers .offer-card-content h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.12;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Play Now link */
#offers .offer-card-content a {
    display: inline-block;
    padding: 0;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 500;
    text-decoration: none;
    text-shadow: 0 2px 7px rgba(0, 0, 0, 0.9);
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

#offers .offer-card-content a:hover {
    color: #e1b536;
    transform: translateY(-2px);
}

/* Hover */
#offers .offer-card:hover {
    transform: translateY(-6px);
    border-color: #d3a72e;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.32);
}

#offers .offer-card:hover > img {
    transform: scale(1.07);
    opacity: 1;
}

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

@media (max-width: 1300px) {
    #offers .offer-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    #offers .offer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #offers .offer-card {
        min-height: 300px;
    }
}

@media (max-width: 700px) {
    #offers {
        padding: 60px 0;
    }

    #offers .section-title h2 {
        font-size: 28px;
    }

    #offers .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    #offers .offer-card {
        min-height: 260px;
        border-radius: 18px;
    }

    #offers .offer-card-content {
        left: 10px;
        right: 10px;
        bottom: 20px;
    }

    #offers .offer-card-content h3 {
        font-size: 15px;
        line-height: 1.12;
        margin-bottom: 8px;
    }

    #offers .offer-card-content a {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    #offers .offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    #offers .offer-card {
        min-height: 220px;
        border-radius: 15px;
    }

    #offers .offer-card-content h3 {
        font-size: 13px;
    }

    #offers .offer-card-content a {
        font-size: 14px;
    }
}