/* GoTrendSale Social Casino — Electric Pulse / Dynamic Neon */

@font-face {
  font-family: "Unbounded";
  src: url("../assets/fonts/unbounded-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../assets/fonts/space-grotesk-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../assets/fonts/jetbrains-mono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../assets/fonts/jetbrains-mono-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0a0a0f;
  --bg-alt: #12121f;
  --surface: #161625;
  --surface-hover: #1e1e32;
  --lime: #39ff14;
  --cyan: #00f0ff;
  --magenta: #ff00ff;
  --orange: #ff6b00;
  --text: #ffffff;
  --text-muted: #e0e0e0;
  --font-heading: "Unbounded", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --header-h: 72px;
  --container: 1200px;
  --transition: 0.3s ease;
  --glow-lime: 0 0 20px rgba(57, 255, 20, 0.5);
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
  --glow-magenta: 0 0 20px rgba(255, 0, 255, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  background-color: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--lime);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);

  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.stat-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 2rem;
  color: var(--lime);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-heading);

  font-weight: 700;
  font-size: 1.1rem;
}

.site-logo:hover {
  color: var(--lime);
}

.site-logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.site-nav--desktop {
  display: none;
}

.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 0;
  transition:
    color var(--transition),
    text-shadow var(--transition);
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--lime);
  text-shadow: var(--glow-lime);
}

.site-header__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__auth {
  display: none;
  gap: 8px;
}

.site-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--cyan);
  border-radius: 4px;
  color: var(--cyan);
  cursor: pointer;
  transition: all var(--transition);
}

.site-nav__toggle:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: var(--glow-lime);
}

.site-nav__toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.site-nav__toggle-icon::before {
  top: -7px;
}

.site-nav__toggle-icon::after {
  top: 7px;
}

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.mobile-nav-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--bg-alt);
  border-left: 2px solid var(--cyan);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav--open {
  transform: translateX(0);
}

.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid var(--magenta);
  color: var(--magenta);
  font-size: 1.25rem;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 75% 100%, 0 100%);
}

.mobile-nav__list {
  list-style: none;
  margin: 60px 0 24px;
  padding: 0;
}

.mobile-nav__link {
  display: block;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.mobile-nav__link:hover {
  color: var(--lime);
}

.mobile-nav__auth {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  color: var(--bg);
  border-color: var(--lime);
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: var(--text);
  box-shadow: var(--glow-cyan);
}

.btn--secondary {
  background: transparent;
  color: var(--cyan);
  border-color: var(--cyan);
}

.btn--secondary:hover {
  color: var(--lime);
  border-color: var(--lime);
  box-shadow: var(--glow-lime);
}

.btn--accent {
  background: linear-gradient(135deg, var(--magenta), var(--orange));
  color: var(--text);
  border-color: var(--magenta);
}

.btn--small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.7);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero__bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-decor img {
  position: absolute;
  opacity: 0.15;
}

.hero__bg-decor img:first-child {
  top: 0;
  right: 0;
  width: 50%;
  max-width: 400px;
  opacity: 0.12;
}

.hero__bg-decor img:last-child {
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  margin-bottom: 16px;
  animation: neon-flicker 3s ease-in-out infinite;
}

