html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #e9ecf5;
  background: radial-gradient(circle at 40% 20%, #0d0b18 0%, #05040a 80%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}


/* Подсветка заднего фона */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(100, 180, 255, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(180, 80, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}


/* ===== HEADER — Aurora Flow Style ===== */
.header-vibrelaxor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: background 0.4s ease;
}

.header-vibrelaxor__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8%;
}

.header-vibrelaxor__logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90deg, #b8e5ff, #e6d6ff);
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
  transition: opacity 0.3s;
}

.header-vibrelaxor__logo:hover {
  opacity: 0.8;
}

.header-vibrelaxor__nav {
  display: flex;
  gap: 36px;
}

.header-vibrelaxor__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s, opacity 0.3s;
}

.header-vibrelaxor__link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, #c4f2ff, #d9c6ff);
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.header-vibrelaxor__link:hover {
  color: #ffffff;
  opacity: 1;
}

.header-vibrelaxor__link:hover::after {
  width: 100%;
}

/* BURGER MENU */
.header-vibrelaxor__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-vibrelaxor__burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  transition: 0.4s;
}

/* ACTIVE BURGER ANIMATION */
.header-vibrelaxor__burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.header-vibrelaxor__burger.active span:nth-child(2) {
  opacity: 0;
}

.header-vibrelaxor__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .header-vibrelaxor__burger {
    display: flex;
  }

  .header-vibrelaxor__nav {
    position: absolute;
    top: 100%;
    right: 8%;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px 32px;
    backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .header-vibrelaxor__nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.hero-vibrelaxor {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #060512;
  color: #fff;
}

/* DYNAMIC BACKGROUND */
.hero-vibrelaxor__aurora {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(100, 220, 255, 0.25) 0%, transparent 70%),
    radial-gradient(circle at 70% 60%, rgba(180, 90, 255, 0.25) 0%, transparent 70%);
  filter: blur(100px);
  animation: auroraMove 18s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-vibrelaxor__gradient {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 120deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0.2;
  mix-blend-mode: overlay;
  z-index: 2;
}

@keyframes auroraMove {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(-3%, 3%);
  }
}

/* CONTENT */
.hero-vibrelaxor__content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  padding: 0 8%;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-vibrelaxor__title {
  font-size: clamp(3rem, 8vw, 6rem);
  background: linear-gradient(90deg, #5cd4ff, #c58aff, #7dd9ff);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: glowShift 10s linear infinite;
}

@keyframes glowShift {
  0% {
    filter: drop-shadow(0 0 20px rgba(100, 200, 255, 0.3));
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(200, 120, 255, 0.4));
  }

  100% {
    filter: drop-shadow(0 0 20px rgba(100, 200, 255, 0.3));
  }
}

