:root {
  --green: #00653b;
  --green-dark: #004229;
  --green-soft: #0b7d3e;
  --lime: #bed62f;
  --cyan: #00cac7;
  --yellow: #ffc300;
  --ink: #1f2726;
  --muted: #63706b;
  --line: #dfe7e2;
  --paper: #ffffff;
  --wash: #f2f6f1;
  --deep: #18252a;
  --shadow: 0 14px 35px rgba(7, 37, 28, .11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: #182100;
}

.btn-secondary {
  background: var(--green);
  color: #fff;
}

.btn-ghost {
  background: #fff;
  border-color: var(--green);
  color: var(--green);
}

.btn-light {
  background: #fff;
  color: var(--green);
}

.responsible-strip {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 32px;
  background: #f6f6f6;
  color: #5d6360;
  font-size: 12px;
}

.responsible-strip p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.responsible-strip a {
  text-decoration: underline;
}

.legal-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.legal-icons img {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  max-width: 1280px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon-button {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-button img {
  width: 26px;
}

.brand img {
  width: 72px;
  height: auto;
}

.primary-nav,
.utility-nav,
.auth-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a,
.utility-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #2f3c39;
  font-weight: 700;
  font-size: 14px;
}

.primary-nav a:hover,
.utility-nav a:hover {
  background: #edf5ef;
  color: var(--green);
}

.utility-nav {
  gap: 2px;
}

.utility-nav a {
  color: var(--green);
}

.auth-actions {
  justify-content: flex-end;
}

.mobile-menu {
  display: none;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-menu a {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-weight: 700;
}

.hero-stage {
  background: linear-gradient(180deg, #e9f3eb 0%, #f2f6f1 100%);
  padding: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, .9fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.lead-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.lead-hero > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.lead-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(520px, calc(100% - 56px));
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #172000;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-copy h1,
.mini-hero h2,
.section-heading h2,
.quick-links h2 {
  font-family: Muli, Mulish, Roboto, sans-serif;
  letter-spacing: 0;
}

.lead-copy h1 {
  margin: 12px 0 8px;
  font-size: 40px;
  line-height: 1.05;
}

.lead-copy p {
  max-width: 440px;
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 700;
}

.hero-stack {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mini-hero {
  display: none;
  min-height: 430px;
  grid-template-rows: 1fr auto;
  background: var(--deep);
  color: #fff;
}

.mini-hero.is-active {
  display: grid;
}

.mini-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.mini-hero div {
  padding: 20px;
}

.mini-hero h2 {
  margin: 10px 0;
  font-size: 26px;
  line-height: 1.1;
}

.mini-hero p {
  margin: 0 0 14px;
  color: #eaf2f1;
}

.carousel-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--lime);
}

.content-band {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-heading h2,
.quick-links h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.section-heading a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
}

.bonus-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.bonus-row::-webkit-scrollbar,
.game-grid::-webkit-scrollbar {
  display: none;
}

.bonus-card,
.bet-card,
.game-card,
.promo-card,
.app-card,
.news-card,
.editorial-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.bonus-card {
  min-height: 198px;
  padding: 14px;
}

.bonus-card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 12px;
}

.bonus-card span,
.app-card span,
.promo-card span,
.news-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bonus-card h3,
.promo-card h3,
.app-card h3,
.news-card h3 {
  margin: 6px 0;
  font-size: 17px;
  line-height: 1.2;
}

.bonus-card p,
.promo-card p,
.app-card p {
  margin: 0;
  color: var(--muted);
}

.feature-area {
  display: grid;
  gap: 20px;
}

.quick-links {
  display: grid;
  grid-template-columns: 190px repeat(6, minmax(120px, 1fr));
  align-items: stretch;
  gap: 10px;
}

.quick-links h2 {
  align-self: center;
}

.quick-links a {
  display: grid;
  min-height: 92px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #cfded6;
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.quick-links img {
  height: 36px;
  width: 52px;
  object-fit: contain;
}

.bets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.bet-card {
  display: grid;
  min-height: 190px;
  padding: 12px;
  gap: 8px;
  position: relative;
}

.teams {
  display: grid;
  gap: 5px;
  font-weight: 900;
}

.teams span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.teams img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.bet-card time,
.bet-card p {
  color: var(--muted);
  font-size: 13px;
}

.bet-card p {
  margin: 0;
}

.bet-card strong {
  font-size: 14px;
}

.bet-card b {
  justify-self: end;
  align-self: end;
  min-width: 58px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--lime);
  color: #172000;
  text-align: center;
}

.games-band,
.promo-band,
.news-section {
  background: transparent;
}

.game-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 190px;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.game-card {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  padding: 12px;
  color: #fff;
  background: var(--green-dark);
}

.game-card img {
  width: 100%;
  height: 122px;
  object-fit: contain;
}

.game-card span {
  display: block;
  margin-top: 10px;
  font-weight: 900;
}

.game-card small {
  color: #d9eee3;
}

.game-card em {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--lime);
  color: #1c2500;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.promo-card {
  overflow: hidden;
  color: var(--ink);
}

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

.promo-card span,
.promo-card h3,
.promo-card p {
  display: block;
  margin-left: 14px;
  margin-right: 14px;
}

.promo-card span {
  margin-top: 14px;
}

.promo-card p {
  margin-bottom: 16px;
}

.wide-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.wide-banner {
  display: grid;
  grid-template-columns: minmax(160px, .9fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  min-height: 210px;
}

.wide-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-banner div {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
}

.wide-banner h3,
.wide-banner p {
  margin: 0;
}

.wide-banner h3 {
  font-size: 24px;
  line-height: 1.15;
}

.spotlight-banners {
  display: grid;
  gap: 14px;
}

.wheel-strip,
.slots-strip {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
}

.wheel-strip .strip-bg,
.slots-strip > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wheel-strip .strip-logo {
  position: absolute;
  top: 18px;
  right: 24px;
  width: min(340px, 42%);
  height: auto;
}

.wheel-strip div,
.slots-strip div {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  padding: 28px;
}

.wheel-strip h2,
.slots-strip h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
}

.wheel-strip p {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.slots-strip div {
  margin-left: auto;
  text-align: right;
}

.slots-strip .btn {
  margin-left: 8px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.app-card {
  padding: 16px;
  min-height: 205px;
}

.app-card img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 12px;
}

.responsible-layout {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
}

.responsible-art {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}

.responsible-copy {
  display: grid;
  align-content: center;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.responsible-copy h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.responsible-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.responsible-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.responsible-links a {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--green-dark);
  font-weight: 900;
}

.responsible-links img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.responsible-links span {
  color: var(--green);
  text-decoration: underline;
}

.feedback-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 18px 22px;
  border-radius: 8px;
  background: var(--deep);
  color: #fff;
}

.feedback-bar h3 {
  margin: 0;
  font-size: 22px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.news-card {
  overflow: hidden;
}

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

.news-card time,
.news-card span,
.news-card h3 {
  display: block;
  margin-left: 16px;
  margin-right: 16px;
}

.news-card time {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.news-card h3 {
  margin-bottom: 10px;
}

.news-card span {
  margin-bottom: 16px;
}

.editorial-section {
  padding-bottom: 44px;
}

.editorial-intro {
  max-width: 760px;
  margin-bottom: 16px;
}

.editorial-intro h1 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.15;
}

.editorial-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.editorial-grid article {
  padding: 18px;
}

.editorial-grid h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.editorial-grid p {
  margin: 0;
  color: #4c5854;
  font-size: 14px;
}

.schema-rating {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #cfded6;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.schema-rating span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.schema-rating strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.schema-rating p {
  margin: 0;
  color: #4c5854;
  font-size: 14px;
}

.schema-faq {
  margin-top: 16px;
}

.schema-faq h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.schema-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.schema-faq-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.schema-faq-grid p {
  margin: 0;
  color: #4c5854;
  font-size: 14px;
}

.schema-faq-grid .faq-question {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 900;
}

.site-footer {
  background: #213034;
  color: #fff;
}

.support-footer,
.contact-footer,
.footer-links,
.awards,
.footer-legal {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.support-footer,
.contact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.support-footer h2,
.contact-footer h2 {
  margin: 0 0 4px;
}

.support-footer p,
.contact-footer p {
  margin: 0;
  color: #c7d1ce;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-links h3 {
  margin: 14px 0 10px;
  color: var(--lime);
  font-size: 16px;
}

.footer-links h3:first-child {
  margin-top: 0;
}

.footer-links a {
  display: block;
  margin: 7px 0;
  color: #e6eeee;
  font-size: 14px;
}

.awards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 24px;
}

.awards a {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.awards img {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.awards span {
  color: var(--lime);
  font-weight: 900;
}

.awards p {
  margin: 0;
  color: #d5dedb;
  font-size: 13px;
}

.footer-legal {
  display: grid;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #c7d1ce;
  font-size: 12px;
}

.footer-legal .legal-icons img {
  height: 24px;
}

.footer-legal p {
  margin: 0;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .utility-nav {
    display: none;
  }

  .hero-grid,
  .responsible-layout {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    min-height: 360px;
  }

  .mini-hero {
    min-height: 360px;
    grid-template-columns: minmax(0, .9fr) minmax(300px, 1fr);
    grid-template-rows: auto;
  }

  .mini-hero img {
    height: 100%;
  }

  .quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-links h2 {
    grid-column: 1 / -1;
  }

  .bets-grid,
  .promo-grid,
  .app-grid,
  .awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .responsible-strip {
    align-items: flex-start;
    padding: 8px 16px;
  }

  .responsible-strip .legal-icons {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr auto;
    gap: 10px;
    padding: 0 14px;
  }

  .icon-button {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
  }

  .auth-actions .btn-ghost {
    display: none;
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .hero-stage {
    padding: 14px;
  }

  .lead-hero,
  .lead-hero > img {
    min-height: 360px;
  }

  .lead-copy {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .lead-copy h1 {
    font-size: 30px;
  }

  .mini-hero {
    grid-template-columns: 1fr;
  }

  .mini-hero img {
    height: 190px;
  }

  .content-band {
    padding: 24px 14px;
  }

  .quick-links,
  .bets-grid,
  .promo-grid,
  .wide-banners,
  .app-grid,
  .responsible-links,
  .news-grid,
  .editorial-grid,
  .schema-rating,
  .schema-faq-grid,
  .footer-links,
  .awards {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    min-height: 70px;
    grid-template-columns: 48px 1fr;
    justify-items: start;
    text-align: left;
  }

  .wide-banner {
    grid-template-columns: 1fr;
  }

  .wide-banner img {
    height: 190px;
  }

  .wheel-strip .strip-logo {
    display: none;
  }

  .slots-strip div {
    margin-left: 0;
    text-align: left;
  }

  .support-footer,
  .contact-footer,
  .feedback-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 62px;
  }

  .auth-actions .btn-primary {
    padding-left: 12px;
    padding-right: 12px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .lead-copy h1 {
    font-size: 26px;
  }

  .lead-copy p,
  .responsible-copy p {
    font-size: 15px;
  }

  .wheel-strip h2,
  .slots-strip h2,
  .responsible-copy h2 {
    font-size: 24px;
  }
}
