@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/barlow-condensed-700-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/barlow-condensed-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/barlow-condensed-800-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/barlow-condensed-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/manrope.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #070b14;
  --ink-soft: #101725;
  --ink-line: #263143;
  --paper: #f7f8fb;
  --white: #ffffff;
  --text: #182130;
  --muted: #5f6978;
  --orange: #f26c21;
  --orange-dark: #d85313;
  --gold: #f5b83d;
  --blue: #326bff;
  --aqua: #29d5b8;
  --line: #d9dee7;
  --max: 1180px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.notice-bar {
  position: relative;
  z-index: 31;
  color: #c8d0dc;
  background: #04070d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.notice-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.notice-inner strong {
  color: var(--gold);
}

.notice-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(41, 213, 184, 0.12);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 11, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 168px;
}

.brand img {
  width: 100%;
}

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

.main-nav a {
  position: relative;
  padding: 24px 0 22px;
  color: #cbd3df;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--ink-line);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 36px rgba(242, 108, 33, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-secondary:hover {
  border-color: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(800px, calc(100svh - 30px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7, 11, 20, 0.99) 0%, rgba(7, 11, 20, 0.86) 38%, rgba(7, 11, 20, 0.18) 72%, rgba(7, 11, 20, 0.04) 100%), url("/img/starzbet-guncel-giris-hero.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-settle 1200ms ease-out both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--ink));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: 110px 150px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--orange-dark);
}

.eyebrow-mark {
  width: 24px;
  height: 2px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.section-copy h2,
.games-intro h2,
.benefits-copy h2,
.mobile-copy h2,
.faq-intro h2,
.final-inner h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(68px, 9vw, 132px);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero-lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: #cbd3df;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 30px;
  color: #aeb8c7;
  font-size: 13px;
  font-weight: 700;
}

.trust-line span {
  position: relative;
  padding-left: 17px;
}

.trust-line span::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--aqua);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #aeb8c7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll span:last-child {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
}

.access-band {
  padding: 104px 0;
  background: var(--paper);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 100px;
}

.section-copy h2,
.section-heading h2,
.games-intro h2,
.benefits-copy h2,
.mobile-copy h2,
.faq-intro h2,
.final-inner h2 {
  font-size: clamp(48px, 6vw, 76px);
}

.section-copy > p:not(.eyebrow),
.benefits-copy > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.section-copy > p:last-child {
  margin-bottom: 0;
}

.address-panel {
  position: relative;
  padding: 34px;
  color: var(--white);
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-top: 4px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 28px 70px rgba(16, 23, 37, 0.18);
}

.address-panel::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(245, 184, 61, 0.25);
  transform: rotate(45deg);
}

.address-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c8d0dc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.address-topline time {
  margin-left: auto;
  color: #8894a6;
}

.address-domain {
  margin: 34px 0 0;
  color: var(--gold);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  line-height: 1;
  overflow-wrap: anywhere;
}

.address-panel > p:not(.address-domain) {
  margin: 10px 0 26px;
  color: #aeb8c7;
}

.address-panel small {
  display: block;
  margin-top: 14px;
  color: #8995a7;
  text-align: center;
}

.steps-section {
  padding: 90px 0 104px;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 50px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.steps-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 34px 28px 10px 0;
  border-right: 1px solid var(--line);
}

.steps-list li:not(:first-child) {
  padding-left: 28px;
}

.steps-list li:last-child {
  border-right: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.steps-list h3,
.category-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.steps-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.games-section {
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.games-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 80px;
}

.games-intro > p {
  margin: 0 0 6px;
  color: #aeb8c7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.category-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  overflow: hidden;
  background: #111926;
  border: 1px solid var(--ink-line);
  border-radius: 6px;
}

.category-card::before {
  content: "";
  width: 54px;
  height: 54px;
  margin-bottom: 40px;
  border: 12px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}

.category-sport {
  color: var(--gold);
}

.category-live {
  color: var(--blue);
}

.category-fast {
  color: var(--aqua);
}

.category-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-card h3 {
  color: var(--white);
  font-size: 36px;
}

.category-card > p:not(.category-label) {
  margin: 12px 0 22px;
  color: #aeb8c7;
  font-size: 14px;
}

.category-card a {
  margin-top: auto;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.game-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.game-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #111926;
  border: 1px solid var(--ink-line);
  border-radius: 6px;
}

.game-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 350ms ease;
}

.game-tile:hover img {
  transform: scale(1.04);
}

.game-tile > span {
  display: block;
  padding: 16px;
}

.game-tile strong,
.game-tile small {
  display: block;
}

.game-tile strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-tile small {
  margin-top: 4px;
  color: #8995a7;
  font-size: 11px;
}

.benefits-section {
  padding: 110px 0;
  background: var(--paper);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 100px;
}

.benefits-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--orange-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.benefit-list li {
  display: grid;
  grid-template-columns: minmax(170px, 0.6fr) minmax(0, 1fr);
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 27px;
  line-height: 1.1;
}

.benefit-list span {
  color: var(--muted);
  font-size: 14px;
}

.mobile-section {
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
  background: #14202a;
}

.mobile-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
}

