@font-face {
  font-family: 'Inter 18pt';
  src:
    url('/assets/fonts/Inter18pt-Medium.woff2') format('woff2'),
    url('/assets/fonts/Inter18pt-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter 18pt';
  src:
    url('/assets/fonts/Inter18pt-Bold.woff2') format('woff2'),
    url('/assets/fonts/Inter18pt-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter 18pt';
  src:
    url('/assets/fonts/Inter18pt-Regular.woff2') format('woff2'),
    url('/assets/fonts/Inter18pt-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src:
    url('/assets/fonts/Poppins-Bold.woff2') format('woff2'),
    url('/assets/fonts/Poppins-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src:
    url('/assets/fonts/Poppins-Medium.woff2') format('woff2'),
    url('/assets/fonts/Poppins-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src:
    url('/assets/fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('/assets/fonts/Poppins-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: 'Inter', Arial, sans-serif;
  --font-heading: 'Poppins', Arial, sans-serif;
  --color-white: #ffffff;
  --color-page: #fbfbff;
  --color-text: #080d2d;
  --color-heading: #060a28;
  --color-muted: #60677d;
  --color-muted-dark: #3c4259;
  --color-purple: #6425e6;
  --color-purple-2: #7a35ff;
  --color-purple-dark: #4713c8;
  --color-pink: #f42b91;
  --color-orange: #ff7440;
  --color-gold: #ffc74a;
  --color-border: rgba(10, 16, 48, 0.1);
  --color-border-strong: rgba(100, 37, 230, 0.18);
  --color-soft: rgba(100, 37, 230, 0.07);
  --color-soft-pink: rgba(244, 43, 145, 0.08);
  --color-dark: #071025;
  --color-dark-2: #0c1530;
  --gradient-main: linear-gradient(
    135deg,
    #6425e6 0%,
    #d82ec8 50%,
    #ff7440 100%
  );
  --gradient-soft: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.12),
    rgba(244, 43, 145, 0.08),
    rgba(255, 116, 64, 0.08)
  );
  --shadow-soft: 0 18px 50px rgba(18, 22, 60, 0.08);
  --shadow-card: 0 18px 44px rgba(22, 20, 60, 0.09);
  --shadow-purple: 0 18px 40px rgba(100, 37, 230, 0.24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1320px;
  --section-space: 92px;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(100, 37, 230, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(255, 116, 64, 0.08),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 38%, #ffffff 100%);
  overflow-x: hidden;
}

body::selection {
  color: #ffffff;
  background: var(--color-purple);
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section-sm {
  padding-block: 64px;
}

.section-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 42px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(100, 37, 230, 0.16);
  border-radius: 999px;
  background: rgba(100, 37, 230, 0.06);
  color: var(--color-purple);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-heading);
}

.section-text {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.72;
  color: var(--color-muted);
}

.text-gradient {
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}

.btn-primary {
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: var(--shadow-purple);
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -80%;
  left: -45%;
  z-index: -1;
  width: 46%;
  height: 260%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.48),
    transparent
  );
  transform: rotate(25deg) translateX(-120%);
  transition: transform 0.55s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(100, 37, 230, 0.3);
}

.btn-primary:hover::after {
  transform: rotate(25deg) translateX(370%);
}

.btn-outline {
  color: var(--color-purple);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(100, 37, 230, 0.36);
}

.btn-outline:hover {
  color: #ffffff;
  border-color: transparent;
  background: var(--color-purple);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(100, 37, 230, 0.22);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.features-strip {
  position: relative;
  padding: 26px 0 30px;
  background: linear-gradient(
    180deg,
    rgba(248, 246, 255, 0.9) 0%,
    #ffffff 100%
  );
  border-top: 1px solid rgba(10, 16, 48, 0.06);
  border-bottom: 1px solid rgba(10, 16, 48, 0.06);
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.feature-strip-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 106px;
  padding: 8px 10px;
}

.feature-strip-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--color-purple);
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.09),
    rgba(244, 43, 145, 0.08)
  );
}

.feature-strip-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-strip-content {
  flex: 1 1 auto;
}

