/* VividQuark — Gaming Rooms (Unique: memphis + pixel stickers + thick outlines) */

:root {
  --bg: #fff9f2;
  --ink: #1f2a44;
  --muted: #55627a;
  --paper: #ffffff;
  --line: #1f2a44;
  --soft: #f2efe9;

  --pink: #ff5aa5;
  --lime: #b8ff3c;
  --cyan: #22d3ee;
  --violet: #8b5cf6;
  --amber: #ffb703;

  --shadow: 10px 10px 0 rgba(31, 42, 68, 0.18);
  --radius: 22px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 90, 165, 0.18) 0 18%,
      transparent 19% 100%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(34, 211, 238, 0.18) 0 18%,
      transparent 19% 100%
    ),
    radial-gradient(
      circle at 65% 85%,
      rgba(184, 255, 60, 0.16) 0 18%,
      transparent 19% 100%
    ),
    linear-gradient(0deg, rgba(31, 42, 68, 0.04), rgba(31, 42, 68, 0.04)),
    var(--bg);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.mark {
  width: 60px;
  height: 60px;

}
.brand strong {
  font-weight: 1000;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.navlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.navlinks a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 999px;
  border: 2px solid transparent;
  color: var(--muted);
  font-weight: 800;
}
.navlinks a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
}

/* Hero — full-bleed image with sticker card */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 3px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 249, 242, 0.15),
      rgba(31, 42, 68, 0.55) 62%,
      rgba(31, 42, 68, 0.65)
    ),
    radial-gradient(
      circle at 25% 25%,
      rgba(255, 90, 165, 0.22),
      transparent 55%
    ),
    radial-gradient(circle at 78% 18%, rgba(34, 211, 238, 0.2), transparent 55%);
}
.hero-inner {
  position: relative;
  width: 100%;
  padding: 22px 0 28px;
}
.sticker {
  max-width: 860px;
  background: rgba(255, 255, 255, 0.92);
  border: 3px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 16px 16px 14px;
  position: relative;
}
.sticker::before {
  content: "";
  position: absolute;
  inset: -10px auto auto -10px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--lime);
  border: 3px solid var(--line);
  box-shadow: 8px 8px 0 rgba(31, 42, 68, 0.14);
  transform: rotate(-10deg);
}
.kicker {
    position: relative;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: rgba(34, 211, 238, 0.18);
  font-weight: 1000;
  font-size: 13px;
}
h1 {
  margin: 10px 0 8px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.6px;
}
@media (max-width: 560px) {
  h1 {
    font-size: 34px;
  }
}
.lead {
  margin: 0 0 12px;
  color: rgba(31, 42, 68, 0.84);
  font-size: 16.5px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 16px;
  border: 3px solid var(--line);
  background: #fff;
  text-decoration: none;
  font-weight: 1000;
  box-shadow: 6px 6px 0 rgba(31, 42, 68, 0.14);
}
.btn.primary {
  background: linear-gradient(135deg, var(--pink), var(--amber));
}
.btn.alt {
  background: rgba(255, 255, 255, 0.85);
}
.btn:hover {
  transform: translateY(-1px);
}

/* Sections */
.section {
  padding: 18px 0;
}
h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0.2px;
}
h3 {
  margin: 14px 0 6px;
}
p {
  margin: 0 0 12px;
}
ul {
  margin: 0 0 12px;
  padding-left: 18px;
}
.small {
  color: var(--muted);
  font-size: 13px;
}

/* Blocks */
.block {
  background: rgba(255, 255, 255, 0.88);
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}
.grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: rgba(255, 255, 255, 0.88);
  border: 3px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 rgba(31, 42, 68, 0.12);
  padding: 14px;
  position: relative;
}
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 2px solid var(--line);
  font-weight: 1000;
  font-size: 12.5px;
  background: rgba(139, 92, 246, 0.14);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}
@media (max-width: 920px) {
  .split {
    grid-template-columns: 1fr;
  }
  .nav {
    flex-direction: column;
  }
  .navlinks {
    justify-content: space-between;
  }
}
.figure {
  border-radius: var(--radius);
  border: 3px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 560px) {
  .figure img {
    height: 240px;
  }
}

/* Table */
.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}
.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 2px dashed rgba(31, 42, 68, 0.25);
  text-align: left;
}
.table tr:last-child td {
  border-bottom: none;
}
.table th {
  color: var(--muted);
  font-weight: 1000;
  font-size: 13px;
}

/* Footer */
.footer {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.85);
  border-top: 3px solid var(--line);
}
.footer-inner {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
}
@media (max-width: 780px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.footer a:hover {
  color: var(--ink);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-box {
  max-width: var(--max);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border: 3px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 14px;
}
.cookie-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1 1 320px;
}
.cookie-text p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  appearance: none;
  border-radius: 16px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 1000;
  border: 3px solid var(--line);
  background: #fff;
  box-shadow: 6px 6px 0 rgba(31, 42, 68, 0.12);
}
.cookie-actions button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
}
.cookie-actions button:hover {
  transform: translateY(-1px);
}
