:root {
  --bg: #12151c;
  --bg-2: #181b24;
  --panel: #212530;
  --panel-2: #2d3245;
  --line: rgba(255, 255, 255, 0.08);
  --blue: #5b6cff;
  --blue-2: #7b8cff;
  --indigo: #3d46d6;
  --orange: #ff8a1a;
  --orange-2: #ffb020;
  --gold: #f0c14b;
  --pink: #e35dff;
  --green: #22c55e;
  --text: #ffffff;
  --muted: #9aa3b8;
  --radius: 18px;
  --radius-lg: 24px;
  --pill: 999px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --header: 72px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}

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

a {
  color: var(--blue-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--blue);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  left: 8px;
}

.wrap {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-height: var(--header);
  padding: 10px 16px;
  background: rgba(18, 21, 28, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--text);
  background: transparent;
  border: 0;
  text-decoration: none;
}

.icon-btn:hover {
  background: var(--panel);
  text-decoration: none;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 116px;
  height: 44px;
  max-width: none;
}

.search-shell {
  display: none;
  flex: 1 1 200px;
  min-width: 0;
  max-width: 520px;
  margin: 0 auto;
}

.top-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  flex: 1 1 auto;
}

.drawer {
  display: none;
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 320px);
  z-index: 80;
  padding: 18px 16px 28px;
  background: #161922;
  border-right: 1px solid var(--line);
  overflow: auto;
}

.drawer:target {
  display: block;
}