.feature-strip-content h3 {
  margin-bottom: 6px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-strip-content p {
  color: var(--color-muted-dark);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}
.hero {
  position: relative;
  padding: 34px 0 72px;
  background:
    radial-gradient(
      circle at 70% 24%,
      rgba(100, 37, 230, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 24%,
      rgba(255, 116, 64, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #f9f7ff 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: auto -14% -42% -14%;
  height: 58%;
  background: radial-gradient(
    ellipse at center,
    rgba(100, 37, 230, 0.1),
    transparent 68%
  );
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(480px, 1fr);
  align-items: center;
  gap: 44px;
}

.hero-content {
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(100, 37, 230, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(18, 22, 60, 0.06);
  color: var(--color-muted-dark);
  font-size: 13px;
  font-weight: 700;
}

.hero-badge-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--gradient-main);
}

.hero-badge-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 6.5vw, 64px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--color-heading);
}

.hero-title span {
  display: block;
}

.hero-title .accent {
  color: transparent;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-description {
  max-width: 710px;
  margin-top: 24px;
  color: var(--color-muted-dark);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.hero-art {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art::before {
  content: '';
  position: absolute;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(244, 43, 145, 0.12) 38%,
    rgba(100, 37, 230, 0.1) 62%,
    transparent 72%
  );
  filter: blur(4px);
}

.hero-image {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  filter: drop-shadow(0 34px 46px rgba(55, 32, 120, 0.22));
  transform: translateY(6px);
}

.hero-decor {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.8;
  filter: blur(0.1px);
}

.hero-decor-one {
  top: 16%;
  left: 8%;
  width: 16px;
  height: 16px;
  background: var(--color-orange);
  box-shadow: 0 0 34px rgba(255, 116, 64, 0.42);
}

.hero-decor-two {
  right: 8%;
  top: 18%;
  width: 22px;
  height: 22px;
  background: var(--color-purple);
  box-shadow: 0 0 38px rgba(100, 37, 230, 0.35);
}

.hero-decor-three {
  right: 18%;
  bottom: 18%;
  width: 12px;
  height: 12px;
  background: var(--color-pink);
  box-shadow: 0 0 32px rgba(244, 43, 145, 0.38);
}

.features {
  position: relative;
  padding: 28px 0 76px;
  background: linear-gradient(180deg, #f9f7ff 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 238px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.74)
    ),
    radial-gradient(circle at 50% 0%, rgba(100, 37, 230, 0.12), transparent 52%);
  box-shadow: 0 12px 34px rgba(18, 22, 60, 0.05);
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(244, 43, 145, 0.12),
    transparent 48%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(100, 37, 230, 0.22);
  box-shadow: var(--shadow-card);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-inline: auto;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.12),
    rgba(244, 43, 145, 0.1)
  );
  color: var(--color-purple);
}

.feature-icon.is-pink {
  color: var(--color-pink);
}

.feature-icon.is-orange {
  color: var(--color-orange);
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-heading);
}

.feature-card p {
  position: relative;
  z-index: 2;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.games-section {
  position: relative;
  padding: 84px 0 86px;
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(255, 116, 64, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(100, 37, 230, 0.1),
      transparent 28%
    ),
    #ffffff;
}

.games-section::before,
.games-section::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--gradient-main);
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  opacity: 0.9;
}

.games-section::before {
  top: 98px;
  left: max(26px, calc((100vw - var(--container)) / 2 + 150px));
}

.games-section::after {
  top: 100px;
  right: max(26px, calc((100vw - var(--container)) / 2 + 150px));
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.game-card {
  position: relative;
  border: 1px solid rgba(10, 16, 48, 0.09);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(20, 24, 60, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 37, 230, 0.24);
  box-shadow: 0 24px 54px rgba(35, 24, 90, 0.14);
}

.game-media {
  position: relative;
  aspect-ratio: 1.43 / 1;
  overflow: hidden;
  background: #140d34;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-media img {
  transform: scale(1.06);
}

.game-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-purple);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(8, 13, 45, 0.12);
}

.game-body {
  padding: 16px 16px 18px;
}

.game-body h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-heading);
}

.game-button {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(100, 37, 230, 0.55);
  border-radius: 10px;
  color: var(--color-purple);
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.game-button:hover {
  color: #ffffff;
  background: var(--color-purple);
  border-color: var(--color-purple);
  transform: translateY(-2px);
}

.game-button svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.games-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.community-section {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(
      circle at 14% 8%,
      rgba(244, 43, 145, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 22%,
      rgba(100, 37, 230, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 48%, #ffffff 100%);
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  top: 90px;
  right: max(24px, calc((100vw - var(--container)) / 2 + 80px));
  width: 18px;
  height: 18px;
  background: var(--gradient-main);
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  opacity: 0.9;
}

.community-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.community-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-board {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(100, 37, 230, 0.18);
  background:
    radial-gradient(circle at 12% 0%, rgba(244, 43, 145, 0.2), transparent 36%),
    radial-gradient(
      circle at 90% 0%,
      rgba(255, 116, 64, 0.14),
      transparent 34%
    ),
    linear-gradient(180deg, #1b1146 0%, #100b2c 100%);
  color: #ffffff;
  box-shadow:
    0 34px 76px rgba(42, 27, 120, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.community-board::before {
  content: '';
  position: absolute;
  inset: -42px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(100, 37, 230, 0.18), transparent 64%),
    radial-gradient(
      circle at 80% 30%,
      rgba(244, 43, 145, 0.14),
      transparent 42%
    );
  filter: blur(2px);
}

.community-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.community-board-head span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.community-board-head strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.community-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.community-live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48f2a9;
  box-shadow: 0 0 18px rgba(72, 242, 169, 0.7);
}

.community-feed {
  display: grid;
  gap: 12px;
}

.community-feed-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.community-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.community-avatar svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-avatar-purple {
  color: #b892ff;
  background: rgba(184, 146, 255, 0.13);
}

.community-avatar-pink {
  color: #ff79c7;
  background: rgba(255, 121, 199, 0.13);
}

.community-avatar-orange {
  color: #ffc74a;
  background: rgba(255, 199, 74, 0.13);
}

.community-feed-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.community-feed-item p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.community-feed-time {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.community-board-footer {
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.community-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.community-progress span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.community-progress strong {
  color: #ffc74a;
  font-size: 14px;
  font-weight: 900;
}

.community-progress-bar {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.community-progress-bar span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6425e6, #f42b91, #ff7440);
  box-shadow: 0 0 24px rgba(244, 43, 145, 0.38);
}

.community-floating-card {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(100, 37, 230, 0.16);
  box-shadow: 0 20px 44px rgba(18, 22, 60, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.community-floating-card span {
  display: inline-flex;
  margin-bottom: 4px;
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
}

.community-floating-card strong {
  display: block;
  color: var(--color-heading);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 800;
}

.community-floating-card-one {
  top: 48px;
  left: 10px;
}

.community-floating-card-two {
  right: 0;
  bottom: 52px;
}

.community-content {
  max-width: 620px;
}

.community-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.community-stat-card {
  padding: 20px 16px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(18, 22, 60, 0.05);
}

.community-stat-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--color-purple);
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.1),
    rgba(244, 43, 145, 0.08)
  );
}

.community-stat-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-stat-card strong {
  display: block;
  color: var(--color-purple);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.community-stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted-dark);
  font-size: 13px;
  font-weight: 700;
}

.community-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.community-cards-container {
  position: relative;
  z-index: 2;
  margin-top: 46px;
}

.community-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.community-info-card {
  position: relative;
  padding: 28px 26px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.76)
    ),
    radial-gradient(circle at 100% 0%, rgba(100, 37, 230, 0.1), transparent 50%);
  box-shadow: 0 16px 42px rgba(18, 22, 60, 0.06);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.community-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 37, 230, 0.2);
  box-shadow: 0 24px 54px rgba(35, 24, 90, 0.12);
}

.community-info-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--color-purple);
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.1),
    rgba(244, 43, 145, 0.08)
  );
}