.mobile-device {
  position: relative;
  width: min(78%, 360px);
  aspect-ratio: 0.52;
  margin-inline: auto;
  padding: 14px;
  background: #03060a;
  border: 1px solid #52606f;
  border-radius: 34px;
  box-shadow: 34px 34px 0 rgba(41, 213, 184, 0.12);
}

.mobile-device::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 100px;
  height: 24px;
  background: #03060a;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}

.device-screen {
  height: 100%;
  padding: 62px 24px 30px;
  background: linear-gradient(160deg, #111a29, #09101a);
  border-radius: 22px;
}

.device-screen img {
  width: 142px;
  margin: 0 auto 44px;
}

.screen-status {
  padding: 14px;
  color: #d8e0ea;
  background: #172331;
  border-left: 3px solid var(--aqua);
  border-radius: 4px;
  font-size: 12px;
}

.screen-status span {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 7px;
  background: var(--aqua);
  border-radius: 50%;
}

.screen-lines {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.screen-lines i {
  height: 56px;
  display: block;
  background: #172331;
  border: 1px solid #263547;
  border-radius: 4px;
}

.screen-lines i:nth-child(2) {
  border-left: 3px solid var(--blue);
}

.screen-button {
  margin-top: 32px;
  padding: 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.mobile-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: #b8c3cf;
}

.mobile-copy ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  color: #d5dde7;
}

.mobile-copy li {
  position: relative;
  padding-left: 24px;
}

.mobile-copy li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--aqua);
}

.faq-section {
  padding: 110px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 28px;
  padding-right: 52px;
  color: var(--muted);
}

.final-cta {
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--ink-line);
}

.final-inner {
  min-height: 300px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 50px;
}

.final-inner > img {
  width: 160px;
}

.final-inner h2 {
  font-size: clamp(46px, 5vw, 68px);
}

.final-inner p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #9facbc;
}

.site-footer {
  padding: 72px 0 24px;
  color: #aeb8c7;
  background: #04070d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(2, minmax(160px, 0.6fr));
  gap: 70px;
}

.footer-grid > div:first-child img {
  width: 160px;
  margin-bottom: 20px;
}

.footer-grid p {
  max-width: 410px;
  margin: 0;
  font-size: 13px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.footer-grid a {
  width: fit-content;
  display: block;
  margin-top: 10px;
  color: #aeb8c7;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid #202936;
}

.footer-bottom strong {
  color: var(--gold);
}

.mobile-action {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.02); }
}

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

  .menu-button {
    display: flex;
    order: 2;
  }

  .header-cta {
    order: 3;
  }

  .main-nav {
    position: fixed;
    inset: 102px 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 20px 28px;
    background: rgba(7, 11, 20, 0.99);
    border-bottom: 1px solid var(--ink-line);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--ink-line);
  }

  .main-nav a::after {
    display: none;
  }

  .access-grid,
  .benefits-layout,
  .faq-layout {
    gap: 60px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 0;
  }

  .category-card::before {
    margin-bottom: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  body {
    padding-bottom: 64px;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .notice-inner {
    justify-content: center;
  }

  .notice-inner > span:first-child {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 142px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    inset: 94px 0 auto;
  }

  .hero {
    min-height: 740px;
    align-items: end;
  }

  .hero-media {
    background-image: linear-gradient(180deg, rgba(7, 11, 20, 0.28) 0%, rgba(7, 11, 20, 0.78) 45%, rgba(7, 11, 20, 1) 84%), url("/img/starzbet-guncel-giris-hero.jpg");
    background-position: 66% center;
  }

  .hero-inner {
    padding-block: 200px 110px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 86px);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
  }

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

  .hero-scroll {
    display: none;
  }

  .access-band,
  .steps-section,
  .games-section,
  .benefits-section,
  .mobile-section,
  .faq-section {
    padding: 78px 0;
  }

  .access-grid,
  .games-intro,
  .benefits-layout,
  .mobile-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-copy h2,
  .section-heading h2,
  .games-intro h2,
  .benefits-copy h2,
  .mobile-copy h2,
  .faq-intro h2,
  .final-inner h2 {
    font-size: 48px;
  }

  .address-panel {
    padding: 28px 22px;
  }

  .address-topline {
    flex-wrap: wrap;
  }

  .address-topline time {
    width: 100%;
    margin-left: 18px;
  }

  .steps-list {
    grid-template-columns: 1fr;
  }

  .steps-list li,
  .steps-list li:not(:first-child) {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .game-tile > span {
    padding: 12px;
  }

  .benefits-copy,
  .faq-intro {
    position: static;
  }

  .benefit-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mobile-layout {
    gap: 70px;
  }

  .mobile-device {
    width: min(78%, 320px);
  }

  .faq-list summary {
    font-size: 22px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .final-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 70px;
  }

  .final-inner > img {
    width: 140px;
  }

  .final-inner .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-action {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 8px;
    background: #050912;
    border-top: 1px solid #2a3442;
  }

  .mobile-action a {
    min-width: 0;
    display: grid;
    place-items: center;
    padding: 0 12px;
    color: #d6dde7;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-action a:last-child {
    color: var(--white);
    background: var(--orange);
    border-radius: 4px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .trust-line {
    gap: 8px 14px;
  }

  .address-domain {
    font-size: 40px;
  }

  .steps-list li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .step-number {
    width: 42px;
    height: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
