:root {
  --bg: #111228;
  --bg-soft: #181a37;
  --card: #20234a;
  --card-2: #2a2f63;
  --text: #f5f6ff;
  --muted: #c8c9e0;
  --accent: #ff8a3d;
  --accent-2: #a855f7;
  --accent-3: #43d4ff;
  --success: #23d18b;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top right,
      rgba(168, 85, 247, 0.25),
      transparent 25%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(67, 212, 255, 0.15),
      transparent 30%
    ),
    linear-gradient(180deg, #101125, #0e1022 45%, #12142e);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}
.section {
  padding: 84px 0;
}
.section-dark {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.04)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(10, 12, 28, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.2rem;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 32px rgba(168, 85, 247, 0.28);
}
.brand-mark i,
.icon-box i {
  display: inline-block;
  line-height: 1;
}
.brand-mark i {
  font-size: 1.25rem;
}
.brand-text {
  letter-spacing: 0.02em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav a {
  position: relative;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--muted);
}
.nav a.active,
.nav a:hover {
  color: var(--text);
}
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffe2d0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin: 16px 0 18px;
}
.hero-copy p,
.page-hero p {
  color: var(--muted);
  max-width: 60ch;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 30px rgba(168, 85, 247, 0.28);
}
.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}
.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 36px;
}
.side-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-10px, -50%);
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 138, 61, 0.28),
    rgba(67, 212, 255, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}
.side-icon i {
  font-size: 1.45rem;
}
.panel-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
}
.panel-card--top {
    background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 80% 20%, rgba(43, 217, 254, 0.18), transparent 30%),
    url("../images/rapid.png") center center / cover no-repeat;
}
.panel-card--top h2 {
  font-size: 1.8rem;
  margin: 10px 0 8px;
}
.panel-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd9cb;
}
.panel-card--bottom {
  padding: 22px 28px;
}
.mini-slot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.mini {
  min-height: 92px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.4rem;
  font-weight: 800;
}
.mini-a {
  background: linear-gradient(
    135deg,
    rgba(67, 212, 255, 0.25),
    rgba(168, 85, 247, 0.18)
  );
}
.mini-b {
  background: linear-gradient(
    135deg,
    rgba(255, 138, 61, 0.26),
    rgba(168, 85, 247, 0.18)
  );
}
.mini-c {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(67, 212, 255, 0.14)
  );
}
.section-heading {
  margin-bottom: 28px;
}
.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.text-link {
  font-weight: 800;
  color: #ffd7c7;
}
.feature-grid,
.games-grid,
.stats-grid {
  display: grid;
  gap: 22px;
}
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card,
.game-card,
.stat-card,
.responsible-box,
.prose {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.feature-card {
  padding: 24px;
}
.feature-card h3,
.feature-card h2 {
  margin: 16px 0 10px;
}
.feature-card p {
  color: var(--muted);
}
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 138, 61, 0.28),
    rgba(168, 85, 247, 0.26)
  );
}
.icon-box i {
  font-size: 1.35rem;
}
.games-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.game-card {
  overflow: hidden;
}
.game-card--wide {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-column: 1 / -1;
}
.game-preview {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}
.game-preview span {
  display: block;
}
.preview-rapid {
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 80% 20%, rgba(43, 217, 254, 0.18), transparent 30%),
    url("../images/rapid.png") center center / cover no-repeat;
}
.preview-tiger {
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 80% 20%, rgba(43, 217, 254, 0.18), transparent 30%),
    url("../images/tiger.png") center center / cover no-repeat;
}
.preview-egypt {
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 80% 20%, rgba(43, 217, 254, 0.18), transparent 30%),
    url("../images/egypt.png") center center / cover no-repeat;
}
.game-body {
  padding: 24px;
}
.game-body h2,
.game-body h3 {
  margin: 0 0 10px;
}
.game-body p {
  color: var(--muted);
  margin-bottom: 18px;
}
.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.list-check li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list-check i {
  color: #ffcb6f;
}
.info-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}
.stats-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.stat-card {
  padding: 24px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}