.community-info-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-info-card h3 {
  margin-bottom: 10px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.community-info-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
.stat-card {
  min-height: 148px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(10, 16, 48, 0.08);
  text-align: center;
}

.stat-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--color-purple);
  background: rgba(100, 37, 230, 0.08);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-value {
  display: block;
  color: var(--color-purple);
  font-family: var(--font-heading);
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  margin-top: 6px;
  color: var(--color-muted-dark);
  font-size: 13px;
  font-weight: 600;
}

.responsible-note {
  padding: 76px 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(100, 37, 230, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 48%,
      rgba(255, 116, 64, 0.08),
      transparent 28%
    ),
    #fbfbff;
}

.responsible-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(100, 37, 230, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(18, 22, 60, 0.06);
}

.responsible-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: var(--color-purple);
  background: rgba(100, 37, 230, 0.09);
}

.responsible-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.responsible-content h2 {
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-heading);
}

.responsible-content p {
  color: var(--color-muted-dark);
  font-size: 16px;
  line-height: 1.65;
}
.site-footer {
  position: relative;
  background: #ffffff;
  color: var(--color-text);
  border-top: 1px solid rgba(10, 16, 48, 0.08);
}

.footer-top {
  padding: 54px 0 26px;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(100, 37, 230, 0.06),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(244, 43, 145, 0.05),
      transparent 28%
    ),
    #ffffff;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1.1fr;
  gap: 44px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 310px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 185px;
  height: auto;
}

.footer-disclaimer {
  max-width: 280px;
  color: var(--color-muted-dark);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.footer-disclaimer-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  vertical-align: -4px;
  color: var(--color-purple);
}

.footer-disclaimer-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column {
  position: relative;
  min-height: 148px;
  padding-left: 34px;
  border-left: 1px solid rgba(10, 16, 48, 0.08);
}

.footer-title {
  margin-bottom: 16px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  color: var(--color-muted-dark);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-purple);
  transform: translateX(4px);
}

.footer-copy-container {
  margin-top: 28px;
  text-align: center;
}

.footer-copy {
  color: rgba(60, 66, 89, 0.72);
  font-size: 13px;
  font-weight: 500;
}

.footer-responsible {
  position: relative;
  padding: 28px 0 34px;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(241, 41, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 86% 40%, rgba(78, 0, 90, 0.1), transparent 30%),
    linear-gradient(135deg, #230d1f 0%, #180b1a 54%, #100812 100%);
  color: #ffffff;
  overflow: hidden;
}

.footer-responsible::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(169, 41, 255, 0.04),
      transparent 32%,
      rgba(255, 64, 207, 0.04)
    ),
    radial-gradient(circle at 50% 0%, rgba(205, 41, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.footer-responsible .container {
  position: relative;
  z-index: 2;
}

.footer-age-badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffb729;
  border-radius: 50%;
  color: #ffb729;
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(255, 183, 41, 0.18);
}

.footer-responsible-text {
  max-width: 1300px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.65;
  text-align: center;
}

.footer-responsible-text strong {
  color: #ffb729;
  font-weight: 900;
}

.footer-support-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.support-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.88;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.support-logo:hover {
  opacity: 1;
  color: #ffffff;
  transform: translateY(-2px);
}

.support-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: #4b35a8;
  font-size: 26px;
  font-weight: 900;
}

.support-logo-aware span {
  color: #ffffff;
  font-weight: 600;
}

.support-logo-aware strong {
  color: #ff7a20;
  font-weight: 800;
}

.support-logo-rgc span {
  font-size: 30px;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 10px 20px rgba(255, 255, 255, 0.12);
}

.support-round {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e2d72a;
  border-radius: 50%;
  color: #e2d72a;
  font-size: 13px;
  font-weight: 900;
}

.support-logo-ga span:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
}
.legal-page {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(100, 37, 230, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 12%,
      rgba(244, 43, 145, 0.07),
      transparent 32%
    ),
    #ffffff;
}

.legal-hero {
  padding: 82px 0 54px;
  text-align: center;
}

