:root {
  --navy-900: #061634;
  --navy-800: #0a2150;
  --navy-700: #0f2f66;
  --navy-600: #173f82;
  --navy-500: #2155a6;
  --red: #d81f2a;
  --red-600: #b8151f;
  --gold: #f6b916;
  --gold-700: #d29400;
  --bg: #eef1f6;
  --card: #ffffff;
  --ink: #14233d;
  --muted: #5d6b85;
  --muted-2: #8a96ad;
  --line: #e3e8f0;
  --line-dark: #1c3a6b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(15, 33, 64, .08);
  --shadow: 0 6px 20px rgba(15, 33, 64, .10);
  --shadow-lg: 0 14px 40px rgba(10, 33, 80, .18);
  --maxw: 1240px;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-head: "Poppins", var(--ff-body);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

.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;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; font-size: 15px; line-height: 1;
  padding: 12px 22px; border-radius: 999px; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap; cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-play {
  background: var(--red); color: #fff;
  box-shadow: 0 6px 16px rgba(216, 31, 42, .32);
}
.btn-play:hover { background: var(--red-600); box-shadow: 0 8px 22px rgba(216, 31, 42, .42); }
.btn-gold { background: var(--gold); color: #1a1305; }
.btn-gold:hover { background: var(--gold-700); }
.btn-ghost {
  background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, .55);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .12); }
.btn-outline {
  background: #fff; color: var(--navy-700); border: 1.5px solid var(--navy-700);
  padding: 9px 18px; font-size: 14px;
}
.btn-outline:hover { background: var(--navy-700); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 15px 30px; font-size: 17px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-900); color: #c7d3e8; font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar a { color: #c7d3e8; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left span { opacity: .85; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right .lang { font-weight: 600; color: #fff; letter-spacing: .04em; }
.badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 22px; border: 1.5px solid var(--gold); color: var(--gold);
  border-radius: 5px; font-weight: 800; font-size: 11px;
}

/* ---------- Main header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; }
.header-main { background: var(--navy-800); }
.header-main .container { display: flex; align-items: center; justify-content: space-between; min-height: 62px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 42px; height: 42px; }
.brand-name { font-family: var(--ff-head); font-weight: 800; color: #fff; font-size: 19px; letter-spacing: .01em; line-height: 1; }
.brand-name b { color: var(--gold); }
.brand-name small { display: block; font-size: 10px; font-weight: 600; letter-spacing: .22em; color: #9fb2d6; text-transform: uppercase; margin-top: 3px; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.link-login { color: #dce4f2; font-weight: 600; font-size: 14.5px; padding: 8px 6px; }
.link-login:hover { color: #fff; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 0 9px; border-radius: 9px; background: rgba(255, 255, 255, .08);
}
.burger span { height: 2.5px; width: 100%; background: #fff; border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Nav bar ---------- */
.header-nav { background: var(--navy-700); border-top: 1px solid rgba(255, 255, 255, .06); }
.header-nav .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.nav-list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav-list a {
  display: inline-block; color: #d6e0f1; font-family: var(--ff-head); font-weight: 600;
  font-size: 14px; padding: 14px 14px; position: relative; letter-spacing: .01em;
}
.nav-list a:hover { color: #fff; }
.nav-list a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 3px;
  background: var(--gold); border-radius: 3px; transform: scaleX(0); transition: transform .18s ease;
}
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a[aria-current="page"] { color: #fff; }
.nav-list a[aria-current="page"]::after { transform: scaleX(1); }
.nav-extra { display: flex; align-items: center; }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(6, 16, 34, .55); opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease; z-index: 80;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 84%; max-width: 340px;
  background: var(--navy-800); z-index: 90; transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1); display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .35); overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.drawer-head .brand-name { font-size: 17px; }