.stat-card span {
  color: var(--muted);
}
.page-hero {
  padding-top: 72px;
  padding-bottom: 56px;
}
.prose,
.responsible-box {
  padding: 28px;
}
.prose h2 {
  margin-top: 0;
}
.prose + .prose {
  margin-top: 20px;
}
.prose p,
.prose li {
  color: var(--muted);
}
.prose ul {
  padding-left: 20px;
}
.site-footer {
  padding: 34px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0b0d1c;
}
.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  margin-bottom: 10px;
}
.footer-note,
.footer-disclaimer p,
.modal-subtitle {
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.footer-disclaimer {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-disclaimer p {
  font-size: 0.92rem;
}
.age-gate,
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(7, 9, 20, 0.82);
  backdrop-filter: blur(14px);
}
.age-gate.active,
.modal.active {
  display: flex;
}
.age-card,
.modal-content {
  width: min(1040px, 100%);
  background: linear-gradient(180deg, #1a1d3f, #141731);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.age-card {
  width: min(520px, 100%);
  padding: 30px;
  text-align: center;
}
.age-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 28px rgba(168, 85, 247, 0.24);
}
.age-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.modal-content {
  position: relative;
  padding: 16px;
}
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  z-index: 5;
}
.game-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 8px 14px;
}
.game-titlebar h3 {
  margin: 0 0 4px;
  font-size: 1.4rem;
}