.legal-hero h1 {
  max-width: 850px;
  margin-inline: auto;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--color-heading);
}

.legal-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--color-muted-dark);
  font-size: 18px;
  line-height: 1.72;
}

.legal-content {
  padding: 0 0 86px;
}

.legal-card {
  max-width: 920px;
  margin-inline: auto;
  padding: 42px;
  border-radius: 24px;
  border: 1px solid rgba(10, 16, 48, 0.09);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--color-heading);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin: 26px 0 10px;
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-heading);
}

.legal-card p,
.legal-card li {
  color: var(--color-muted-dark);
  font-size: 16px;
  line-height: 1.78;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-left: 20px;
}

.legal-card ul {
  list-style: disc;
}

.legal-card ol {
  list-style: decimal;
}

.legal-card a {
  color: var(--color-purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.contact-card,
.contact-form {
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(10, 16, 48, 0.09);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(100, 37, 230, 0.06);
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-purple);
  background: #ffffff;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--color-heading);
  font-weight: 800;
}

.contact-item span,
.contact-item a {
  color: var(--color-muted-dark);
  font-size: 15px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--color-heading);
  font-size: 14px;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(10, 16, 48, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-text);
  padding: 14px 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(100, 37, 230, 0.52);
  box-shadow: 0 0 0 4px rgba(100, 37, 230, 0.1);
}

.form-note {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--color-purple);
  font-weight: 800;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}
.disclaimer-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}

.disclaimer-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.disclaimer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 30, 0.56);
  opacity: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.24s ease;
}

.disclaimer-modal.is-open .disclaimer-modal-backdrop {
  opacity: 1;
}

.disclaimer-modal-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 38px;
  border: 1px solid rgba(100, 37, 230, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(100, 37, 230, 0.13), transparent 34%),
    radial-gradient(
      circle at 100% 0%,
      rgba(244, 43, 145, 0.1),
      transparent 34%
    ),
    #ffffff;
  box-shadow: 0 34px 90px rgba(6, 9, 30, 0.22);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.disclaimer-modal.is-open .disclaimer-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.disclaimer-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 16, 48, 0.1);
  border-radius: 14px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(18, 22, 60, 0.08);
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.disclaimer-modal-close:hover {
  color: var(--color-purple);
  border-color: rgba(100, 37, 230, 0.26);
  transform: translateY(-2px);
}

.disclaimer-modal-close svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.disclaimer-modal-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--color-orange);
  border-radius: 50%;
  color: var(--color-orange);
  background: rgba(255, 116, 64, 0.08);
  box-shadow: 0 0 34px rgba(255, 116, 64, 0.18);
}

.disclaimer-modal-icon span {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.disclaimer-modal-title {
  max-width: 460px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-heading);
}

.disclaimer-modal-text {
  max-width: 520px;
  color: var(--color-muted-dark);
  font-size: 16px;
  line-height: 1.7;
}

.disclaimer-modal-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.disclaimer-modal-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.disclaimer-modal-item-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--color-purple);
  background: rgba(100, 37, 230, 0.08);
}

.disclaimer-modal-item-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.disclaimer-modal-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.disclaimer-modal-item p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.disclaimer-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}
.game-free-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(111, 122, 76, 0.9);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(8, 13, 45, 0.14);
}

.game-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.game-meta-row h3 {
  margin-bottom: 0;
}

.game-description {
  min-height: 46px;
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.game-button-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.game-button-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.game-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}

.game-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.game-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 30, 0.68);
  opacity: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.24s ease;
}

.game-modal.is-open .game-modal-backdrop {
  opacity: 1;
}

.game-modal-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(100, 37, 230, 0.22), transparent 34%),
    radial-gradient(
      circle at 100% 0%,
      rgba(244, 43, 145, 0.18),
      transparent 34%
    ),
    #ffffff;
  box-shadow: 0 34px 90px rgba(6, 9, 30, 0.32);
  overflow: hidden;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.game-modal.is-open .game-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.game-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(10, 16, 48, 0.08);
}

.game-modal-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--color-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-modal-title {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.game-modal-close {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 16, 48, 0.1);
  box-shadow: 0 10px 24px rgba(18, 22, 60, 0.08);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.game-modal-close:hover {
  color: var(--color-purple);
  transform: translateY(-2px);
}

.game-modal-close svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.game-modal-notice {
  padding: 12px 24px;
  color: #171936;
  background: linear-gradient(
    90deg,
    rgba(100, 37, 230, 0.08),
    rgba(244, 43, 145, 0.06)
  );
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.game-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 420px;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(100, 37, 230, 0.16),
      transparent 32%
    ),
    #070a1f;
}

.game-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #070a1f;
}

.game-frame-empty {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(100, 37, 230, 0.32),
      transparent 38%
    ),
    linear-gradient(135deg, #080b26, #141044);
}

.game-frame-empty.is-visible {
  display: grid;
}

.game-frame-empty strong {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.2;
}