.drawer-nav {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.drawer-link,
.drawer [role="button"] {
  width: 100%;
}

.page {
  padding: 16px 0 40px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 0;
  border-radius: var(--radius-lg);
  background: #1a2458;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 18, 42, 0.12) 0%, rgba(12, 18, 42, 0.45) 38%, rgba(12, 18, 42, 0.88) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 20px 22px 56px;
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-lead {
  margin: 0 0 16px;
  max-width: 46ch;
  color: #dce3f5;
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-big {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: #9fd6ff;
  letter-spacing: 0.02em;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: var(--pill);
  background: linear-gradient(180deg, #ffe27a, #f0c14b);
  color: #2a1a00;
  font-weight: 800;
}

.hero-pays {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  opacity: 0.72;
}

.hero-pays img {
  height: 22px;
  width: auto;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: -28px 12px 16px;
  padding: 8px 0;
  border-radius: var(--pill);
  background: rgba(18, 21, 28, 0.88);
  border: 1px solid var(--line);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  padding: 0 16px;
  animation: ticker-move 48s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tick {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.tick img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
}

.tick-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}

.tick-user {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}

.tick-win {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  white-space: nowrap;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
}

.action-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  padding: 6px 12px 10px 6px;
  overflow: hidden;
  border-radius: 18px;
  background: #1c2030;
  color: var(--text);
  font-weight: 800;
}

.action-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
}

.act-h-wheel::after { background: linear-gradient(90deg, #ffd24a, #ff8a1a); }
.act-h-app::after { background: #4c6fff; }
.act-h-ref::after { background: linear-gradient(90deg, #ff4fd8, #a855f7); }
.act-h-shop::after { background: #ef4444; }

.action-art {
  width: 72px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
  margin-top: -6px;
}

.action-label {
  flex: 1;
  line-height: 1.15;
}

.action-go {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2a3144;
  color: #fff;
  font-size: 0.95rem;
}

.cats {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: auto;
  margin: 0 0 22px;
  padding: 6px 10px;
  border-radius: var(--pill);
  background: #1a1e2a;
  scrollbar-width: none;
}

.cats::-webkit-scrollbar {
  display: none;
}

.cat {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: auto;
  min-height: 44px;
  padding: 8px 12px;
  color: #8b93a7;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.cat:hover {
  color: #fff;
  text-decoration: none;
}

.cat.is-on {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--orange);
}

.cat-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.cat-ico path {
  fill: currentColor;
}

.cat img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.block {
  margin: 0 0 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--panel);
}

.block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.block-head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mark-ico {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.mark-ico img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.row-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 132px;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

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

.game-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  padding: 0;
  background: #141824;
}

.game-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hot-wrap {
  padding: 18px 16px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 21, 28, 0.12), rgba(18, 21, 28, 0.08) 40%, rgba(255, 90, 20, 0.08)),
    url("/images/agnesagte_spiele.webp") center bottom / 100% auto no-repeat;
  background-color: #1a141c;
  margin-bottom: 18px;
  overflow: hidden;
}

.exclusive-wrap {
  background:
    linear-gradient(180deg, rgba(18, 21, 28, 0.2), rgba(18, 21, 28, 0.55)),
    url("/images/nur_bei_martin.webp") center / cover no-repeat;
  box-shadow: inset 0 0 0 2px rgba(255, 176, 32, 0.4);
}

.split {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 27%;
}

.pod .game-tile {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
}

.pod.mid {
  width: 40%;
}

.pod.mid .game-tile {
  aspect-ratio: 1;
}

.chart-ico {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.head-win { color: #f0c14b; }
.head-odd { color: #e35dff; }

.pill-win {
  display: inline-flex;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: var(--pill);
  background: #f0c14b;
  color: #2a1a00;
  font-size: 0.78rem;
  font-weight: 800;
}

.pill-odd {
  background: linear-gradient(90deg, #c026d3, #7c3aed);
  color: #fff;
}

.pod small {
  color: var(--muted);
  text-align: center;
}

.app-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.jack-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.jack-ico {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}

.jack-num {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.jack-label {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.winners {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.winners th {
  color: var(--muted);
  font-weight: 600;
  text-align: left;
  padding: 8px 6px;
}

.winners td {
  padding: 10px 6px;
  border-top: 1px solid var(--line);
}

.winners .g {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-2);
  font-weight: 700;
}

.winners .g img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.winners .g {
  color: var(--orange-2);
  font-weight: 700;
}

.providers {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 168px;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.prov {
  display: grid;
  place-items: center;
  min-height: 118px;
  height: 118px;
  padding: 16px 14px;
  border: 0;
  outline: none;
  border-radius: 16px;
  background: #2a2f3e;
  box-shadow: none;
}

.prov img {
  max-width: 86%;
  height: 58px;
  width: auto;
  object-fit: contain;
}

.prose {
  max-width: 78ch;
  margin: 8px auto 0;
  padding: 8px 4px 24px;
}

.prose h2 {
  margin: 28px 0 10px;
  font-size: 1.4rem;
}

.prose h3 {
  margin: 20px 0 8px;
  font-size: 1.08rem;
}

.prose p,
.prose li {
  color: #d5dbe8;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--panel);
}

.band p {
  margin: 0;
  flex: 1 1 200px;
}

.table-wrap {
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.faq details {
  margin: 0 0 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--panel);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.site-foot {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.foot-brand {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.socials,
.app-row,
.pay-row,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.pay-row img,
.trust-row img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
}

.soc.tg { background: #2aa1d8; }
.soc.ig { background: #d62976; }
.soc.fb { background: #1877f2; }
.soc.x { background: #111; }
.soc.wa { background: #25d366; }

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #2a3144;
  color: #fff;
  font-weight: 700;
}

.foot-grid {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.foot-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e8edf7;
  font-weight: 600;
}

.legal {
  display: grid;
  grid-template-columns: 146px 1fr;
  gap: 14px;
  margin: 18px 0;
  font-size: 0.88rem;
  align-items: start;
}

.cga {
  width: 146px;
  height: auto;
  border-radius: 8px;
  background: none;
}

.disclaimer {
  white-space: pre-line;
  margin: 0 0 12px;
}

.act-h-bell,
.act-bonus-bell {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  background: #2a3144;
  box-shadow: none;
  position: relative;
}

.act-h-bell::before,
.act-bonus-bell::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border-bottom-color: transparent;
}

.act-h-search::before,
.act-bonus-search::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border: 2px solid #9aa3b8;
  border-radius: 50%;
  box-shadow: 6px 6px 0 -4px #9aa3b8;
}

.act-home-mid-reg,
.act-home-mid-deposit,
.act-home-support,
.act-bonus-mid-code,
.act-bonus-mid-deposit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  font-weight: 700;
}

.act-home-support {
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
}

.chat-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.chat-fab::before {
  content: "";
  width: 22px;
  height: 16px;
  border: 2px solid #111;
  border-radius: 10px;
  box-shadow: 0 8px 0 -6px #111;
}

.drawer [role="button"][aria-label="martinarialabel"],
.foot-grid [role="button"][aria-label="martinarialabel"] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  color: #e8edf7;
  font-weight: 600;
}

.socials [role="button"][aria-label="martinarialabel"] {
  min-height: 38px;
  padding: 0;
  box-shadow: none;
}

.app-row [role="button"][aria-label="martinarialabel"] {
  box-shadow: none;
}

.cats [role="button"][aria-label="martinarialabel"] {
  background: transparent;
  box-shadow: none;
  border-radius: 12px;
  min-height: 44px;
  padding: 8px 12px;
}

.prov[role="button"][aria-label="martinarialabel"] {
  border: 0;
  box-shadow: none;
  outline: none;
  background: #2a2f3e;
}

.crumbs {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.crumbs a {
  color: var(--muted);
}

.game-tile[role="button"][aria-label="martinarialabel"] {
  box-shadow: none;
}

.page-hero {
  padding: 8px 0 18px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.15;
  text-transform: none;
  letter-spacing: 0;
}

.page-kicker {
  margin: 0 0 8px;
  color: var(--orange-2);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.bonus-cats {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin: 0 0 20px;
  scrollbar-width: none;
}

.bonus-cats [role="button"][aria-label="martinarialabel"] {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: var(--pill);
  background: var(--panel);
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}

@media (max-width: 719px) {
  .legal {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

[role="button"][aria-label="martinarialabel"] {
  cursor: pointer;
  user-select: none;
}

[role="button"][aria-label="martinarialabel"]:focus {
  outline: none;
}

[role="button"][aria-label="martinarialabel"]:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}

.btn-blue,
.act-h-login,
.act-b-login,
.act-e-login,
.act-h-hero,
.act-h-all-hot,
.act-h-all-pop,
.act-h-all-new,
.act-h-all-jack,
.act-h-all-prov,
.act-bonus-login-mast,
.act-bonus-hero-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: var(--pill);
  background: linear-gradient(180deg, var(--blue-2), var(--blue) 55%, var(--indigo));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(61, 70, 214, 0.28);
}

.btn-orange,
.act-h-reg,
.act-b-reg,
.act-e-reg,
.act-bonus-reg-mast,
.act-bonus-hero-reg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: var(--pill);
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(255, 138, 26, 0.28);
}

.act-h-search,
.act-bonus-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: var(--pill);
  background: #2a3144;
  color: var(--muted);
  font-weight: 600;
}

.act-h-bell,
.act-b-bell,
.act-e-bell,
.act-bonus-bell,
.act-h-chat,
.act-b-chat,
.act-e-chat,
.act-bonus-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.outline-none:focus {
  outline: none;
}

.cursor-pointer {
  cursor: pointer;
}

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

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

  .hero-copy {
    max-width: 48%;
    margin-left: auto;
    padding: 40px 36px 72px;
  }

  .actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-games {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .foot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 24px;
  }

  .foot-brand,
  .legal {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .search-shell {
    display: block;
  }
}

@media (min-width: 1024px) {
  .topbar,
  .wrap {
    width: min(1280px, calc(100% - 40px));
  }

  .topbar {
    width: 100%;
    padding-left: max(20px, calc((100% - 1280px) / 2 + 20px));
    padding-right: max(20px, calc((100% - 1280px) / 2 + 20px));
  }

  .grid-games {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .row-scroll {
    grid-auto-columns: 148px;
  }
}
