:root {
  --bg: #eef3f9;
  --card: #ffffff;
  --text: #0f2748;
  --muted: #5d6c81;
  --line: #dce4ef;
  --blue: #0b4d93;
  --blue-dark: #0a2f63;
  --orange: #ff7b0f;
  --orange-dark: #f15d00;
  --shadow: 0 18px 45px rgba(18, 44, 83, 0.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef3f9 0%, #edf2f8 100%);
}
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
  box-shadow: 0 10px 30px rgba(3, 26, 56, 0.16);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 84px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; letter-spacing: .02em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 20px rgba(255, 123, 15, .35);
}
.logo-text { font-size: 1.15rem; }
.main-nav { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.nav-btn, .age-badge {
  border: 1px solid rgba(255,255,255,.16); color: #fff; background: rgba(255,255,255,.08);
  min-height: 44px; padding: 0 16px; border-radius: 12px; display: inline-flex; align-items: center; font-weight: 700;
}
.nav-btn--ghost { background: rgba(255,255,255,.05); }
.age-badge { background: var(--orange); border-color: transparent; }
.dropdown { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.dropdown-menu {
  position: absolute; left: 0; top: 100%; min-width: 280px; display: none; flex-direction: column;
  background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 10px;
}
.dropdown-menu a { padding: 11px 12px; border-radius: 10px; color: var(--text); font-weight: 600; }
.dropdown-menu a:hover { background: #eff5fd; }
.dropdown:hover .dropdown-menu { display: flex; }
.hero { padding: 44px 0 28px; }
.hero-grid, .slot-hero__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }
.hero-copy, .hero-visual, .content-card, .slot-card, .faq-wrap, .slot-poster {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-copy { padding: 42px; }
.eyebrow { display: inline-block; color: var(--orange-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .76rem; margin-bottom: 10px; }
h1, h2, h3 { margin: 0 0 12px; line-height: 1.12; }
h1 { font-size: clamp(2rem, 4vw, 3.45rem); }
h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 14px; color: var(--muted); line-height: 1.75; }
.hero-actions, .slot-card__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 22px; border-radius: 999px;
  font-weight: 800; transition: .2s ease; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(90deg, var(--orange), var(--orange-dark)); color: #fff; box-shadow: 0 12px 26px rgba(255,123,15,.25); }
.btn-secondary { background: #eff5fd; color: var(--blue-dark); border-color: #d7e4f5; }
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 46px; padding: 0 18px; font-size: .96rem; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.hero-tags span, .chips span {
  background: #eff5fd; border: 1px solid #dbe7f7; color: var(--blue); padding: 10px 14px; border-radius: 999px; font-weight: 700;
}
.hero-visual { padding: 26px; min-height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, #ffffff, #eef5ff); }
.slot-window {
  width: 100%; min-height: 320px; border-radius: 28px; padding: 24px; background: linear-gradient(160deg, #0b4d93, #08264c 72%);
  color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px; position: relative; overflow: hidden;
}
.slot-window::before {
  content: ''; position: absolute; inset: -30%; background: radial-gradient(circle at center, rgba(255,255,255,.18), transparent 40%);
}
.slot-topline, .slot-caption { position: relative; z-index: 1; }
.reels { position: relative; z-index: 1; display: flex; gap: 12px; }
.reels span {
  width: 76px; height: 92px; border-radius: 18px; display: grid; place-items: center; font-size: 2rem; font-weight: 800;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
}
.section { padding: 28px 0; }
.section-muted { background: rgba(255,255,255,.3); }
.section-head { margin-bottom: 22px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.slot-card { overflow: hidden; border: 1px solid #e0e7f2; }
.slot-card__media {
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf1f7;
  background: linear-gradient(180deg, rgba(11,77,147,.04), rgba(255,255,255,0));
}
.slot-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: #fff; font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #4ea1ff);
}
.slot-rating { font-weight: 800; color: var(--blue); }
.slot-card__body { padding: 20px; }
.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.content-card { padding: 30px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { padding-left: 28px; position: relative; color: var(--text); font-weight: 500; line-height: 1.6; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--orange-dark); font-weight: 800; }
.info-box { margin-top: 18px; padding: 18px; border: 1px solid #e2eaf5; background: #f8fbff; border-radius: 18px; }
.chips { display: flex; gap: 12px; flex-wrap: wrap; }
.faq-wrap { padding: 30px; }
.faq-item { padding: 18px 0; border-top: 1px solid var(--line); }
.faq-item:first-of-type { border-top: none; }
.site-footer {
  margin-top: 28px; background: linear-gradient(180deg, #0a2f63, #072243); color: rgba(255,255,255,.88); padding-top: 36px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; gap: 22px; }
.footer-title, .footer-brand { color: #fff; font-weight: 800; margin-bottom: 12px; }
.site-footer p, .site-footer li, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.footer-bottom { padding: 18px 0 26px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.6); }
.slot-hero { padding: 36px 0 16px; }
.slot-hero__grid { align-items: stretch; }
.slot-hero__grid > div:first-child { background: #fff; border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.back-link { display: inline-flex; margin-bottom: 16px; color: var(--blue); font-weight: 700; }
.slot-lead { font-size: 1.05rem; }
.slot-poster {
  padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 100%; color: #fff;
  background: linear-gradient(155deg, #0b4d93, #08264c 75%);
}
.poster-badge { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.12); font-weight: 800; margin-bottom: auto; }
.poster-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-top: 24px; }
.poster-caption { margin-top: 10px; color: rgba(255,255,255,.78); }
.accent-gold .slot-icon, .accent-gold.slot-hero, .accent-gold .slot-poster { background: linear-gradient(135deg, #c28c0c, #ffcb54); }
.accent-red .slot-icon, .accent-red.slot-hero, .accent-red .slot-poster { background: linear-gradient(135deg, #cc2430, #ff6a6a); }
.accent-orange .slot-icon, .accent-orange.slot-hero, .accent-orange .slot-poster { background: linear-gradient(135deg, #ff7b0f, #ffb347); }
.accent-pink .slot-icon, .accent-pink.slot-hero, .accent-pink .slot-poster { background: linear-gradient(135deg, #d542a7, #ff93dc); }
.accent-violet .slot-icon, .accent-violet.slot-hero, .accent-violet .slot-poster { background: linear-gradient(135deg, #6a42e5, #b89cff); }
.accent-blue .slot-icon, .accent-blue.slot-hero, .accent-blue .slot-poster { background: linear-gradient(135deg, #205cc9, #65b3ff); }
.accent-green .slot-icon, .accent-green.slot-hero, .accent-green .slot-poster { background: linear-gradient(135deg, #1d9b64, #74db9f); }
.accent-sand .slot-icon, .accent-sand.slot-hero, .accent-sand .slot-poster { background: linear-gradient(135deg, #b28336, #f2c272); }
.accent-dark .slot-icon, .accent-dark.slot-hero, .accent-dark .slot-poster { background: linear-gradient(135deg, #1d2430, #55606f); }
.accent-lava .slot-icon, .accent-lava.slot-hero, .accent-lava .slot-poster { background: linear-gradient(135deg, #a52b1d, #ff744d); }
@media (max-width: 980px) {
  .hero-grid, .content-grid, .slot-hero__grid, .footer-grid, .cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .header-inner, .main-nav { flex-direction: column; align-items: stretch; }
  .main-nav { padding-bottom: 16px; }
  .hero-grid, .content-grid, .slot-hero__grid, .footer-grid, .cards-grid { grid-template-columns: 1fr; }
  .hero-copy, .content-card, .faq-wrap, .slot-hero__grid > div:first-child, .slot-poster { padding: 24px; }
  h1 { font-size: 2.1rem; }
}



/* Homepage premium slot list redesign */
.homepage-slots-section {
  padding-top: 20px;
}

.offer-list {
  display: grid;
  gap: 18px;
}

.offer-card {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 26px;
  background: linear-gradient(180deg, rgba(7,10,18,.98) 0%, rgba(4,7,13,.98) 100%);
  border: 1px solid rgba(241, 179, 37, 0.2);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right center, rgba(255, 40, 0, 0.08), transparent 34%);
  pointer-events: none;
}

.offer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.offer-brand__circle {
  width: 112px;
  height: 112px;
  min-width: 112px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.75);
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 58%),
    linear-gradient(180deg, #070b12 0%, #03060a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 10px 28px rgba(0,0,0,.3);
  text-decoration: none;
}

.offer-brand__circle span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff2bf;
  background: linear-gradient(180deg, #f7c542 0%, #d78900 100%);
  box-shadow: 0 10px 24px rgba(255, 174, 0, .28);
}

.offer-brand__meta h3,
.offer-brand__meta h3 a {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.25;
  text-decoration: none;
}

.offer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .96rem;
}

.offer-rating .stars {
  color: #f7b521;
  letter-spacing: 1px;
  font-size: 1rem;
}

.offer-main {
  min-width: 0;
}

.offer-main h3,
.offer-main h3 a {
  margin: 0 0 10px;
  color: #f7c331;
  font-size: 1.1rem;
  line-height: 1.25;
  text-decoration: none;
}

.offer-main h3 a:hover,
.offer-brand__meta h3 a:hover {
  color: #ffd86a;
}

.offer-tagline {
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
  font-size: 1rem;
  line-height: 1.55;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.offer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
  line-height: 1.2;
}

.offer-action {
  display: flex;
  justify-content: flex-end;
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
  color: #ffd43e;
  background: linear-gradient(180deg, #ff1800 0%, #ef1d0c 100%);
  box-shadow: 0 0 24px rgba(255, 83, 0, .24);
}

.offer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(255, 83, 0, .34);
}

.offer-card.accent-pink::before { background: radial-gradient(circle at right center, rgba(255, 88, 149, .10), transparent 34%); }
.offer-card.accent-gold::before { background: radial-gradient(circle at right center, rgba(255, 201, 40, .10), transparent 34%); }
.offer-card.accent-red::before { background: radial-gradient(circle at right center, rgba(255, 70, 50, .12), transparent 34%); }
.offer-card.accent-orange::before { background: radial-gradient(circle at right center, rgba(255, 136, 0, .12), transparent 34%); }
.offer-card.accent-lava::before { background: radial-gradient(circle at right center, rgba(255, 84, 20, .14), transparent 34%); }

@media (max-width: 1100px) {
  .offer-card {
    grid-template-columns: 230px minmax(0, 1fr) 150px;
    gap: 18px;
  }

  .offer-brand__circle {
    width: 96px;
    height: 96px;
    min-width: 96px;
  }
}

@media (max-width: 860px) {
  .offer-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .offer-action {
    width: 100%;
    justify-content: flex-start;
  }

  .offer-btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .offer-brand {
    align-items: flex-start;
  }

  .offer-brand__circle {
    width: 84px;
    height: 84px;
    min-width: 84px;
  }

  .offer-brand__circle span {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    border-radius: 12px;
  }

  .offer-main h3, .offer-main h3 a {
    font-size: 1rem;
  }

  .offer-tagline,
  .offer-tags span {
    font-size: .88rem;
  }
}