.game-frame-empty p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.game-frame-empty code {
  color: #ffd166;
}
.rewards-section {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(100, 37, 230, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(244, 43, 145, 0.09),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 52%, #ffffff 100%);
  overflow: hidden;
}

.rewards-section::before {
  content: '';
  position: absolute;
  top: 90px;
  left: max(22px, calc((100vw - var(--container)) / 2 + 110px));
  width: 18px;
  height: 18px;
  background: var(--gradient-main);
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  opacity: 0.9;
}

.rewards-section::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: 90px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(100, 37, 230, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.rewards-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

.rewards-content {
  max-width: 590px;
}

.rewards-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.rewards-note {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(60, 66, 89, 0.76);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.rewards-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rewards-orbit {
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(100, 37, 230, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.9),
      transparent 58%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(244, 43, 145, 0.08),
      transparent 30%
    );
}

.rewards-orbit-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(100, 37, 230, 0.18);
}

.rewards-orbit-dot-one {
  top: 18%;
  left: 4%;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ffcf65, #ff8b3d);
}

.rewards-orbit-dot-two {
  top: 4%;
  right: 18%;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7a35ff, #f42b91);
}

.rewards-orbit-dot-three {
  right: 5%;
  bottom: 18%;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #f42b91, #ff7440);
}

.rewards-phone-card {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid rgba(100, 37, 230, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 43, 145, 0.2), transparent 34%),
    radial-gradient(
      circle at 100% 12%,
      rgba(255, 116, 64, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #1b1146 0%, #100b2c 100%);
  box-shadow:
    0 34px 74px rgba(42, 27, 120, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.rewards-phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.rewards-phone-head span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.rewards-phone-head strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.rewards-phone-badge {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 199, 74, 0.9);
  border-radius: 50%;
  color: #ffc74a;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
}

.rewards-progress {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rewards-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.rewards-progress-top span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
}

.rewards-progress-top strong {
  color: #ffc74a;
  font-size: 14px;
  font-weight: 900;
}

.rewards-progress-bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.rewards-progress-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6425e6, #f42b91, #ff7440);
  box-shadow: 0 0 26px rgba(244, 43, 145, 0.38);
}

.rewards-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.rewards-mini-card {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rewards-mini-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffc74a;
  background: rgba(255, 199, 74, 0.1);
}

.rewards-mini-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rewards-mini-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.rewards-mini-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.rewards-steps-container {
  position: relative;
  z-index: 2;
  margin-top: 46px;
}

.rewards-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reward-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(18, 22, 60, 0.06);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.reward-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 0% 0%,
    rgba(100, 37, 230, 0.1),
    transparent 46%
  );
  opacity: 0;
  transition: opacity 0.24s ease;
}

.reward-step:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 37, 230, 0.2);
  box-shadow: 0 24px 54px rgba(35, 24, 90, 0.12);
}

.reward-step:hover::before {
  opacity: 1;
}

.reward-step-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--color-purple);
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.1),
    rgba(244, 43, 145, 0.08)
  );
}

.reward-step-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reward-step-content {
  position: relative;
  z-index: 2;
}

.reward-step-number {
  display: block;
  margin-bottom: 5px;
  color: var(--color-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reward-step h3 {
  margin-bottom: 8px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.reward-step p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.rewards-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.reward-info-card {
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(100, 37, 230, 0.13);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.74)
    ),
    radial-gradient(circle at 100% 0%, rgba(244, 43, 145, 0.1), transparent 48%);
}

.reward-info-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--color-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reward-info-card h3 {
  margin-bottom: 6px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.reward-info-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}
.cta-section {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbf9ff 48%, #ffffff 100%);
  overflow: hidden;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 46px;
  align-items: center;
  min-height: 560px;
  padding: 58px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 14%, rgba(244, 43, 145, 0.2), transparent 30%),
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 116, 64, 0.16),
      transparent 32%
    ),
    radial-gradient(
      circle at 70% 88%,
      rgba(100, 37, 230, 0.22),
      transparent 34%
    ),
    linear-gradient(135deg, #1a0a3d 0%, #12062a 48%, #220b3f 100%);
  color: #ffffff;
  box-shadow:
    0 36px 90px rgba(42, 27, 120, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.cta-panel::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    transparent 34%,
    rgba(255, 255, 255, 0.06)
  );
  pointer-events: none;
}

.cta-bg-glow {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.cta-bg-glow-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -130px;
  background: radial-gradient(
    circle,
    rgba(244, 43, 145, 0.32),
    transparent 70%
  );
}

.cta-bg-glow-two {
  width: 420px;
  height: 420px;
  right: -160px;
  bottom: -180px;
  background: radial-gradient(
    circle,
    rgba(100, 37, 230, 0.36),
    transparent 72%
  );
}