.drawer-close { color: #fff; font-size: 26px; width: 40px; height: 40px; line-height: 1; border-radius: 8px; background: rgba(255, 255, 255, .08); }
.drawer-nav { list-style: none; margin: 0; padding: 8px 0; }
.drawer-nav a { display: block; color: #e4eaf5; font-family: var(--ff-head); font-weight: 600; font-size: 16px; padding: 14px 20px; border-bottom: 1px solid rgba(255, 255, 255, .06); }
.drawer-nav a[aria-current="page"] { color: var(--gold); border-left: 4px solid var(--gold); padding-left: 16px; }
.drawer-cta { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.drawer-cta .btn { width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--navy-800); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 34, .92) 0%, rgba(6, 16, 34, .72) 38%, rgba(6, 16, 34, .25) 70%, rgba(6, 16, 34, .55) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 40px 0 44px; min-height: 320px; display: flex; align-items: center; }
.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 700;
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--gold); border-radius: 3px; }
.hero-title {
  font-family: var(--ff-head); font-weight: 800; color: #fff; font-size: 34px; line-height: 1.08;
  margin: 0 0 14px; letter-spacing: -.01em; text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-text { color: #d8e1f0; font-size: 16px; margin: 0 0 22px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-search {
  position: absolute; top: 18px; right: 16px; z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center;
}
.hero-search svg { width: 20px; height: 20px; stroke: #fff; }
.hero-badges { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 9px; color: #cdd9ec; font-size: 13.5px; font-weight: 500; }
.hero-badge svg { width: 20px; height: 20px; stroke: var(--gold); flex: none; }

/* ---------- Section scaffolding ---------- */
.section { padding: 34px 0; }
.section-tight { padding: 22px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.section-title { font-family: var(--ff-head); font-weight: 700; font-size: 21px; color: var(--ink); margin: 0; display: flex; align-items: center; gap: 10px; }
.section-title::before { content: ""; width: 5px; height: 22px; background: var(--red); border-radius: 3px; }
.see-all { color: var(--navy-600); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.see-all:hover { color: var(--red); }
.see-all::after { content: "›"; font-size: 18px; line-height: 1; }

/* ---------- Lobby (recommended + jackpot) ---------- */
.lobby { display: grid; grid-template-columns: 1fr; gap: 18px; }
.panel { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.panel-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 6px; }
.panel-head .panel-title { font-family: var(--ff-head); font-size: 17px; font-weight: 700; margin: 0; }
.reco-list { padding: 6px 10px 12px; }
.reco-row { display: flex; align-items: center; gap: 12px; padding: 10px 8px; border-radius: 10px; transition: background .15s ease; }
.reco-row + .reco-row { border-top: 1px solid var(--line); }
.reco-row:hover { background: #f6f8fc; }
.reco-thumb { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; flex: none; box-shadow: var(--shadow-sm); }
.reco-info { flex: 1; min-width: 0; }
.reco-name { font-weight: 700; font-size: 14.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reco-meta { font-size: 12.5px; color: var(--muted); }
.reco-jackpot { color: var(--red); font-weight: 700; }

.jackpot-card { position: relative; min-height: 300px; border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; box-shadow: var(--shadow); }
.jackpot-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.jackpot-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 16, 34, .15) 0%, rgba(6, 16, 34, .35) 45%, rgba(6, 16, 34, .92) 100%); z-index: 1; }
.jackpot-body { position: relative; z-index: 2; padding: 20px; }
.jackpot-label { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.jackpot-counter { display: flex; gap: 5px; align-items: center; margin: 8px 0 12px; }
.jackpot-counter .cur { font-family: var(--ff-head); font-weight: 800; font-size: 24px; margin-right: 4px; }
.jackpot-counter .digit { font-family: var(--ff-head); font-weight: 800; font-size: 22px; background: rgba(0, 0, 0, .45); border: 1px solid rgba(255, 255, 255, .18); border-radius: 6px; padding: 4px 7px; min-width: 26px; text-align: center; }
.jackpot-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.jackpot-foot .sub { font-size: 12px; color: #c6d2e6; }
.jackpot-foot .name { font-family: var(--ff-head); font-weight: 700; font-size: 17px; }

/* ---------- Game tiles grid ---------- */
.tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tile { position: relative; border-radius: var(--radius-sm); overflow: hidden; background: var(--navy-700); box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.tile:hover img { transform: scale(1.06); }
.tile-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 16, 34, 0) 40%, rgba(6, 16, 34, .85) 100%); opacity: 0; transition: opacity .2s ease; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 12px; gap: 8px; }
.tile:hover .tile-overlay, .tile:focus-within .tile-overlay { opacity: 1; }
.tile-overlay .btn { padding: 8px 18px; font-size: 13px; }
.tile-name { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 10px 9px; font-size: 12px; font-weight: 600; color: #fff; background: linear-gradient(180deg, transparent, rgba(6, 16, 34, .8)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tile-badge { position: absolute; top: 8px; left: 8px; z-index: 2; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .04em; padding: 3px 8px; border-radius: 6px; text-transform: uppercase; }

/* ---------- Providers strip ---------- */
.providers { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 22px; }
.providers-row { display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; justify-content: center; }
.provider { font-family: var(--ff-head); font-weight: 800; font-size: 17px; color: var(--muted-2); letter-spacing: .02em; opacity: .85; transition: color .15s ease; }
.provider:hover { color: var(--navy-600); }

/* ---------- SEO content block ---------- */
.content { background: #fff; }
.content-inner { max-width: 860px; margin: 0 auto; padding: 38px 16px 46px; }
.content h1 { font-family: var(--ff-head); font-weight: 800; font-size: 30px; line-height: 1.16; color: var(--navy-800); margin: 0 0 18px; letter-spacing: -.01em; }
.content h2 { font-family: var(--ff-head); font-weight: 700; font-size: 23px; color: var(--navy-800); margin: 36px 0 12px; padding-top: 6px; }
.content h2::before { content: ""; display: block; width: 46px; height: 4px; background: var(--gold); border-radius: 3px; margin-bottom: 12px; }
.content h3 { font-family: var(--ff-head); font-weight: 700; font-size: 18px; color: var(--navy-700); margin: 26px 0 8px; }
.content p { margin: 0 0 16px; color: #2c3a52; }
.content a { color: var(--navy-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.content a:hover { color: var(--red); }
.content strong { color: var(--navy-800); font-weight: 700; }
.content ul, .content ol { margin: 0 0 18px; padding-left: 0; }
.content ul { list-style: none; }
.content ul li { position: relative; padding: 4px 0 4px 28px; color: #2c3a52; }
.content ul li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 9px; height: 9px; background: var(--red); border-radius: 50%; }
.content ol { counter-reset: step; list-style: none; padding-left: 0; }
.content ol > li { position: relative; padding: 4px 0 12px 46px; color: #2c3a52; counter-increment: step; }
.content ol > li::before {
  content: counter(step); position: absolute; left: 0; top: 2px; width: 30px; height: 30px;
  background: var(--navy-700); color: #fff; border-radius: 50%; font-family: var(--ff-head);
  font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center;
}
.content ol > li strong:first-child { display: inline-block; color: var(--navy-800); }
.content blockquote {
  margin: 0 0 18px; padding: 14px 18px; background: #f4f7fc; border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0; color: #3a4863; font-style: italic;
}
.content blockquote p { margin: 0; }

.table-scroll { overflow-x: auto; margin: 0 0 22px; border-radius: 12px; border: 1px solid var(--line); -webkit-overflow-scrolling: touch; box-shadow: var(--shadow-sm); }
.content table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 14.5px; background: #fff; }
.content thead th { background: var(--navy-700); color: #fff; font-family: var(--ff-head); font-weight: 600; text-align: left; padding: 12px 14px; white-space: nowrap; }
.content tbody td { padding: 11px 14px; border-top: 1px solid var(--line); color: #36445d; vertical-align: top; }
.content tbody tr:nth-child(even) td { background: #f7f9fc; }
.content tbody tr:hover td { background: #fdf6e6; }

.content .lead { font-size: 18px; color: var(--ink); }

/* breadcrumb */
.breadcrumb { background: #f3f6fb; border-bottom: 1px solid var(--line); font-size: 13px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 10px 16px; max-width: var(--maxw); margin: 0 auto; color: var(--muted); }
.breadcrumb a { color: var(--navy-600); font-weight: 600; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--muted-2); }

/* ---------- Promo cards ---------- */
.promos { display: grid; grid-template-columns: 1fr; gap: 16px; }
.promo {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 200px; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); isolation: isolate;
}
.promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.promo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 33, 80, .15) 0%, rgba(10, 33, 80, .55) 50%, rgba(6, 16, 34, .92) 100%); }
.promo-body { padding: 18px; }
.promo-kicker { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.promo .promo-title { font-family: var(--ff-head); font-weight: 700; font-size: 18px; margin: 6px 0 12px; line-height: 1.2; }
.promo .btn { align-self: flex-start; }

/* ---------- Footer ---------- */
.site-footer { margin-top: 6px; }
.footer-top { background: #fff; border-top: 3px solid var(--gold); }
.footer-top .container { padding-top: 34px; padding-bottom: 30px; }
.footer-help { display: grid; grid-template-columns: 1fr; gap: 22px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.help-item { display: flex; gap: 14px; }
.help-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--navy-700); display: flex; align-items: center; justify-content: center; }
.help-icon svg { width: 24px; height: 24px; stroke: #fff; }
.help-item .help-title { font-family: var(--ff-head); font-weight: 700; font-size: 15.5px; margin: 0 0 4px; color: var(--navy-800); }
.help-item p { margin: 0 0 6px; font-size: 13.5px; color: var(--muted); }
.help-item a { color: var(--navy-600); font-weight: 600; font-size: 13.5px; }
.help-item a:hover { color: var(--red); }

.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 28px; }
.footer-col .footer-col-title { font-family: var(--ff-head); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--navy-800); margin: 0 0 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #41506b; font-size: 14px; }
.footer-col a:hover { color: var(--red); }

.footer-bottom { background: var(--navy-900); color: #9fb0cd; }
.footer-bottom .container { padding-top: 26px; padding-bottom: 30px; }
.footer-social { display: flex; gap: 12px; justify-content: center; padding-bottom: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .08); display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 18px; height: 18px; fill: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .08); border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-links a { color: #aebdd6; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-pay { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 20px 0 14px; }
.pay-badge { background: rgba(255, 255, 255, .9); color: var(--navy-800); font-family: var(--ff-head); font-weight: 800; font-size: 12px; padding: 6px 12px; border-radius: 6px; letter-spacing: .02em; }
.footer-legal { text-align: center; font-size: 12.5px; color: #7f91b0; }
.footer-disclaimer { text-align: center; font-size: 12px; color: #7f91b0; max-width: 760px; margin: 8px auto 0; line-height: 1.6; }
.footer-18 { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border: 2px solid var(--gold); color: var(--gold); border-radius: 50%; font-weight: 800; font-size: 11px; margin-right: 6px; vertical-align: middle; }

/* ---------- 404 ---------- */
.notfound { min-height: 52vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 16px; background: var(--navy-800); color: #fff; }
.notfound-inner { max-width: 540px; }
.notfound .nf-code { font-family: var(--ff-head); font-size: 92px; font-weight: 800; margin: 0; color: var(--gold); line-height: 1; }
.notfound .nf-title { font-family: var(--ff-head); font-weight: 700; font-size: 24px; margin: 6px 0 0; }
.notfound p { color: #cdd9ec; font-size: 17px; margin: 10px 0 26px; }
.notfound .btn { margin: 0 6px; }

/* ---------- Responsive ---------- */
.desktop-only { display: none; }

@media (min-width: 600px) {
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .promos { grid-template-columns: repeat(2, 1fr); }
  .footer-help { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 40px; }
}

@media (min-width: 768px) {
  .container { padding: 0 24px; }
  .tiles { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .hero-inner { min-height: 380px; padding: 56px 0; }
  .hero-search { display: flex; }
  .lobby { grid-template-columns: 1.15fr 1fr; }
  .footer-cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-help { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (min-width: 1024px) {
  .desktop-only { display: block; }
  .mobile-only { display: none !important; }
  .tiles { grid-template-columns: repeat(6, 1fr); }
  .promos { grid-template-columns: repeat(4, 1fr); }
  .hero-title { font-size: 46px; }
  .hero-inner { min-height: 420px; }
  .section { padding: 42px 0; }
}

@media (min-width: 1280px) {
  .tiles { grid-template-columns: repeat(8, 1fr); }
}

@media (max-width: 1023px) {
  .header-nav { display: none; }
  .topbar { display: none; }
  .link-login { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
}