.hero__title span {
  background: linear-gradient(90deg, var(--lime), var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes neon-flicker {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  }
  50% {
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
  }
}

.hero__subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__lightning {
  position: absolute;
  right: 5%;
  top: 20%;
  width: 80px;
  opacity: 0.7;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Sections */
.section {
  padding: 60px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  margin-bottom: 40px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.section__subtitle {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* Cards */
.card {
  background: var(--surface);
  border: 2px solid rgba(0, 240, 255, 0.25);
  padding: 24px;
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.card:hover {
  border-color: var(--lime);
  box-shadow: var(--glow-lime);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card__icon {
  width: 48px;
  margin-bottom: 12px;
}

.feature-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.game-card {
  background: var(--surface);
  border: 2px solid rgba(57, 255, 20, 0.2);
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
  overflow: hidden;
  transition: all var(--transition);
}

.game-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}

.game-card__image-wrapper {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.game-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card__body {
  padding: 16px;
}

.game-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.game-card__desc {
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* Iframe */
.iframe-section {
  padding: 60px 0;
}

.iframe-wrapper {
  aspect-ratio: 1140 / 735;
  width: 100%;
  border: 2px solid var(--cyan);
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
  box-shadow: var(--glow-cyan);
}

.iframe-wrapper iframe {
  opacity: 0;
  transition: opacity 0.3s;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin-bottom: 16px;
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-left: 60px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bg);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
}

/* Live Feed Ticker */
.live-feed {
  background: var(--surface);
  border: 2px solid var(--magenta);
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}

.live-feed__track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.live-feed__item {
  padding: 14px 32px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--lime);
  flex-shrink: 0;
}

.live-feed__item span {
  color: var(--cyan);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Leaderboard */
.leaderboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.leaderboard__item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid rgba(0, 240, 255, 0.2);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
}

.leaderboard__rank {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--orange);
}

.leaderboard__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 6px;
}

.leaderboard__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  border-radius: 4px;
}

.leaderboard__score {
  font-family: var(--font-mono);
  color: var(--lime);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-card__name {
  font-weight: 700;
  color: var(--text);
}

.review-card__date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
}

.review-card__stars {
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.page-hero__image {
  max-width: 600px;
  margin: 0 auto 24px;
}

.page-hero__icon-center {
  margin: 0 auto 24px;
}

.blog-card__content {
  padding-top: 16px;
}

.container--narrow {
  max-width: 520px;
}

.text-center-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.legal-content--spaced {
  margin-top: 48px;
}

.stat-number--hero {
  font-size: 3rem;
  margin-bottom: 12px;
}

.stat-number--inline {
  font-size: 1rem;
}

.leaderboard__bar-fill[data-width="95"] {
  width: 95%;
}
.leaderboard__bar-fill[data-width="82"] {
  width: 82%;
}
.leaderboard__bar-fill[data-width="71"] {
  width: 71%;
}
.leaderboard__bar-fill[data-width="58"] {
  width: 58%;
}
.leaderboard__bar-fill[data-width="45"] {
  width: 45%;
}

.faq-more-link {
  text-align: center;
  margin-top: 24px;
}

.contact-map__caption {
  margin-top: 12px;
  font-size: 0.9rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(0, 240, 255, 0.2);
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}

.faq-item__question {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item__answer {
  padding: 0 20px 16px;
  display: none;
}

.faq-item--open .faq-item__answer {
  display: block;
}

.faq-item__icon {
  color: var(--lime);
  font-size: 1.25rem;
  transition: transform var(--transition);
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

/* Disclaimer */
.disclaimer {
  background: var(--surface);
  border: 2px solid rgba(255, 107, 0, 0.4);
  padding: 28px;
  clip-path: polygon(
    0 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% 100%,
    16px 100%,
    0 calc(100% - 16px)
  );
}

.disclaimer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

/* Page Content */
.page-hero {
  padding: 48px 0 32px;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.page-content {
  padding: 40px 0 80px;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
}

.page-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
}

.page-content h4 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg);
  border: 2px solid rgba(0, 240, 255, 0.3);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 8px,
    100% 100%,
    8px 100%,
    0 calc(100% - 8px)
  );
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--lime);
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
}

.auth-tab {
  flex: 1;
  padding: 14px;
  background: var(--surface);
  border: 2px solid rgba(0, 240, 255, 0.2);
  color: var(--text-muted);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.auth-tab--active {
  background: linear-gradient(
    135deg,
    rgba(57, 255, 20, 0.15),
    rgba(0, 240, 255, 0.15)
  );
  border-color: var(--lime);
  color: var(--lime);
}

.auth-panel {
  display: none;
}

.auth-panel--active {
  display: block;
}

/* Contact Map */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-map {
  position: relative;
  min-height: 350px;
  background: var(--surface);
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 2px solid var(--cyan);
  display: block;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}

/* Subscription Plans */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.plan-card {
  text-align: center;
  padding: 32px 24px;
}

.plan-card--featured {
  border-color: var(--lime);
  box-shadow: var(--glow-lime);
}

.plan-card__price {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  color: var(--cyan);
  margin: 16px 0;
}

.plan-card__price small {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card__date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan);
  margin-bottom: 8px;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-alt);
  border: 2px solid var(--cyan);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  clip-path: polygon(
    0 0,
    calc(100% - 20px) 0,
    100% 20px,
    100% 100%,
    20px 100%,
    0 calc(100% - 20px)
  );
  box-shadow: var(--glow-cyan);
  transform: scale(0.95);
  transition: transform var(--transition);
}

.modal-overlay--visible .modal {
  transform: scale(1);
}

.modal__title {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-alt);
  border-top: 2px solid var(--cyan);
  padding: 16px 20px;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner--hidden {
  display: none;
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-banner__text {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--bg-alt);
  border-top: 2px solid rgba(0, 240, 255, 0.2);
  padding: 48px 0 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.site-footer__title {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--lime);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  margin-bottom: 8px;
}

.site-footer__list a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer__list a:hover {
  color: var(--cyan);
}

.site-footer__legal {
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(0, 240, 255, 0.15);
  padding-top: 24px;
  text-align: center;
}

.site-footer__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--bg);
  font-weight: 700;
  padding: 4px 10px;
  font-size: 0.8rem;
  margin-bottom: 12px;
  clip-path: polygon(
    0 0,
    calc(100% - 6px) 0,
    100% 6px,
    100% 100%,
    6px 100%,
    0 calc(100% - 6px)
  );
}

/* Tablet */
@media (min-width: 576px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-card {
    padding-left: 0;
    padding-top: 56px;
    text-align: center;
  }

  .step-card::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid .form-group--full {
    grid-column: 1 / -1;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 768px) {
  .site-nav--desktop {
    display: block;
  }

  .site-header__auth {
    display: flex;
  }

  .site-nav__toggle {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* content blocks — added @alex 09.07 for mission/pulse/sub pages */
.contentBlock {
  margin-bottom: 2.5rem;
}

.contentBlock--split {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .contentBlock--split {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.contentBlock__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.contentBlock--centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section--defer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.blog-editorial {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
