*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.mn-body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #05070d;
  color: #e5e7eb;
  min-height: 100dvh;
  overflow-x: hidden;
}

.mn-skip {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: #6d28d9;
  color: #fff;
  font-weight: 700;
}

.mn-skip:focus {
  left: 1rem;
  top: 1rem;
}

.mn-band {
  width: 100%;
}

.mn-band--head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 26, 0.92);
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  backdrop-filter: blur(14px);
}

.mn-band--alt {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.9) 0%, rgba(5, 7, 13, 0.95) 100%);
  border-top: 1px solid rgba(109, 40, 217, 0.2);
  border-bottom: 1px solid rgba(250, 204, 21, 0.08);
}

.mn-band--foot {
  background: #111827;
  border-top: 1px solid rgba(34, 211, 238, 0.12);
  padding: 2.5rem 0;
}

.mn-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}

.mn-inner--narrow {
  max-width: 920px;
}

.mn-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
}

.mn-mark {
  font-weight: 900;
  letter-spacing: 0.07em;
  font-size: 1.15rem;
  color: #f8fafc;
}

.mn-mark--foot {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.mn-mini {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.mn-mini a {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 600;
}

.mn-mini a:hover,
.mn-mini a:focus-visible {
  color: #facc15;
  outline: none;
}

.mn-go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(118deg, #f97316, #db2777, #6d28d9);
  box-shadow: 0 0 26px rgba(249, 115, 22, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mn-go:hover,
.mn-go:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 0 38px rgba(34, 211, 238, 0.5);
  outline: none;
}

.mn-go--big {
  padding: 0.85rem 1.85rem;
  font-size: 1.05rem;
}

.mn-ghost {
  display: inline-flex;
  padding: 0.6rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, 0.45);
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 700;
  background: rgba(17, 24, 39, 0.35);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.mn-ghost:hover,
.mn-ghost:focus-visible {
  background: rgba(109, 40, 217, 0.25);
  box-shadow: 0 0 20px rgba(109, 40, 217, 0.35);
  outline: none;
}

.mn-bleed {
  width: 100%;
}

.mn-herobox {
  position: relative;
  width: 100%;
}

.mn-herobox__pic {
  display: block;
  width: 100%;
  height: auto;
}

.mn-herobox__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(109, 40, 217, 0.18), rgba(5, 7, 13, 0.55));
  pointer-events: none;
}

.mn-herobox__mid {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.mn-glass {
  max-width: 560px;
  padding: 1.7rem 1.85rem;
  border-radius: 18px;
  backdrop-filter: blur(20px);
  background: rgba(17, 24, 39, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 0 45px rgba(109, 40, 217, 0.22);
}

.mn-h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.28rem, 3.7vw, 1.95rem);
  line-height: 1.22;
  color: #fff;
}

.mn-h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.22rem, 2.5vw, 1.6rem);
  color: #facc15;
}

.mn-p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: #cbd5e1;
}

.mn-hscroll {
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.mn-hscroll__row {
  display: flex;
  gap: 0.9rem;
  width: max-content;
  padding: 0.25rem 0;
}

.mn-tile {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 124px;
  text-decoration: none;
  color: #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(250, 204, 21, 0.15);
  transition: transform 0.2s ease;
}

.mn-tile:hover,
.mn-tile:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.mn-tile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.mn-tile__t {
  display: block;
  padding: 0.4rem;
  font-size: 0.75rem;
  text-align: center;
  color: #cbd5e1;
}

.mn-tablebox {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mn-data {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: rgba(11, 15, 26, 0.6);
}

.mn-data caption {
  caption-side: top;
  text-align: left;
  padding: 0.65rem 0.85rem;
  font-weight: 800;
  color: #22d3ee;
}

.mn-data th,
.mn-data td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.mn-data th {
  background: rgba(109, 40, 217, 0.18);
  color: #fff;
}

.mn-foot {
  display: grid;
  gap: 1.25rem;
}

.mn-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.mn-pay img {
  height: 28px;
  width: auto;
}

.mn-legal {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
}

.mn-scrolltop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: linear-gradient(160deg, #22d3ee, #6d28d9);
  color: #0b0f1a;
  font-size: 1.25rem;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mn-scrolltop.is-active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .mn-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem 0.8rem;
    padding: 0.8rem 0.9rem;
    align-items: center;
  }

  .mn-mark {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }

  .mn-mini {
    gap: 0.7rem;
    justify-content: flex-end;
  }

  .mn-mini a {
    font-size: 0.86rem;
  }

  .mn-go {
    width: 100%;
    min-height: 44px;
    padding: 0.62rem 1rem;
    border-radius: 12px;
  }

  .mn-head .mn-go {
    grid-column: 1 / -1;
  }

  .mn-herobox__mid {
    align-items: flex-end;
    padding: 0.7rem;
  }

  .mn-glass {
    max-width: none;
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.62);
  }

  .mn-h1 {
    font-size: clamp(1.1rem, 6vw, 1.35rem);
    line-height: 1.24;
  }

  .mn-inner {
    padding: 2rem 0.9rem;
  }

  .mn-p,
  .mn-inner li {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .mn-tile {
    width: 112px;
    border-radius: 12px;
  }

  .mn-tile__t {
    font-size: 0.7rem;
  }

  .mn-data {
    min-width: 0;
  }

  .mn-data tr {
    display: block;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .mn-data td {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mn-data td:last-child {
    border-bottom: none;
  }

  .mn-data td::before {
    font-weight: 800;
    color: #22d3ee;
    flex: 0 0 44%;
    max-width: 44%;
  }

  .mn-tablebox {
    overflow-x: visible;
  }

  .mn-data--bonus tr:first-child,
  .mn-data--providers tr:first-child {
    display: none;
  }

  .mn-data--bonus td:nth-child(1)::before {
    content: "Paraméter";
  }

  .mn-data--bonus td:nth-child(2)::before {
    content: "Részletek";
  }

  .mn-data--providers td:nth-child(1)::before {
    content: "Szoftverszolgáltató";
  }

  .mn-data--providers td:nth-child(2)::before {
    content: "Játékok száma";
  }
}

@media (max-width: 480px) {
  .mn-inner {
    padding: 1.6rem 0.8rem;
  }

  .mn-h2 {
    font-size: 1.18rem;
  }

  .mn-data td {
    padding: 0.58rem 0.78rem;
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .mn-data td::before {
    font-size: 0.81rem;
  }

  .mn-band--foot {
    padding: 2rem 0;
  }

  .mn-pay {
    gap: 0.6rem;
  }

  .mn-pay img {
    height: 24px;
  }

  .mn-scrolltop {
    width: 44px;
    height: 44px;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