.hero-vibrelaxor__subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.hero-vibrelaxor__text {
  font-size: 1.1rem;
  color: rgba(240, 240, 255, 0.8);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* BUTTONS */
.hero-vibrelaxor__actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-vibrelaxor__btn {
  display: inline-block;
  padding: 14px 46px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.hero-vibrelaxor__btn--primary {
  background: linear-gradient(90deg, #69d6ff, #b38aff);
  color: #fff;
  box-shadow: 0 0 30px rgba(150, 200, 255, 0.25);
}

.hero-vibrelaxor__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 45px rgba(180, 150, 255, 0.4);
}

.hero-vibrelaxor__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-vibrelaxor__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* DISCLAIMER */
.hero-vibrelaxor__disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-vibrelaxor__title {
    font-size: 2.8rem;
  }

  .hero-vibrelaxor__subtitle {
    font-size: 1.1rem;
  }

  .hero-vibrelaxor__text {
    font-size: 0.95rem;
  }

  .hero-vibrelaxor__btn {
    padding: 12px 32px;
    font-size: 0.9rem;
  }
}






.about-vibrelaxor {
  position: relative;
  background: linear-gradient(180deg, #070611 0%, #0b0a18 100%);
  padding: 160px 0;
  overflow: hidden;
}

.about-vibrelaxor__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  padding: 0 10%;
  position: relative;
  z-index: 2;
}

/* TEXT SIDE */
.about-vibrelaxor__text {
  flex: 1 1 50%;
  max-width: 560px;
}

.about-vibrelaxor__title {
  font-size: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(90deg, #6ad0ff, #b18bff);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-bottom: 28px;
}

.about-vibrelaxor__text p {
  font-size: 1.1rem;
  color: rgba(230, 235, 255, 0.9);
  margin-bottom: 18px;
  line-height: 1.7;
}

.about-vibrelaxor__list {
  list-style: none;
  padding: 0;
  margin: 26px 0 40px;
}

.about-vibrelaxor__list li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-vibrelaxor__btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 40px;
  background: linear-gradient(90deg, #66d5ff, #af91ff);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(130, 180, 255, 0.25);
  transition: 0.3s ease;
}

.about-vibrelaxor__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(170, 150, 255, 0.4);
}

/* VISUAL SIDE */
.about-vibrelaxor__visual {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-vibrelaxor__visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 0 60px rgba(140, 180, 255, 0.25);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.about-vibrelaxor__visual img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 80px rgba(160, 130, 255, 0.35);
}

/* ADAPTIVE */
@media (max-width: 992px) {
  .about-vibrelaxor__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 60px;
  }

  .about-vibrelaxor__visual img {
    width: 90%;
  }
}





.moment-vibrelaxor {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90vh;
  overflow: hidden;
  background: #05040a;
}

.moment-vibrelaxor__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.moment-vibrelaxor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  filter: brightness(0.7) blur(1px);
  transform: scale(1.05);
  animation: slowPan 30s ease-in-out infinite alternate;
}

@keyframes slowPan {
  0% {
    transform: scale(1.05) translateX(0);
  }

  100% {
    transform: scale(1.1) translateX(-2%);
  }
}

.moment-vibrelaxor__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(150, 80, 255, 0.25) 0%, transparent 70%),
    radial-gradient(circle at 20% 70%, rgba(80, 180, 255, 0.2) 0%, transparent 70%);
  z-index: 1;
  mix-blend-mode: screen;
}

/* CONTENT */
.moment-vibrelaxor__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: 10%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 48px;
  box-shadow: 0 0 40px rgba(100, 150, 255, 0.15);
  animation: fadeInBlock 1.2s ease forwards;
}

