@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800&family=Sora:wght@300;400;500;600;700&display=swap");

:root {
  --vk-night: #07111f;
  --vk-ink: #0c1a2e;
  --vk-panel: #12263f;
  --vk-line: rgba(212, 175, 106, 0.28);
  --vk-gold: #d4af6a;
  --vk-gold-bright: #f0d39a;
  --vk-teal: #2ec4a6;
  --vk-teal-deep: #1a8f7a;
  --vk-mist: #c9d6e8;
  --vk-soft: #8fa3bd;
  --vk-white: #f7fafc;
  --vk-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --vk-radius: 1.25rem;
  --font-display: "Cinzel", serif;
  --font-body: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--vk-mist);
  background:
    radial-gradient(circle at 12% -10%, rgba(46, 196, 166, 0.18), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(212, 175, 106, 0.16), transparent 36%),
    linear-gradient(180deg, var(--vk-night) 0%, #091628 48%, var(--vk-ink) 100%);
  min-height: 100vh;
  line-height: 1.65;
}

a {
  color: var(--vk-gold-bright);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--vk-teal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #0a1628, #12324a 50%, #0a1628);
  border-bottom: 1px solid rgba(46, 196, 166, 0.2);
  color: var(--vk-soft);
  font-size: 0.82rem;
  padding: 0.65rem 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.topbar i {
  color: var(--vk-teal);
}

.site-header {
  background: rgba(7, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.navbar-vk {
  padding: 0.95rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--vk-white);
}

.brand-lockup:hover {
  color: var(--vk-white);
  opacity: 0.92;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(46, 196, 166, 0.25), rgba(212, 175, 106, 0.2));
  border: 1px solid var(--vk-line);
  color: var(--vk-gold-bright);
  font-size: 1.15rem;
  box-shadow: inset 0 0 18px rgba(46, 196, 166, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--vk-white);
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vk-soft);
}

.navbar-toggler {
  border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 0.7rem;
  padding: 0.45rem 0.65rem;
  background: rgba(18, 38, 63, 0.7);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(46, 196, 166, 0.25);
}

.navbar-toggler-icon-custom {
  display: inline-flex;
  flex-direction: column;
  gap: 0.28rem;
  width: 1.35rem;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--vk-gold-bright);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-vk .nav-link {
  color: var(--vk-mist);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  position: relative;
}

.nav-vk .nav-link:hover,
.nav-vk .nav-link:focus {
  color: var(--vk-white);
  background: rgba(46, 196, 166, 0.1);
}

.nav-vk .nav-link.active {
  color: var(--vk-night);
  background: linear-gradient(120deg, var(--vk-gold), var(--vk-gold-bright));
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7, 17, 31, 0.55) 0%, rgba(7, 17, 31, 0.15) 55%, transparent 75%),
    radial-gradient(circle at 70% 40%, rgba(46, 196, 166, 0.12), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--vk-teal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.12;
  color: var(--vk-white);
  margin: 0 0 1.1rem;
  letter-spacing: 0.02em;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--vk-gold-bright), var(--vk-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--vk-soft);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn-vk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-vk-primary {
  color: var(--vk-night);
  background: linear-gradient(120deg, var(--vk-gold), var(--vk-gold-bright));
  box-shadow: 0 12px 28px rgba(212, 175, 106, 0.28);
}

.btn-vk-primary:hover {
  color: var(--vk-night);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(212, 175, 106, 0.38);
}

.btn-vk-ghost {
  color: var(--vk-white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 214, 232, 0.22);
}

.btn-vk-ghost:hover {
  color: var(--vk-white);
  background: rgba(46, 196, 166, 0.12);
  border-color: rgba(46, 196, 166, 0.45);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--vk-mist);
  font-size: 0.9rem;
}

.hero-meta-item i {
  color: var(--vk-teal);
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  border-radius: calc(var(--vk-radius) + 0.35rem);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 106, 0.28);
  box-shadow: var(--vk-shadow);
  background: linear-gradient(160deg, #14304d, #0b1b2f);
  animation: floatSoft 7s ease-in-out infinite;
}

.hero-frame img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.hero-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  right: -8%;
  bottom: -12%;
  background: radial-gradient(circle, rgba(46, 196, 166, 0.35), transparent 70%);
  filter: blur(18px);
  z-index: -1;
  animation: pulseGlow 5.5s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  inset: 8% 6%;
  border: 1px dashed rgba(240, 211, 154, 0.25);
  border-radius: 50%;
  pointer-events: none;
  animation: spinSlow 28s linear infinite;
}