.cta-bg-shape {
  position: absolute;
  z-index: 1;
  display: block;
  background: linear-gradient(135deg, #6425e6, #f42b91, #ff7440);
  clip-path: polygon(
    50% 0%,
    62% 38%,
    100% 50%,
    62% 62%,
    50% 100%,
    38% 62%,
    0% 50%,
    38% 38%
  );
  opacity: 0.78;
}

.cta-bg-shape-one {
  width: 22px;
  height: 22px;
  top: 72px;
  left: 46%;
}

.cta-bg-shape-two {
  width: 16px;
  height: 16px;
  right: 88px;
  top: 76px;
}

.cta-content,
.cta-visual {
  position: relative;
  z-index: 2;
}

.cta-content {
  max-width: 620px;
}

.cta-kicker {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.cta-title {
  max-width: 620px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.cta-text {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.cta-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.cta-outline:hover {
  color: var(--color-purple);
  background: #ffffff;
}

.cta-disclaimer {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.cta-visual {
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-phone {
  position: relative;
  z-index: 3;
  width: min(100%, 350px);
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, #2a1470 0%, #150937 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2deg);
}

.cta-phone-top {
  margin-bottom: 18px;
}

.cta-phone-top span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.cta-phone-top strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.cta-phone-hero-card {
  min-height: 170px;
  padding: 20px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 199, 74, 0.42),
      transparent 28%
    ),
    radial-gradient(
      circle at 20% 0%,
      rgba(244, 43, 145, 0.28),
      transparent 42%
    ),
    linear-gradient(135deg, #6425e6, #e835b4);
  box-shadow: 0 22px 40px rgba(244, 43, 145, 0.22);
}

.cta-phone-star {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc74a;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.16);
}

.cta-phone-star svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linejoin: round;
}

.cta-phone-hero-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.cta-phone-hero-card strong {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.cta-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.cta-phone-tile {
  min-height: 104px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-phone-tile span {
  display: block;
  margin-bottom: 8px;
  color: #ffc74a;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.cta-phone-tile small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.cta-floating {
  position: absolute;
  z-index: 4;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cta-floating-one {
  left: 0;
  top: 68px;
}

.cta-floating-two {
  right: 0;
  bottom: 62px;
}

.cta-floating-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--color-purple);
  background: rgba(100, 37, 230, 0.09);
}

.cta-floating-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-floating strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.cta-floating small {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.cta-highlights {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -38px;
  padding-inline: 42px;
}

.cta-highlight-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(18, 22, 60, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cta-highlight-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--color-purple);
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.1),
    rgba(244, 43, 145, 0.08)
  );
}

.cta-highlight-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-highlight-card h3 {
  margin-bottom: 6px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-highlight-card p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}
.games-page {
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(100, 37, 230, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 6%,
      rgba(244, 43, 145, 0.07),
      transparent 30%
    ),
    #ffffff;
}

.games-hero {
  position: relative;
  padding: 92px 0 82px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(100, 37, 230, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 30%,
      rgba(255, 116, 64, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  overflow: hidden;
}

.games-hero::before {
  content: '';
  position: absolute;
  left: -160px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(100, 37, 230, 0.12),
    transparent 70%
  );
}

.games-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: 54px;
  align-items: center;
}

.games-hero-content {
  max-width: 760px;
}

.games-hero-title {
  max-width: 760px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.games-hero-text {
  max-width: 650px;
  margin-top: 20px;
  color: var(--color-muted-dark);
  font-size: 18px;
  line-height: 1.75;
}

.games-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.games-hero-panel {
  position: relative;
  min-height: 430px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 43, 145, 0.2), transparent 34%),
    radial-gradient(
      circle at 100% 20%,
      rgba(255, 116, 64, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #1b1146 0%, #100b2c 100%);
  color: #ffffff;
  box-shadow:
    0 34px 74px rgba(42, 27, 120, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.games-hero-panel::before {
  content: '';
  position: absolute;
  inset: -36px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(100, 37, 230, 0.16), transparent 64%),
    radial-gradient(
      circle at 80% 30%,
      rgba(244, 43, 145, 0.12),
      transparent 42%
    );
}

.games-hero-card-main {
  min-height: 210px;
  padding: 24px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(255, 199, 74, 0.34),
      transparent 28%
    ),
    radial-gradient(
      circle at 18% 0%,
      rgba(244, 43, 145, 0.26),
      transparent 40%
    ),
    linear-gradient(135deg, #6425e6, #e835b4);
  box-shadow: 0 22px 44px rgba(244, 43, 145, 0.2);
}

.games-hero-card-label {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: auto;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.games-hero-card-main strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.games-hero-card-main p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.games-hero-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.games-hero-mini-card {
  min-height: 106px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-hero-mini-card span {
  display: block;
  margin-bottom: 8px;
  color: #ffc74a;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.games-hero-mini-card small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.games-hero-progress {
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.games-hero-progress div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.games-hero-progress span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.games-hero-progress strong {
  color: #ffc74a;
  font-size: 14px;
  font-weight: 900;
}

.games-hero-progress-bar {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.games-hero-progress-bar span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6425e6, #f42b91, #ff7440);
  box-shadow: 0 0 24px rgba(244, 43, 145, 0.38);
}

.games-library-section {
  position: relative;
  padding: 88px 0 92px;
  background: #ffffff;
}

.games-library-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 34px;
  margin-bottom: 30px;
}

.games-library-head > div:first-child {
  max-width: 760px;
}

.games-page-notice {
  width: min(100%, 300px);
  padding: 18px 20px;
  border: 1px solid rgba(100, 37, 230, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(100, 37, 230, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(18, 22, 60, 0.06);
}

.games-page-notice strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-purple);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.games-page-notice span {
  color: var(--color-muted-dark);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.games-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.games-filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(100, 37, 230, 0.16);
  border-radius: 999px;
  color: var(--color-muted-dark);
  background: rgba(100, 37, 230, 0.04);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.games-filter-btn:hover,
.games-filter-btn.is-active {
  color: #ffffff;
  border-color: transparent;
  background: var(--gradient-main);
  transform: translateY(-2px);
}

.games-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.games-page-card {
  position: relative;
  border: 1px solid rgba(10, 16, 48, 0.09);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(20, 24, 60, 0.08);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.games-page-card:hover {
  transform: translateY(-8px);
  border-color: rgba(100, 37, 230, 0.24);
  box-shadow: 0 24px 54px rgba(35, 24, 90, 0.14);
}

.games-page-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #140d34;
}

.games-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.games-page-card:hover .games-page-media img {
  transform: scale(1.06);
}

.games-media-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.94),
    rgba(244, 43, 145, 0.94),
    rgba(255, 116, 64, 0.94)
  );
  box-shadow: 0 18px 38px rgba(42, 27, 120, 0.28);
  opacity: 0;
  transform: scale(0.86);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.games-page-card:hover .games-media-play {
  opacity: 1;
  transform: scale(1);
}

.games-media-play svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  transform: translateX(2px);
}

.games-page-body {
  padding: 22px;
}

.games-page-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.games-page-type {
  display: block;
  margin-bottom: 6px;
  color: var(--color-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.games-page-card-head h3 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.games-page-body p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.games-card-footer {
  margin-top: 18px;
}

.games-info-section {
  padding: 0 0 92px;
  background: #ffffff;
}

.games-info-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(100, 37, 230, 0.12), transparent 34%),
    radial-gradient(
      circle at 100% 0%,
      rgba(244, 43, 145, 0.09),
      transparent 34%
    ),
    linear-gradient(180deg, #fbf9ff, #ffffff);
  border: 1px solid rgba(100, 37, 230, 0.13);
  box-shadow: 0 18px 48px rgba(18, 22, 60, 0.06);
}

.games-info-title {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.games-info-panel p {
  max-width: 720px;
  color: var(--color-muted-dark);
  font-size: 16px;
  line-height: 1.72;
}

.games-info-list {
  display: grid;
  gap: 12px;
}

.games-info-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 16, 48, 0.08);
}

.games-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-purple);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.games-info-item span {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}
.contact-page {
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(100, 37, 230, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(244, 43, 145, 0.07),
      transparent 30%
    ),
    #ffffff;
}

.contact-hero {
  position: relative;
  padding: 92px 0 82px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(100, 37, 230, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 30%,
      rgba(255, 116, 64, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  left: -160px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(100, 37, 230, 0.12),
    transparent 70%
  );
}

.contact-hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 54px;
  align-items: center;
}

.contact-hero-content {
  max-width: 760px;
}

.contact-hero-title {
  max-width: 760px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.contact-hero-text {
  max-width: 650px;
  margin-top: 20px;
  color: var(--color-muted-dark);
  font-size: 18px;
  line-height: 1.75;
}

.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--color-purple);
  background: rgba(100, 37, 230, 0.07);
  border: 1px solid rgba(100, 37, 230, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.contact-hero-panel {
  position: relative;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 43, 145, 0.2), transparent 34%),
    radial-gradient(
      circle at 100% 20%,
      rgba(255, 116, 64, 0.14),
      transparent 30%
    ),
    linear-gradient(180deg, #1b1146 0%, #100b2c 100%);
  color: #ffffff;
  box-shadow:
    0 34px 74px rgba(42, 27, 120, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-panel-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 50% 32%,
      rgba(255, 199, 74, 0.34),
      transparent 28%
    ),
    radial-gradient(
      circle at 18% 0%,
      rgba(244, 43, 145, 0.26),
      transparent 40%
    ),
    linear-gradient(135deg, #6425e6, #e835b4);
  box-shadow: 0 22px 44px rgba(244, 43, 145, 0.2);
}

.contact-panel-icon {
  width: 66px;
  height: 66px;
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #ffc74a;
  background: rgba(255, 255, 255, 0.16);
}

.contact-panel-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-panel-card strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.contact-panel-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.contact-panel-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.contact-panel-mini div {
  min-height: 106px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel-mini strong {
  display: block;
  margin-bottom: 8px;
  color: #ffc74a;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.contact-panel-mini span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.contact-main-section {
  padding: 88px 0 92px;
  background: #ffffff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  border: 1px solid rgba(10, 16, 48, 0.09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(100, 37, 230, 0.08), transparent 36%),
    #ffffff;
  box-shadow: 0 18px 48px rgba(18, 22, 60, 0.07);
}

.contact-form-card {
  padding: 36px;
}

.contact-info-card {
  position: sticky;
  top: 110px;
  padding: 30px;
}

.contact-form-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.contact-section-title {
  margin-bottom: 12px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.contact-form-head p {
  color: var(--color-muted-dark);
  font-size: 16px;
  line-height: 1.7;
}

.contact-aweber-form,
.contact-aweber-form .af-form,
.contact-aweber-form .af-body {
  width: 100%;
}

.contact-aweber-form .af-element {
  margin-bottom: 18px;
}

.contact-aweber-form .previewLabel {
  display: block;
  margin-bottom: 8px;
  color: var(--color-heading);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-aweber-form .af-textWrap {
  width: 100%;
}

.contact-aweber-form input.text,
.contact-aweber-form textarea.text {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(10, 16, 48, 0.11);
  border-radius: 16px;
  outline: none;
  color: var(--color-heading);
  background: rgba(251, 249, 255, 0.74);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-aweber-form textarea.text {
  min-height: 150px;
  padding-top: 16px;
  resize: vertical;
  line-height: 1.6;
}

.contact-aweber-form input.text:focus,
.contact-aweber-form textarea.text:focus {
  border-color: rgba(100, 37, 230, 0.46);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(100, 37, 230, 0.1);
}

.contact-aweber-form .buttonContainer {
  margin-top: 24px;
}

.contact-aweber-form .submit {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--gradient-main);
  box-shadow: 0 18px 34px rgba(100, 37, 230, 0.22);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-aweber-form .submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(100, 37, 230, 0.28);
}

.contact-aweber-form .privacyPolicy,
.contact-aweber-form .poweredBy {
  margin-bottom: 0;
  text-align: center;
}

.contact-aweber-form .privacyPolicy p,
.contact-aweber-form .poweredBy p {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-aweber-form .poweredBy {
  font-size: 9px;
}

.contact-aweber-form .privacyPolicy a,
.contact-aweber-form .poweredBy a {
  color: var(--color-purple);
  font-weight: 800;
}

.contact-info-top {
  margin-bottom: 24px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: 20px;
  background: rgba(251, 249, 255, 0.68);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--color-purple);
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.1),
    rgba(244, 43, 145, 0.08)
  );
}

.contact-info-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-item h3 {
  margin-bottom: 5px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--color-purple);
}

.contact-responsible-note {
  margin-top: 18px;
  padding: 20px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 43, 145, 0.26), transparent 38%),
    linear-gradient(135deg, #1b1146, #100b2c);
}

.contact-responsible-note strong {
  display: block;
  margin-bottom: 6px;
  color: #ffc74a;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.contact-responsible-note p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.contact-faq-section {
  padding: 0 0 92px;
  background: #ffffff;
}

.contact-faq-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-faq-card {
  padding: 26px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.76)
    ),
    radial-gradient(circle at 100% 0%, rgba(100, 37, 230, 0.1), transparent 50%);
  box-shadow: 0 16px 42px rgba(18, 22, 60, 0.06);
}

.contact-faq-card h3 {
  margin-bottom: 10px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-faq-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
.not-found-page {
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(100, 37, 230, 0.09),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 6%,
      rgba(244, 43, 145, 0.07),
      transparent 30%
    ),
    #ffffff;
}

.not-found-section {
  position: relative;
  padding: 96px 0 88px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(100, 37, 230, 0.13),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 30%,
      rgba(255, 116, 64, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbf9ff 100%);
  overflow: hidden;
}

.not-found-section::before {
  content: '';
  position: absolute;
  left: -160px;
  bottom: -210px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(100, 37, 230, 0.12),
    transparent 70%
  );
}

.not-found-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.not-found-content {
  max-width: 760px;
}

.not-found-title {
  max-width: 780px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.not-found-text {
  max-width: 650px;
  margin-top: 20px;
  color: var(--color-muted-dark);
  font-size: 18px;
  line-height: 1.75;
}

.not-found-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.not-found-disclaimer {
  max-width: 540px;
  margin-top: 18px;
  color: rgba(60, 66, 89, 0.76);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.not-found-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.not-found-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 26px;
  border-radius: 36px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(244, 43, 145, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 20%,
      rgba(255, 116, 64, 0.15),
      transparent 30%
    ),
    linear-gradient(180deg, #1b1146 0%, #100b2c 100%);
  box-shadow:
    0 34px 74px rgba(42, 27, 120, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.not-found-card::before {
  content: '';
  position: absolute;
  inset: -42px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(100, 37, 230, 0.18), transparent 64%),
    radial-gradient(
      circle at 80% 30%,
      rgba(244, 43, 145, 0.14),
      transparent 42%
    );
}

.not-found-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.not-found-number span:not(.not-found-orb) {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(80px, 10vw, 132px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.not-found-orb {
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffc74a;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 199, 74, 0.34),
      transparent 36%
    ),
    linear-gradient(135deg, #6425e6, #f42b91);
  box-shadow: 0 20px 44px rgba(244, 43, 145, 0.24);
}

.not-found-orb svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linejoin: round;
}

.not-found-panel {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.not-found-panel span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
}

.not-found-panel strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.not-found-progress {
  height: 11px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.not-found-progress span {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6425e6, #f42b91, #ff7440);
  box-shadow: 0 0 24px rgba(244, 43, 145, 0.38);
}

.not-found-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.not-found-mini-grid div {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.not-found-mini-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffc74a;
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
}

.not-found-mini-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.not-found-floating {
  position: absolute;
  z-index: 3;
  min-width: 168px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(100, 37, 230, 0.16);
  box-shadow: 0 20px 44px rgba(18, 22, 60, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.not-found-floating strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.not-found-floating span {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.not-found-floating-one {
  top: 58px;
  left: 0;
}

.not-found-floating-two {
  right: 0;
  bottom: 64px;
}

.not-found-links-section {
  padding: 82px 0 96px;
  background: #ffffff;
}

.not-found-links-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.not-found-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.not-found-link-card {
  display: block;
  padding: 26px 24px;
  border: 1px solid rgba(10, 16, 48, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.76)
    ),
    radial-gradient(circle at 100% 0%, rgba(100, 37, 230, 0.1), transparent 50%);
  box-shadow: 0 16px 42px rgba(18, 22, 60, 0.06);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.not-found-link-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 37, 230, 0.2);
  box-shadow: 0 24px 54px rgba(35, 24, 90, 0.12);
}

.not-found-link-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--color-purple);
  background: linear-gradient(
    135deg,
    rgba(100, 37, 230, 0.1),
    rgba(244, 43, 145, 0.08)
  );
}

.not-found-link-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.05;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.not-found-link-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.not-found-link-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}