@keyframes fadeInBlock {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.moment-vibrelaxor__title {
  font-size: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(90deg, #7fd9ff, #b894ff);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  margin-bottom: 20px;
}

.moment-vibrelaxor__text {
  font-size: 1.1rem;
  color: rgba(235, 240, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 32px;
}

.moment-vibrelaxor__btn {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 40px;
  background: linear-gradient(90deg, #70d3ff, #b18cff);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 0 25px rgba(160, 200, 255, 0.25);
  transition: 0.3s ease;
}

.moment-vibrelaxor__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(200, 170, 255, 0.35);
}

/* ADAPTIVE */
@media (max-width: 992px) {
  .moment-vibrelaxor {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
  }

  .moment-vibrelaxor__content {
    margin: 0;
    max-width: 90%;
    padding: 50px 30px;
  }

  .moment-vibrelaxor__image img {
    filter: brightness(0.6);
  }
}

.philosophy-vibrelaxor {
  position: relative;
  padding: 180px 10%;
  background: linear-gradient(180deg, #080711 0%, #0b0916 100%);
  overflow: hidden;
  text-align: center;
}

.philosophy-vibrelaxor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(130, 200, 255, 0.15) 0%, transparent 70%),
    radial-gradient(circle at 30% 70%, rgba(170, 100, 255, 0.15) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 0;
  animation: fadeAurora 10s ease-in-out infinite alternate;
}

@keyframes fadeAurora {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.philosophy-vibrelaxor__inner {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
}

.philosophy-vibrelaxor__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  background: linear-gradient(90deg, #72d4ff, #b38cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 32px;
}

.philosophy-vibrelaxor__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(230, 235, 255, 0.9);
  opacity: 0.95;
  text-shadow: 0 0 24px rgba(100, 180, 255, 0.05);
}

.philosophy-vibrelaxor__text strong {
  color: #b48cff;
  font-weight: 600;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .philosophy-vibrelaxor {
    padding: 120px 8%;
  }

  .philosophy-vibrelaxor__text {
    font-size: 1.05rem;
  }
}


.cta-vibrelaxor {
  position: relative;
  padding: 200px 10% 180px;
  background: linear-gradient(180deg, #0b0918 0%, #090713 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-vibrelaxor__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(140, 180, 255, 0.25) 0%, transparent 70%),
    radial-gradient(circle at 70% 40%, rgba(180, 120, 255, 0.2) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  animation: glowPulse 10s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.cta-vibrelaxor__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px) saturate(160%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 60px;
  box-shadow: 0 0 50px rgba(120, 150, 255, 0.1);
}

.cta-vibrelaxor__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  background: linear-gradient(90deg, #72d4ff, #b58cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}

.cta-vibrelaxor__text {
  font-size: 1.2rem;
  color: rgba(235, 240, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-vibrelaxor__text strong {
  color: #b58cff;
  font-weight: 600;
}

.cta-vibrelaxor__btn {
  display: inline-block;
  padding: 16px 56px;
  border-radius: 40px;
  background: linear-gradient(90deg, #6dd5ff 0%, #b48cff 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 0 25px rgba(130, 180, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-vibrelaxor__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 45px rgba(160, 140, 255, 0.4);
}

.cta-vibrelaxor__disclaimer {
  margin-top: 26px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-vibrelaxor {
    padding: 140px 8%;
  }

  .cta-vibrelaxor__inner {
    padding: 60px 32px;
  }

  .cta-vibrelaxor__text {
    font-size: 1rem;
  }
}

.footer-vibrelaxor {
  position: relative;
  background: linear-gradient(180deg, #080714 0%, #05040a 100%);
  color: rgba(230, 235, 255, 0.85);
  padding: 120px 10% 60px;
  overflow: hidden;
}

.footer-vibrelaxor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 20%, rgba(100, 180, 255, 0.1), transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(180, 100, 255, 0.1), transparent 70%);
  filter: blur(100px);
  z-index: 0;
}

.footer-vibrelaxor__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

/* BRAND */
.footer-vibrelaxor__logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #70d3ff, #b38bff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.footer-vibrelaxor__desc {
  max-width: 280px;
  font-size: 0.95rem;
  color: rgba(230, 235, 255, 0.75);
  line-height: 1.6;
}

/* COLUMNS */
.footer-vibrelaxor__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-vibrelaxor__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-vibrelaxor__list li {
  margin-bottom: 10px;
}

.footer-vibrelaxor__list a {
  text-decoration: none;
  color: rgba(230, 235, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-vibrelaxor__list a:hover {
  color: #fff;
}

/* BOTTOM */
.footer-vibrelaxor__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  text-align: center;
}

.footer-vibrelaxor__copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.footer-vibrelaxor__note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-vibrelaxor__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-vibrelaxor__col {
    max-width: 300px;
  }
}

.slot-vibrelaxor {
  position: relative;
  padding: 120px 6% 90px;
  color: #eaf0ff;
  background: radial-gradient(circle at 60% 20%, #0a0a16 0%, #060511 70%);
  overflow: hidden;
}


.slot-vibrelaxor__hud {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2
}

.slot-vibrelaxor__hud-item {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 180px;
  text-align: center
}

.slot-vibrelaxor__hud-item span {
  display: block;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7)
}

.slot-vibrelaxor__hud-item b {
  font-size: 1.2rem;
  letter-spacing: .5px
}

.bet {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center
}

.bet button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: #fff
}

.slot-vibrelaxor__machine {
  position: relative;
  z-index: 2;
  margin: 0 auto 20px;
  max-width: 980px;
  aspect-ratio: 16/7;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 60px rgba(120, 160, 255, .12) inset, 0 0 80px rgba(120, 160, 255, .08)
}

.slot-vibrelaxor__frame {
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  pointer-events: none
}

.slot-vibrelaxor__reels {
  position: absolute;
  inset: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px
}

.reel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .06)
}

.cells {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  transform: translateY(0);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1)
}

/* --- SYMBOLS AS SVG ICONS --- */
.cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.cell:last-child {
  border-bottom: 0
}

.icon {
  width: 64px;
  height: 64px;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(140, 180, 255, .25));
  transition: transform .25s ease, filter .25s ease;
}

.cell:hover .icon {
  transform: translateY(-2px) scale(1.03);
}

/* индивидуальные градиенты по символам */
.icon--A stop[offset="0"] {
  stop-color: #7bd9ff;
}

.icon--A stop[offset="1"] {
  stop-color: #9ff7e5;
}

.icon--B stop[offset="0"] {
  stop-color: #b98cff;
}

.icon--B stop[offset="1"] {
  stop-color: #ffd7a6;
}

.icon--C stop[offset="0"] {
  stop-color: #ffd27e;
}

.icon--C stop[offset="1"] {
  stop-color: #ff9dbd;
}

.icon--D stop[offset="0"] {
  stop-color: #9ee37d;
}

.icon--D stop[offset="1"] {
  stop-color: #69d6ff;
}

.icon--E stop[offset="0"] {
  stop-color: #ffe07d;
}

.icon--E stop[offset="1"] {
  stop-color: #b68cff;
}

/* подсветка выигрыша */
.cell.win .icon {
  animation: winPulse 1.1s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 18px rgba(160, 130, 255, .85));
}

@keyframes winPulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* анимация “живости” во время спина */
.cell.spinning .icon {
  animation: wiggle .7s ease-in-out infinite;
}

@keyframes wiggle {

  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

/* --- PARTICLE BURST (вспышки) --- */
.p-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.p {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, .2) 60%, transparent 70%);
  box-shadow: 0 0 14px rgba(200, 180, 255, .8);
  transform: translate(-50%, -50%);
  animation: shoot .6s ease-out forwards;
}