.section {
  padding: 4.5rem 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--vk-teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.section-lead {
  color: var(--vk-soft);
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.feature-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-tile {
  background: linear-gradient(165deg, rgba(18, 38, 63, 0.92), rgba(10, 22, 40, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--vk-radius);
  padding: 1.6rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 196, 166, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--vk-gold-bright);
  background: rgba(212, 175, 106, 0.12);
  border: 1px solid rgba(212, 175, 106, 0.25);
}

.feature-tile h3 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.feature-tile p {
  margin: 0;
  color: var(--vk-soft);
  font-size: 0.95rem;
}

.games-section {
  position: relative;
}

.games-section::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(46, 196, 166, 0.08), transparent 70%);
  pointer-events: none;
}

.games-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.game-card {
  background: linear-gradient(170deg, rgba(18, 38, 63, 0.96), rgba(8, 18, 32, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: calc(var(--vk-radius) + 0.15rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 106, 0.4);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.game-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #0a1628;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-card:hover .game-media img {
  transform: scale(1.06);
}

.game-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vk-night);
  background: linear-gradient(120deg, var(--vk-teal), #7ee0cb);
}

.game-body {
  padding: 1.25rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.game-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.game-title a {
  color: var(--vk-white);
}

.game-title a:hover {
  color: var(--vk-gold-bright);
}

.game-desc {
  margin: 0;
  color: var(--vk-soft);
  font-size: 0.9rem;
  flex: 1;
}

.game-actions {
  margin-top: 0.25rem;
}

.btn-play {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--vk-night);
  background: linear-gradient(120deg, var(--vk-gold), var(--vk-gold-bright));
  box-shadow: 0 10px 24px rgba(212, 175, 106, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-play:hover {
  color: var(--vk-night);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 175, 106, 0.34);
}

.content-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.content-panel {
  background: linear-gradient(165deg, rgba(18, 38, 63, 0.92), rgba(10, 22, 40, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: calc(var(--vk-radius) + 0.2rem);
  padding: 2rem;
}

.panel-heading {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.content-copy p {
  color: var(--vk-soft);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.content-copy p:last-child {
  margin-bottom: 0;
}

.point-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.point-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--vk-mist);
  font-size: 0.98rem;
}

.point-list i {
  color: var(--vk-teal);
  margin-top: 0.25rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step-card {
  background: linear-gradient(165deg, rgba(18, 38, 63, 0.92), rgba(10, 22, 40, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--vk-radius);
  padding: 1.7rem;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vk-night);
  background: linear-gradient(120deg, var(--vk-gold), var(--vk-gold-bright));
}

.step-card h3 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.step-card p {
  margin: 0;
  color: var(--vk-soft);
  font-size: 0.98rem;
}

.disclaimer-band {
  background:
    linear-gradient(135deg, rgba(18, 50, 58, 0.95), rgba(12, 26, 46, 0.98)),
    radial-gradient(circle at top right, rgba(46, 196, 166, 0.16), transparent 45%);
  border-top: 1px solid rgba(46, 196, 166, 0.22);
  border-bottom: 1px solid rgba(212, 175, 106, 0.18);
}

.disclaimer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.disclaimer-card {
  background: rgba(7, 17, 31, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--vk-radius);
  padding: 1.8rem;
}

.disclaimer-card h3 {
  font-family: var(--font-display);
  color: var(--vk-gold-bright);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.disclaimer-card h3 i {
  color: var(--vk-teal);
}

.disclaimer-card p {
  color: var(--vk-mist);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.disclaimer-card p:last-child {
  margin-bottom: 0;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.experience-item {
  padding: 1.6rem;
  border-radius: var(--vk-radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(12, 26, 46, 0.72);
}

.experience-item h3 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1.1rem;
  margin: 0.8rem 0 0.65rem;
}

.experience-item p {
  margin: 0;
  color: var(--vk-soft);
  font-size: 0.96rem;
}

.experience-item i {
  color: var(--vk-gold-bright);
  font-size: 1.25rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 12, 22, 0.92);
  padding: 3.5rem 0 1.75rem;
  margin-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--vk-soft);
  max-width: 26rem;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--vk-gold-bright);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.04em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li + li {
  margin-top: 0.45rem;
}

.footer-col a {
  color: var(--vk-mist);
}

.footer-col a:hover {
  color: var(--vk-teal);
}

.footer-support {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.6rem 0;
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.footer-support-copy h4 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.footer-support-copy p {
  margin: 0 0 0.9rem;
  color: var(--vk-soft);
  font-size: 0.92rem;
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}

.support-links a {
  color: var(--vk-gold-bright);
  font-size: 0.92rem;
}

.footer-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-badge-link img {
  width: 180px;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.55rem;
}

.footer-disclaimers {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  color: var(--vk-soft);
  font-size: 0.9rem;
}

.footer-disclaimers p {
  margin: 0;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--vk-soft);
  font-size: 0.88rem;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: riseIn 0.9s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.24s;
}

.reveal-delay-3 {
  animation-delay: 0.36s;
}

@media (max-width: 991.98px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 3.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .nav-vk {
    margin-top: 0.85rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(12, 26, 46, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-vk .nav-link {
    border-radius: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .feature-board {
    grid-template-columns: 1fr;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .content-split,
  .disclaimer-grid,
  .steps-grid,
  .experience-strip,
  .footer-support,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid .game-card:last-child {
    grid-column: 1 / -1;
    max-width: 24rem;
    justify-self: center;
    width: 100%;
  }

  .steps-grid,
  .experience-strip,
  .disclaimer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-vk {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.vk-scroll-lock {
  overflow: hidden !important;
  height: 100%;
}

.vk-age-gate {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(7, 17, 31, 0.42);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
}

.vk-age-gate.is-open {
  display: flex;
}

.vk-age-card {
  width: min(420px, 100%);
  background: linear-gradient(165deg, rgba(18, 38, 63, 0.97), rgba(8, 18, 32, 0.98));
  border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 1.25rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.vk-age-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.9rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vk-gold-bright);
  background: rgba(212, 175, 106, 0.12);
  border: 1px solid rgba(212, 175, 106, 0.28);
}

.vk-age-card h2 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.vk-age-card p {
  color: var(--vk-soft);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.vk-age-actions {
  display: grid;
  gap: 0.7rem;
}

.vk-age-actions .btn-vk {
  width: 100%;
}

.vk-cookie-bar {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
}

.vk-cookie-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(10, 22, 40, 0.96);
  border: 1px solid rgba(46, 196, 166, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.vk-cookie-copy strong {
  display: block;
  color: var(--vk-white);
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}

.vk-cookie-copy p {
  margin: 0;
  color: var(--vk-soft);
  font-size: 0.9rem;
  max-width: 40rem;
}

.vk-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.page-hero {
  padding: 3.2rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: var(--vk-soft);
  max-width: 46rem;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.page-section {
  padding: 1.5rem 0 4rem;
}

.prose-block {
  background: linear-gradient(165deg, rgba(18, 38, 63, 0.88), rgba(10, 22, 40, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--vk-radius);
  padding: 1.8rem;
  margin-bottom: 1.25rem;
}

.prose-block h2 {
  font-family: var(--font-display);
  color: var(--vk-gold-bright);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.prose-block h3 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: 1.1rem;
  margin: 1.2rem 0 0.6rem;
}

.prose-block p,
.prose-block li {
  color: var(--vk-soft);
  font-size: 1rem;
}

.prose-block p {
  margin-bottom: 0.95rem;
}

.prose-block ul {
  padding-left: 1.2rem;
  margin-bottom: 0.9rem;
}

.prose-block li + li {
  margin-top: 0.4rem;
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: rgba(46, 196, 166, 0.12);
  border: 1px solid rgba(46, 196, 166, 0.3);
  color: var(--vk-gold-bright);
  font-weight: 600;
}

.contact-email:hover {
  color: var(--vk-white);
}

.vk-game-shell {
  padding: 2.5rem 0 4rem;
}

.vk-game-title-row {
  margin-bottom: 1.4rem;
}

.vk-game-title-row h1 {
  font-family: var(--font-display);
  color: var(--vk-white);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.vk-game-title-row p {
  color: var(--vk-soft);
  max-width: 44rem;
  margin: 0;
}

.vk-slot-stage {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.vk-slot-stage::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.vk-slot-stage.is-emerald {
  background:
    radial-gradient(circle at 80% 10%, rgba(46, 196, 166, 0.28), transparent 40%),
    linear-gradient(160deg, #0b2a24, #07111f 55%, #0a1c18);
}

.vk-slot-stage.is-aurora {
  background:
    radial-gradient(circle at 20% 0%, rgba(94, 234, 212, 0.25), transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(125, 211, 252, 0.22), transparent 40%),
    linear-gradient(160deg, #082033, #07111f 60%, #0a1a2c);
}

.vk-slot-stage.is-gold {
  background:
    radial-gradient(circle at 70% 0%, rgba(240, 211, 154, 0.28), transparent 40%),
    linear-gradient(160deg, #2a1d0b, #07111f 55%, #1a1408);
}

.vk-slot-hud,
.vk-game-hud {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.vk-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--vk-white);
  font-size: 0.9rem;
}

.vk-chip strong {
  color: var(--vk-gold-bright);
}

.vk-slot-frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 30px rgba(46, 196, 166, 0.08);
}

.vk-reel {
  height: 110px;
  overflow: hidden;
  border-radius: 0.85rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 24px rgba(46, 196, 166, 0.12);
}

.vk-reel-track {
  will-change: transform;
}

.vk-reel-cell {
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.vk-sym-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07111f;
  background: var(--sym, #d4af6a);
  box-shadow: 0 0 18px color-mix(in srgb, var(--sym, #d4af6a) 55%, transparent);
  font-size: 1.2rem;
}

.vk-sym-label {
  font-size: 0.75rem;
  color: var(--vk-mist);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vk-slot-controls {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
}

.vk-slot-message {
  color: var(--vk-mist);
  font-size: 0.92rem;
  max-width: 34rem;
  margin: 0;
}

.vk-slot-message.is-good {
  color: #7ee0cb;
}

.vk-slot-message.is-spin {
  color: var(--vk-gold-bright);
}

.vk-game-note {
  margin-top: 0.4rem;
}

.free-hero {
  padding: 3.5rem 0 2rem;
}

.free-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.free-hero-art {
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 106, 0.28);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  animation: floatSoft 7s ease-in-out infinite;
}

.free-hero-art img {
  width: 100%;
  display: block;
}

.free-stage {
  position: relative;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.free-stage.is-memory {
  background:
    radial-gradient(circle at 85% 10%, rgba(46, 196, 166, 0.25), transparent 40%),
    linear-gradient(160deg, #0b2a24, #07111f 60%, #0a1c18);
}

.free-stage.is-aurora {
  background:
    radial-gradient(circle at 15% 0%, rgba(94, 234, 212, 0.28), transparent 36%),
    radial-gradient(circle at 90% 40%, rgba(125, 211, 252, 0.2), transparent 42%),
    linear-gradient(160deg, #082033, #07111f 60%, #0a1a2c);
}

.free-stage.is-path {
  background:
    radial-gradient(circle at 70% 0%, rgba(240, 211, 154, 0.26), transparent 40%),
    linear-gradient(160deg, #2a1d0b, #07111f 55%, #1a1408);
}

.memory-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  position: relative;
  z-index: 1;
}

.memory-card {
  aspect-ratio: 1;
  border: none;
  border-radius: 0.9rem;
  cursor: pointer;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--vk-gold-bright);
  font-size: 1.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 0 0 rgba(46, 196, 166, 0);
}

.memory-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.memory-card.is-flipped,
.memory-card.is-matched {
  background: linear-gradient(145deg, rgba(46, 196, 166, 0.35), rgba(212, 175, 106, 0.28));
  color: var(--vk-white);
  box-shadow: 0 0 22px rgba(46, 196, 166, 0.28);
}

.memory-card.is-matched {
  opacity: 0.72;
  cursor: default;
}

.aurora-arena {
  position: relative;
  z-index: 1;
  height: 340px;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 40px rgba(94, 234, 212, 0.12);
}

.aurora-orb {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: radial-gradient(circle at 30% 30%, #fff7, #5eead4 45%, #0ea5a4);
  box-shadow: 0 0 24px rgba(94, 234, 212, 0.7), 0 0 48px rgba(125, 211, 252, 0.35);
  animation: pulseGlow 1.2s ease-in-out infinite;
}

.aurora-orb:hover {
  transform: scale(1.08);
}

.path-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
}

.path-cell {
  aspect-ratio: 1;
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--vk-mist);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.path-cell.is-step {
  background: rgba(212, 175, 106, 0.18);
  border-color: rgba(212, 175, 106, 0.45);
}

.path-cell.is-active {
  background: linear-gradient(145deg, rgba(240, 211, 154, 0.55), rgba(46, 196, 166, 0.35));
  color: var(--vk-night);
  box-shadow: 0 0 22px rgba(240, 211, 154, 0.45);
  transform: scale(1.04);
}

.path-cell.is-done {
  background: rgba(46, 196, 166, 0.35);
  border-color: rgba(46, 196, 166, 0.5);
  color: var(--vk-white);
}

.path-cell.is-goal {
  box-shadow: inset 0 0 0 2px rgba(240, 211, 154, 0.7);
}

.free-controls {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
}

.free-status {
  margin: 0;
  color: var(--vk-mist);
  font-size: 0.92rem;
  max-width: 34rem;
}

.free-status.is-good {
  color: #7ee0cb;
}

@media (max-width: 991.98px) {
  .free-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .memory-board {
    gap: 0.45rem;
  }

  .aurora-arena {
    height: 280px;
  }

  .free-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 575.98px) {
  .vk-cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .vk-cookie-actions .btn-vk {
    width: 100%;
  }

  .vk-slot-controls {
    flex-direction: column;
    align-items: stretch;
  }
}