/* Rapid Wild */
.rapid-wrap {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #6d18e7, #24154e 55%, #ff2d73);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.rapid-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: stretch;
}
.rapid-logo,
.rapid-paylines > div {
  border-radius: 22px;
  border: 3px solid rgba(255, 255, 255, 0.38);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.06)
  );
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}
.rapid-logo {
  display: grid;
  place-items: center;
  min-height: 180px;
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.96;
  text-align: center;
  letter-spacing: 0.03em;
  color: #ffdd5c;
}
.rapid-paylines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.rapid-paylines > div {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  color: #ffde6e;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}
.rapid-pay-1 {
  background: linear-gradient(135deg, #ff4d4d, #7110ff);
}
.rapid-pay-2 {
  background: linear-gradient(135deg, #c538ff, #5e24ff);
}
.rapid-pay-3 {
  background: linear-gradient(135deg, #2ea3ff, #6637ff);
}
.rapid-pay-4 {
  background: linear-gradient(135deg, #14d838, #4bb2ff);
}
.rapid-machine {
  margin-top: 20px;
  border-radius: 28px;
  padding: 18px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.26);
}
.rapid-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.rapid-cell {
  min-height: 112px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.14)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(1.7rem, 3.4vw, 3rem);
  font-weight: 900;
}
.rapid-cell.wild {
  color: #ffe37c;
  text-shadow: 0 0 12px rgba(255, 223, 0, 0.32);
}
.rapid-cell.hot {
  color: #ff7847;
  text-shadow: 0 0 12px rgba(255, 120, 71, 0.5);
}
.rapid-cell.heart {
  color: #ff85aa;
}
.rapid-cell.club {
  color: #65ff77;
}
.rapid-cell.spade {
  color: #c57eff;
}
.rapid-cell.diamond {
  color: #ff6ff7;
}
.rapid-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.rapid-round,
.rapid-icon,
.rapid-spin {
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
}
.rapid-icon,
.rapid-round {
  width: 56px;
  height: 56px;
}
.rapid-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.rapid-label {
  display: block;
  color: #eadfff;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.rapid-value {
  font-weight: 800;
  font-size: 1.25rem;
}
.rapid-spin {
  width: 84px;
  height: 84px;
  font-size: 1.8rem;
  background: #ffffff;
  color: #000;
  cursor: pointer;
}
.rapid-win {
  margin-top: 12px;
  text-align: center;
  font-weight: 800;
  min-height: 28px;
}

/* DJ Tiger */
.tiger-wrap {
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 255, 255, 0.2),
      transparent 20%
    ),
    linear-gradient(180deg, #7c1cff, #4322c2 55%, #ff56c3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.tiger-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.tiger-logo {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #ffe35f;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}
.tiger-logo small {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 14px;
  background: rgba(255, 235, 59, 0.18);
  font-size: 0.9rem;
}
.tiger-cat {
  font-size: 4rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}
.tiger-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(10, 15, 56, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tiger-cell {
  min-height: 90px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(0, 0, 0, 0.12)
  );
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
}
.tiger-cell.mult {
  color: #fff67a;
}
.tiger-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.tiger-box {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.tiger-box .rapid-label {
  color: #e5d6ff;
}
.tiger-box .rapid-value {
  font-size: 1.35rem;
}
.tiger-side {
  display: flex;
  gap: 8px;
}
.tiger-btn,
.tiger-spin {
  border: none;
  cursor: pointer;
}
.tiger-btn {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.tiger-spin {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe857, #ff8a3d);
  color: #351900;
  font-size: 1.8rem;
  border: 4px solid rgba(255, 255, 255, 0.5);
}
.tiger-bonus {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ffde4b, #ff9436);
  font-weight: 900;
  cursor: pointer;
}
.tiger-message {
  margin-top: 12px;
  text-align: center;
  font-weight: 800;
  min-height: 28px;
}

/* Sun of Egypt */
.egypt-wrap {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #b644ff, #ff933e 55%, #f0b100);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.egypt-jackpots {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.egypt-jackpots div {
  padding: 10px 8px;
  border-radius: 18px;
  text-align: center;
  font-weight: 900;
  color: #fff7d3;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.egypt-jackpots small {
  display: block;
  opacity: 0.85;
  font-size: 0.8rem;
}
.egypt-jackpots .minor {
  background: #1f8fff;
}
.egypt-jackpots .grand {
  background: #cc4415;
}
.egypt-jackpots .royal {
  background: #ff8d00;
}
.egypt-jackpots .major {
  background: #b42fff;
}
.egypt-jackpots .mini {
  background: #18b370;
}
.egypt-machine {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
}
.egypt-reels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(76, 15, 24, 0.62);
  border: 2px solid rgba(255, 230, 170, 0.4);
}
.egypt-cell {
  min-height: 112px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.16)
  );
  color: #ffe9b0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.egypt-cell.pharaoh {
  color: #ffd766;
}
.egypt-cell.orb {
  background: radial-gradient(
    circle,
    #ffe26c,
    #ff6e00 68%,
    rgba(255, 255, 255, 0.08) 72%
  );
  box-shadow: 0 0 22px rgba(255, 146, 28, 0.42);
  color: #fff7c6;
  font-size: 1.2rem;
  text-align: center;
  padding: 10px;
}
.egypt-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.egypt-control,
.egypt-spin {
  border: none;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.egypt-control {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}
.egypt-spin {
  width: 96px;
  height: 96px;
  font-size: 2.1rem;
  background: rgba(255, 255, 255, 0.24);
}
.egypt-bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.egypt-box {
  padding: 12px;
  text-align: center;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.egypt-message {
  margin-top: 10px;
  text-align: center;
  font-weight: 800;
  min-height: 28px;
}

@media (max-width: 920px) {
  .hero-grid,
  .info-grid,
  .game-card--wide,
  .rapid-top,
  .egypt-machine {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }
  .side-icon {
    position: static;
    transform: none;
  }
  .hero-panel {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .burger {
    display: inline-block;
  }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(12, 14, 30, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .nav.active {
    display: flex;
  }
  .hero-points,
  .stats-grid,
  .footer-grid,
  .footer-links,
  .hero-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid,
  .footer-links {
    display: grid;
  }
  .section {
    padding: 64px 0;
  }
  .section-heading--split {
    align-items: start;
    flex-direction: column;
  }

  .modal {
    padding: 0;
    align-items: stretch;
  }
  .modal-content {
    width: 100vw;
    min-height: 100dvh;
    border-radius: 0;
    padding: 10px 10px 88px;
    overflow-y: auto;
  }
  .modal-close {
    top: 8px;
    right: 8px;
  }
  .game-titlebar {
    position: sticky;
    top: -10px;
    z-index: 4;
    background: rgba(20, 23, 49, 0.96);
    padding: 8px 46px 12px 8px;
    margin: -10px -10px 10px;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rapid-top {
    grid-template-columns: 1fr;
  }
  .rapid-paylines {
    grid-template-columns: repeat(2, 1fr);
  }
  .rapid-reels,
  .tiger-grid,
  .egypt-reels {
    gap: 6px;
  }
  .rapid-cell,
  .egypt-cell {
    min-height: 64px;
    font-size: 1.3rem;
  }
  .tiger-cell {
    min-height: 60px;
    font-size: 1.15rem;
  }
  .rapid-logo {
    min-height: 120px;
    font-size: 1.8rem;
  }
  .rapid-paylines > div {
    min-height: 54px;
    font-size: 0.95rem;
    padding: 6px;
  }

  .rapid-bottom,
  .tiger-controls,
  .egypt-bottom {
    position: sticky;
    bottom: 0;
    z-index: 4;
    background: rgba(18, 20, 42, 0.96);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    backdrop-filter: blur(10px);
  }
  .rapid-bottom {
    grid-template-columns: 42px 1fr 42px 42px 64px;
    gap: 8px;
  }
  .rapid-info {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 8px;
  }
  .rapid-label {
    font-size: 0.64rem;
  }
  .rapid-value {
    font-size: 0.95rem;
  }
  .rapid-icon,
  .rapid-round {
    width: 42px;
    height: 42px;
  }
  .rapid-spin {
    width: 64px;
    height: 64px;
    font-size: 1.35rem;
  }

  .tiger-controls {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .tiger-box {
    padding: 8px 10px;
  }
  .tiger-box .rapid-value {
    font-size: 1rem;
  }
  .tiger-side {
    grid-column: 1 / 2;
    justify-content: center;
  }
  .tiger-spin {
    grid-column: 2 / 3;
    justify-self: center;
    width: 70px;
    height: 70px;
    font-size: 1.4rem;
  }
  .tiger-bonus {
    grid-column: 3 / 4;
    justify-self: center;
    width: 70px;
    height: 70px;
    font-size: 0.95rem;
  }
  .tiger-btn {
    width: 42px;
    height: 42px;
  }
  .tiger-header {
    align-items: center;
  }
  .tiger-cat {
    font-size: 2.9rem;
  }

  .egypt-jackpots {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
    gap: 6px;
  }
  .egypt-jackpots div {
    padding: 8px 4px;
    font-size: 0.72rem;
  }
  .egypt-jackpots small {
    font-size: 0.58rem;
  }
  .egypt-side {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .egypt-control {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .egypt-spin {
    width: 68px;
    height: 68px;
    font-size: 1.4rem;
  }
  .egypt-bottom {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .egypt-box {
    padding: 8px;
  }
  .egypt-box .rapid-value {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1140px);
  }
  .hero-copy h1,
  .page-hero h1 {
    font-size: 2rem;
  }
  .hero-points {
    grid-template-columns: 1fr;
  }
  .panel-card {
    padding: 22px;
  }
  .mini-slot {
    grid-template-columns: 1fr;
  }
  .rapid-wrap,
  .tiger-wrap,
  .egypt-wrap {
    padding: 12px;
  }
  .rapid-machine {
    padding: 10px;
  }
  .tiger-grid,
  .egypt-reels {
    padding: 10px;
  }
  .rapid-cell,
  .tiger-cell,
  .egypt-cell {
    min-height: 54px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .rapid-cell.wild {
    font-size: 0.85rem;
  }
  .rapid-paylines {
    grid-template-columns: 1fr 1fr;
  }
  .rapid-bottom {
    grid-template-columns: 38px 1fr 38px 38px 58px;
  }
  .rapid-icon,
  .rapid-round {
    width: 38px;
    height: 38px;
  }
  .rapid-spin {
    width: 58px;
    height: 58px;
  }
  .tiger-controls {
    grid-template-columns: repeat(3, 1fr);
  }
  .egypt-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-titlebar h3 {
    font-size: 1.12rem;
  }
}
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 130;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(32,35,74,.96), rgba(20,23,49,.98));
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.cookie-banner__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(168,85,247,.25);
  flex-shrink: 0;
}

.cookie-banner__icon i {
  font-size: 1.2rem;
  color: #fff;
}

.cookie-banner__content h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

.cookie-banner__content a {
  color: #ffd7c7;
  font-weight: 800;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .cookie-banner__icon {
    width: 48px;
    height: 48px;
  }

  .cookie-banner__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }
}