@keyframes shoot {
  to {
    transform:
      translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(0.8);
    opacity: 0;
    box-shadow: 0 0 0 rgba(200, 180, 255, 0);
  }
}

/* чуть уменьшим на мобилке */
@media(max-width:900px) {
  .icon {
    width: 56px;
    height: 56px;
  }
}


.slot-vibrelaxor__glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(150, 190, 255, .12), transparent 70%);
  filter: blur(40px);
  pointer-events: none
}

.slot-vibrelaxor__controls {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  position: relative;
  z-index: 2
}

.btn-primary,
.btn-ghost {
  padding: 14px 42px;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase
}

.btn-primary {
  background: linear-gradient(90deg, #6dd5ff, #b58cff);
  color: #fff;
  box-shadow: 0 0 25px rgba(130, 180, 255, .25)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(170, 150, 255, .35)
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .12)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12)
}

.slot-vibrelaxor__disclaimer {
  text-align: center;
  margin-top: 16px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  font-style: italic
}

@media(max-width:900px) {
  .slot-vibrelaxor {
    padding: 110px 4% 80px
  }

  .slot-vibrelaxor__hud {
    grid-template-columns: repeat(2, 1fr)
  }

  .cell i {
    width: 56px;
    height: 56px
  }
}

/* ---------- ABOUT: HERO ---------- */
.about-hero {
  position: relative;
  padding: 140px 6% 80px;
  text-align: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 30% at 60% 20%, rgba(120, 190, 255, .14) 0%, transparent 70%),
    radial-gradient(30% 30% at 20% 70%, rgba(180, 120, 255, .14) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.about-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  background: linear-gradient(90deg, #72d4ff, #b58cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.about-hero__lead {
  color: rgba(235, 240, 255, .9);
  font-size: 1.15rem;
  line-height: 1.75;
}

/* ---------- ABOUT: STORY ---------- */
.about-story {
  padding: 100px 8% 40px;
  background: linear-gradient(180deg, #0b0a18 0%, #0a0916 100%);
}

.about-story__inner {
  max-width: 820px;
}

.about-story__title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  margin-bottom: 14px;
  background: linear-gradient(90deg, #7fd9ff, #b894ff);
  -webkit-background-clip: text;
  color: transparent;
}

.about-story p {
  color: rgba(230, 235, 255, .92);
  margin: 0 0 14px;
  line-height: 1.75;
}

/* ---------- ABOUT: HIGHLIGHTS GRID ---------- */
.about-highlights {
  padding: 80px 8%;
}

.about-highlights__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.highlight {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(14px) saturate(160%);
}

.highlight__title {
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.highlight__text {
  color: rgba(235, 240, 255, .85);
  line-height: 1.7;
}

/* ---------- ABOUT: HOW ---------- */
.about-how {
  padding: 100px 8%;
  background: linear-gradient(180deg, #0a0916 0%, #0b0a18 100%);
}

.about-how__inner {
  max-width: 820px;
}

.about-how__title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  background: linear-gradient(90deg, #72d4ff, #b58cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.steps {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(235, 240, 255, .9);
}

.steps__badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, #70d3ff, #b18cff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.about-how__note {
  color: rgba(255, 255, 255, .6);
  font-style: italic;
}

/* ---------- ABOUT: SOCIAL (text + image) ---------- */
.about-social {
  padding: 100px 8%;
}

.about-social__inner {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.about-social__text {
  flex: 1 1 50%;
}

.about-social__title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  background: linear-gradient(90deg, #7fd9ff, #b894ff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.bullets li {
  color: rgba(235, 240, 255, .9);
}

.about-social__visual {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.about-social__visual img {
  width: 100%;
  max-width: 540px;
  border-radius: 22px;
  box-shadow: 0 0 60px rgba(140, 180, 255, .22);
}

/* ---------- ABOUT: SAFETY ---------- */
.about-safety {
  padding: 100px 8%;
  background: linear-gradient(180deg, #0b0a18 0%, #090714 100%);
  text-align: center;
}

.about-safety__inner {
  max-width: 860px;
  margin: 0 auto;
}

.about-safety__title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  background: linear-gradient(90deg, #72d4ff, #b58cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 6px 0 14px;
  padding: 0;
  list-style: none;
}

.badge {
  padding: 10px 16px;
  border-radius: 40px;
  font-weight: 600;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.about-safety__disclaimer {
  color: rgba(255, 255, 255, .68);
  font-style: italic;
}

/* ---------- ABOUT: CTA ---------- */
.about-cta {
  position: relative;
  padding: 140px 8%;
  text-align: center;
  overflow: hidden;
}

.about-cta__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 60% at 50% 100%, rgba(120, 180, 255, .18) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.about-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  padding: 70px 50px;
  backdrop-filter: blur(16px) saturate(160%);
}

.about-cta__title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  background: linear-gradient(90deg, #72d4ff, #b58cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.about-cta__text {
  color: rgba(235, 240, 255, .88);
  margin-bottom: 24px;
}

.about-cta__btn {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 40px;
  background: linear-gradient(90deg, #6dd5ff, #b48cff);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  box-shadow: 0 0 25px rgba(130, 180, 255, .25);
  transition: .3s ease;
}

.about-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(170, 150, 255, .35);
}

/* ---------- ADAPTIVE ---------- */
@media (max-width: 992px) {
  .about-highlights__inner {
    grid-template-columns: 1fr;
  }

  .about-social__inner {
    flex-direction: column;
    text-align: center;
  }

  .about-social__visual img {
    width: 90%;
  }
}

/* ===== PRIVACY ===== */
.privacy-hero {
  position: relative;
  padding: 140px 6% 80px;
  text-align: center;
}

.privacy-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 30% at 60% 20%, rgba(120, 190, 255, .14) 0%, transparent 70%),
    radial-gradient(30% 30% at 20% 70%, rgba(180, 120, 255, .14) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

.privacy-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.privacy-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  background: linear-gradient(90deg, #72d4ff, #b58cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.privacy-hero__lead {
  color: rgba(235, 240, 255, .9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.privacy-hero__meta {
  margin-top: 12px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}

.privacy-section {
  padding: 70px 8%;
  background: linear-gradient(180deg, #0b0a18 0%, #090714 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.privacy-section:first-of-type {
  border-top: none;
}

.privacy-section h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  background: linear-gradient(90deg, #7fd9ff, #b894ff);
  -webkit-background-clip: text;
  color: transparent;
  margin: 0 0 12px;
}

.privacy-section h3 {
  margin: 18px 0 6px;
  color: #fff;
  font-size: 1.05rem;
}

.privacy-section p {
  color: rgba(235, 240, 255, .9);
  line-height: 1.75;
  margin: 0 0 8px;
}

.privacy-section a {
  color: #9fd8ff;
  text-decoration: none;
}

.privacy-section a:hover {
  text-decoration: underline;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 8px;
}

.privacy-list li {
  color: rgba(235, 240, 255, .9);
}

.privacy-cta {
  padding: 90px 8%;
  text-align: center;
  background: linear-gradient(180deg, #090714 0%, #080712 100%);
}

.privacy-cta__inner {
  display: inline-block;
  padding: 26px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px) saturate(160%);
}

.privacy-cta__note {
  color: rgba(235, 240, 255, .9);
  margin: 0 0 8px;
}

.privacy-cta__link {
  display: inline-block;
  color: #fff;
  border-bottom: 1px dashed rgba(255, 255, 255, .4);
  padding-bottom: 2px;
}

.privacy-cta__link:hover {
  border-bottom-color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .privacy-section {
    padding: 56px 6%;
  }
}

/* ===== TERMS ===== */
.terms-hero {
  position: relative;
  padding: 140px 6% 80px;
  text-align: center;
}

.terms-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 30% at 60% 20%, rgba(120, 190, 255, .14) 0%, transparent 70%),
    radial-gradient(30% 30% at 20% 70%, rgba(180, 120, 255, .14) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

.terms-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.terms-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  background: linear-gradient(90deg, #72d4ff, #b58cff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.terms-hero__lead {
  color: rgba(235, 240, 255, .9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.terms-hero__meta {
  margin-top: 12px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}

.terms-section {
  padding: 70px 8%;
  background: linear-gradient(180deg, #0b0a18 0%, #090714 100%);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.terms-section:first-of-type {
  border-top: none;
}

.terms-section h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  background: linear-gradient(90deg, #7fd9ff, #b894ff);
  -webkit-background-clip: text;
  color: transparent;
  margin: 0 0 12px;
}

.terms-section p {
  color: rgba(235, 240, 255, .9);
  line-height: 1.75;
  margin: 0 0 8px;
}

.terms-list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 8px;
}

.terms-list li {
  color: rgba(235, 240, 255, .9);
}

.terms-cta {
  padding: 90px 8%;
  text-align: center;
  background: linear-gradient(180deg, #090714 0%, #080712 100%);
}

.terms-cta__inner {
  display: inline-block;
  padding: 26px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px) saturate(160%);
}

.terms-cta__note {
  color: rgba(235, 240, 255, .9);
  margin: 0 0 8px;
}

.terms-cta__link {
  display: inline-block;
  color: #fff;
  border-bottom: 1px dashed rgba(255, 255, 255, .4);
  padding-bottom: 2px;
}

.terms-cta__link:hover {
  border-bottom-color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .terms-section {
    padding: 56px 6%;
  }
}