:root {
  --bg: #050510;
  --bg-alt: #11122b;
  --card: rgba(24, 25, 55, 0.8);
  --accent: #ff4fd8;
  --accent-2: #ff9a24;
  --accent-3: #5ef1ff;
  --logo-cyan: #4affef;
  --logo-pink: #ff4fd8;
  --logo-orange: #ff9a24;
  --text: #f6f7ff;
  --muted: rgba(255, 255, 255, 0.72);
  --shadow-light: rgba(255, 255, 255, 0.1);
  --shadow-dark: rgba(2, 3, 16, 0.9);
}

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

body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  position: relative;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--logo-cyan) 0%, var(--logo-pink) 45%, var(--logo-orange) 100%);
  opacity: 0.5;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: -10% -5% 20% -5%;
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 255, 239, 0.35), transparent 60%),
    radial-gradient(circle at 80% 0%, rgba(255, 79, 216, 0.45), transparent 55%),
    radial-gradient(circle at 90% 70%, rgba(255, 154, 36, 0.4), transparent 60%);
  filter: blur(40px);
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%224%22 height=%224%22 viewBox=%220 0 4 4%22%3E%3Cpath fill=%22%23FFFFFF%22 fill-opacity=%220.2%22 d=%22M0 0h1v1H0zm2 0h1v1H2zM1 1h1v1H1zm2 1h1v1H3zM0 2h1v1H0zm2 2h1v1H2z%22/%3E%3C/svg%3E');
  z-index: 0;
}


img {
  max-width: 100%;
  display: block;
  height: auto;
}

@media (max-width: 768px) {
  img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(94, 241, 255, 0.2);
  touch-action: manipulation;
}

main {
  padding: 0 5vw 6rem;
}

@media (max-width: 768px) {
  main {
    padding: 0 1rem 4rem;
  }
}

.hero {
  position: relative;
  padding: 8rem 5vw 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.header-panel {
  position: sticky;
  top: 0;
  z-index: 6;
  background: linear-gradient(90deg, rgba(6, 10, 30, 0.6), rgba(10, 16, 44, 0.45));
  border-bottom: 1px solid rgba(94, 241, 255, 0.18);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.header-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 79, 216, 0.1);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.header-panel__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0.35rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0;
  justify-content: center;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: #ffffff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100;
  position: relative;
}

.nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav__toggle--active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.nav__toggle--active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.logo img {
  height: 38px;
  width: auto;
  max-width: none;
}

@media (max-width: 768px) {
  .logo img {
    height: 32px;
  }
}

.nav__actions {
  margin-left: auto;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-right: 1rem;
}

.btn--compact {
  padding: 0.6rem 1.3rem;
  border-radius: 12px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin: 0 0 0.8rem;
  padding: 0 5vw;
  text-align: center;
  text-shadow: 0 15px 40px rgba(5, 5, 20, 0.6);
  width: 100%;
}

.hero__layout {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.hero__content {
  max-width: 1000px;
  width: 100%;
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
  padding: 0 calc(5vw - 5cm);
  margin-top: 0;
  margin-left: 6.5cm;
}

@media (max-width: 1200px) {
  .hero__content {
    margin-left: 0;
    padding: 0 2rem;
  }
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -3cm;
  gap: 2rem;
}

@media (max-width: 1200px) {
  .hero__visual {
    margin-top: 0;
  }
}

.hero__highlight {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.hero__highlight img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.55));
  transition: transform 0.4s ease;
  max-width: 100%;
}

.hero__highlight:hover img {
  transform: scale(1.1);
}

.hero__highlight-cta {
  position: absolute;
  bottom: calc(1.5rem - 1cm);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.btn--register {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 15px 35px rgba(255, 79, 216, 0.4);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 15px 35px rgba(255, 79, 216, 0.4);
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 15px 35px rgba(255, 79, 216, 0.8), 0 0 30px rgba(255, 79, 216, 0.6);
  }
}

.hero__highlight-bonus {
  margin: 0;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(135deg, rgba(74, 255, 239, 0.7), rgba(94, 241, 255, 0.7));
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #04121a;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 20px 40px rgba(74, 255, 239, 0.2);
  border: none;
  max-width: fit-content;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.35rem 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.3), rgba(94, 241, 255, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin: 1.2rem 0 1rem;
  text-shadow: 0 15px 40px rgba(5, 5, 20, 0.6);
}

h1 span {
  display: block;
  color: var(--accent-3);
}

p {
  color: var(--muted);
  margin: 0;
}

.hero__content p {
  margin: 0 0 0.8rem;
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 1cm 0 1.8rem;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  justify-content: center;
  overflow-x: auto;
}

.hero__list li {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.35rem;
  white-space: nowrap;
}

.hero__list li::before {
  display: none;
}

.hero__list-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  background: radial-gradient(circle, rgba(94, 241, 255, 0.35), rgba(94, 241, 255, 0.08));
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  color: #04121a;
}

.hero__list-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__list-icon--slots {
  background: radial-gradient(circle, rgba(94, 241, 255, 0.4), rgba(255, 79, 216, 0.2));
  color: #0b1722;
}

.hero__list-icon--live {
  background: radial-gradient(circle, rgba(255, 154, 36, 0.4), rgba(255, 79, 216, 0.2));
}

.hero__list-icon--crash {
  background: radial-gradient(circle, rgba(74, 255, 239, 0.4), rgba(255, 79, 216, 0.2));
}

.hero__list-icon--table {
  background: radial-gradient(circle, rgba(255, 79, 216, 0.4), rgba(94, 241, 255, 0.2));
}

.hero__media {
  position: relative;
  min-height: 420px;
  border-radius: 36px;
  background: radial-gradient(circle at 30% 20%, rgba(255, 79, 216, 0.35), rgba(17, 18, 43, 0.95));
  box-shadow: 30px 30px 70px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  padding: 2rem;
}

.media-photo {
  position: absolute;
  inset: 0;
  padding: 0.5rem 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  background: radial-gradient(circle at 50% 20%, rgba(94, 241, 255, 0.25), transparent 55%);
}

.media-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 5, 20, 0.7) 90%),
    linear-gradient(90deg, rgba(5, 5, 20, 0.6), transparent 35%, transparent 65%, rgba(5, 5, 20, 0.6));
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 2;
}

.media-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  box-shadow: inset 0 -80px 120px rgba(5, 5, 20, 0.65);
  pointer-events: none;
  z-index: 3;
}

.media-photo img {
  width: 115%;
  height: 115%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 28px;
  filter: saturate(1.05) contrast(1.05);
  transform: none;
  z-index: 1;
}

.media-card {
  background: rgba(12, 12, 30, 0.7);
  border-radius: 24px;
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(255, 79, 216, 0.2);
  position: absolute;
  top: 2.5rem;
  left: 2rem;
  z-index: 2;
}

.media-card p {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.media-card strong {
  display: block;
  font-size: 1.8rem;
  margin: 0.5rem 0;
}

.media-card span {
  color: var(--accent-3);
  font-weight: 600;
}

.media-chip {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  color: #050514;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(94, 241, 255, 0.35);
  z-index: 2;
}

.media-chip span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.media-chip p {
  color: #050514;
  margin: 0;
  font-weight: 600;
}
.media-gradient {
  position: absolute;
  inset: 30% auto auto 40%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 154, 36, 0.8), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  width: min(360px, 100%);
  margin: 1rem 0 0;
}

.hero__bonus-block {
  width: 100%;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 0 5vw;
}

.hero__bonus-block .info__bonus-card {
  margin: 0 auto;
}

.hero__cta a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.hero__cta a span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__cta a small {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero__cta-main {
  padding: 1.2rem 1.5rem;
}

.hero__cta-secondary {
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.btn {
  font: inherit;
  border: none;
  border-radius: 16px;
  padding: 0.9rem 1.8rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: inset -3px -3px 8px rgba(255, 255, 255, 0.07), inset 4px 4px 12px rgba(0, 0, 0, 0.3);
  background: var(--card);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c0c18;
  font-weight: 600;
  box-shadow: 12px 15px 35px rgba(255, 79, 216, 0.3);
}

.btn.ghost {
  border: none;
  background: linear-gradient(135deg, rgba(74, 255, 239, 0.9), rgba(94, 241, 255, 0.9));
  color: #04121a;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(74, 255, 239, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero__glow {
  position: absolute;
  filter: blur(70px);
  opacity: 0.8;
  z-index: -1;
}

.hero__glow--one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.6), transparent 60%);
  top: 5%;
  left: 10%;
}

.hero__glow--two {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(94, 241, 255, 0.5), transparent 60%);
  bottom: 10%;
  right: 10%;
}

.info {
  margin-top: -4rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.info__wins {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info__wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

/* Бонусная карточка с тачкой */
.info__bonus-card {
  background: var(--bg-alt);
  border-radius: 24px;
  padding: 0;
  box-shadow: 25px 25px 60px rgba(2, 3, 20, 0.7), -15px -15px 35px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  min-height: 450px;
  display: flex;
}

.info__bonus-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 450px;
}

.info__bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.2) saturate(1.3) contrast(1.1);
  transition: transform 0.6s ease;
  max-width: 100%;
}

.info__bonus-card:hover .info__bonus-image img {
  transform: scale(1.05);
}

.info__bonus-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(5, 5, 16, 0.6) 0%, 
    rgba(5, 5, 16, 0.3) 40%, 
    rgba(5, 5, 16, 0.2) 60%,
    rgba(5, 5, 16, 0.5) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.info__bonus-content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 2rem;
  min-height: 450px;
}

.info__bonus-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.info__bonus-button {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  align-self: flex-start;
}

.btn--deposit {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info__bonus-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.info__bonus-text {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(94, 241, 255, 0.3);
  max-width: 500px;
}

.info__bonus-text kbd {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  margin: 0 0.3rem;
  background: linear-gradient(145deg, rgba(94, 241, 255, 0.25), rgba(255, 79, 216, 0.25));
  border: 2px solid rgba(94, 241, 255, 0.5);
  border-radius: 8px;
  font-family: 'Montserrat', monospace;
  font-size: 1em;
  font-weight: 700;
  color: #5ef1ff;
  text-shadow: 0 0 15px rgba(94, 241, 255, 0.8);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.4), 
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(94, 241, 255, 0.4);
  transform: translateY(-2px);
}

.bonuses-table-wrapper {
  width: 100%;
  margin-top: 0.5rem;
}

.bonuses-table-compact {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(94, 241, 255, 0.1);
}

.bonuses-table-compact thead {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.3), rgba(94, 241, 255, 0.3));
}

.bonuses-table-compact th {
  padding: 1.2rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bonuses-table-compact td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 500;
}

.bonuses-table-compact tbody tr {
  transition: all 0.3s ease;
}

.bonuses-table-compact tbody tr:hover {
  background: linear-gradient(90deg, rgba(255, 79, 216, 0.15), rgba(94, 241, 255, 0.15));
  transform: translateX(5px);
}

.bonuses-table-compact tbody tr:last-child td {
  border-bottom: none;
}

.bonuses-table-compact td:nth-child(2),
.bonuses-table-compact td:nth-child(3) {
  font-weight: 700;
  color: #5ef1ff;
  text-align: center;
  text-shadow: 0 0 15px rgba(94, 241, 255, 0.6);
  font-size: 1.1rem;
}

.hero__visual .info__bonus-stats {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: stretch;
  justify-content: center;
  margin-top: calc(1rem + 2.5cm);
  flex-wrap: wrap;
  width: 100%;
  max-width: 500px;
}

@media (max-width: 1200px) {
  .hero__visual .info__bonus-stats {
    margin-top: 1rem;
  }
}

.info__bonus-stats article {
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 79, 216, 0.2), rgba(94, 241, 255, 0.18));
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5), 
    inset 0 0 20px rgba(255, 255, 255, 0.08),
    0 0 20px rgba(94, 241, 255, 0.2);
  backdrop-filter: blur(15px);
  text-align: center;
  flex: 1;
  min-width: 120px;
  max-width: 150px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info__bonus-stats article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(94, 241, 255, 0.6), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.info__bonus-stats article:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6), 
    inset 0 0 40px rgba(255, 255, 255, 0.1),
    0 0 40px rgba(94, 241, 255, 0.4);
  border-color: rgba(94, 241, 255, 0.4);
}

.info__bonus-stats article span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, #5ef1ff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(94, 241, 255, 0.5);
  filter: drop-shadow(0 0 15px rgba(94, 241, 255, 0.4));
}

.info__bonus-stats article:nth-child(2) span {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #ffd700;
  background-clip: border-box;
  color: #ffd700;
  text-align: center;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
}

.info__bonus-stats article:nth-child(2) p {
  text-align: center;
  color: #ffd700;
  font-weight: 600;
}

.info__bonus-stats article p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}


.info__card {
  background: var(--bg-alt);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 25px 25px 60px rgba(2, 3, 20, 0.7), -15px -15px 35px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.info__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('тачка.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  opacity: 0.7;
  z-index: 0;
}

.info__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 11, 26, 0.4), rgba(10, 11, 26, 0.3));
  border-radius: 32px;
  z-index: 1;
}

.info__card > * {
  position: relative;
  z-index: 2;
}

.info__card h2,
.bonuses h2,
.cta h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.info__card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.info__card li {
  margin-bottom: 0.4rem;
}

.info__stats {
  display: grid;
  gap: 1.5rem;
}

.info__stats article {
  padding: 1.8rem;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 79, 216, 0.12), rgba(94, 241, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.35), -12px -12px 30px rgba(255, 255, 255, 0.03);
}

.info__stats span {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.games {
  margin-top: 5rem;
}

.games .section-header p {
  color: var(--muted);
}

.games .section-header p {
  text-align: center;
}

.games-section .section-header h2 {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  text-shadow: none;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.games__group {
  background: var(--bg-alt);
  border-radius: 32px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 25px 25px 60px rgba(2, 3, 20, 0.7), -15px -15px 35px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.games__group-header h3 {
  margin: 0.4rem 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.tag--popular {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.2), rgba(94, 241, 255, 0.2));
}

.tag--new {
  background: linear-gradient(135deg, rgba(255, 154, 36, 0.2), rgba(94, 241, 255, 0.2));
}

.game-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 241, 255, 0.4);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}

.game-card__media {
  width: 100%;
  height: 100px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-card__body strong {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  display: block;
}

.game-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.bonuses {
  margin-top: 4rem;
}

.section-header {
  max-width: 900px;
  margin-bottom: 2.5rem;
  text-align: left;
}

.assortment .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.assortment .section-header h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.assortment .section-header__button {
  opacity: 0.85;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.85), rgba(255, 154, 36, 0.85));
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-3), var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 15px 40px rgba(5, 5, 20, 0.6);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: left;
}

.heading-security {
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.heading-security--block {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  text-transform: none;
  letter-spacing: 0.02em;
  text-align: center;
}

.section-header .heading-security--block {
  background: linear-gradient(135deg, #5ef1ff, #ff4fd8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-header h2.section-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  text-shadow: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  background-clip: border-box;
}

.section-heading--promo {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.section-header p {
  text-align: left;
}

.assortment .section-header p {
  text-align: center;
}

.games .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.games-section .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.games-section .section-header h2 {
  text-align: center;
}

.games-section .section-header p {
  text-align: center;
}

.bonuses-table {
  overflow-x: auto;
  border-radius: 28px;
  background: var(--bg-alt);
  padding: 2rem;
  box-shadow: 25px 25px 60px rgba(2, 3, 20, 0.7), -15px -15px 35px rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonuses-table table {
  width: 100%;
  border-collapse: collapse;
}

.bonuses-table thead {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.15), rgba(94, 241, 255, 0.15));
  border-radius: 16px;
}

.bonuses-table th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.bonuses-table td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.bonuses-table tbody tr {
  transition: background 0.3s ease, transform 0.2s ease;
}

.bonuses-table tbody tr:hover {
  background: rgba(255, 79, 216, 0.08);
  transform: translateX(4px);
}

.bonuses-table tbody tr:last-child td {
  border-bottom: none;
}

.bonus-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-right: 1rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.bonus-icon--welcome {
  background: linear-gradient(135deg, #ff4fd8, #ff9a24);
}

.bonus-icon--cashback {
  background: linear-gradient(135deg, #5ef1ff, #4facfe);
}

.bonus-icon--tournament {
  background: linear-gradient(135deg, #ff9a24, #ff4fd8);
}

.bonus-icon--vip {
  background: linear-gradient(135deg, #ffd700, #ff9a24);
}

.bonus-icon--drop {
  background: linear-gradient(135deg, #5ef1ff, #ff4fd8);
}

.bonus-icon--live {
  background: linear-gradient(135deg, #ff4fd8, #5ef1ff);
}

.bonus-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bonus-info strong {
  font-size: 1.1rem;
  color: var(--text);
  display: block;
}

.bonus-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

.bonuses-table td:first-child {
  display: flex;
  align-items: center;
  min-width: 280px;
}

.bonus-amount {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bonus-badge--active {
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.3), rgba(255, 79, 216, 0.3));
  color: var(--accent-3);
  border: 1px solid rgba(94, 241, 255, 0.4);
  box-shadow: 0 0 15px rgba(94, 241, 255, 0.3);
}

.bonus-badge--vip {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 154, 36, 0.3));
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.5);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.cta {
  margin: 5rem 0 0;
  padding: 2.5rem;
  border-radius: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.25), rgba(255, 154, 36, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 18px 18px 45px rgba(6, 6, 20, 0.5), -12px -12px 30px rgba(255, 255, 255, 0.04);
}

.footer {
  padding: 2.5rem 5vw 3.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Игровой Ассортимент */
.assortment {
  margin-top: 5rem;
}

.assortment__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.assortment__card {
  background: rgba(17, 18, 43, 0.65);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 15px 25px 50px rgba(2, 3, 20, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.assortment__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
  border-radius: 24px;
}

.assortment__card > * {
  position: relative;
  z-index: 1;
}

.assortment__card--slots::before {
  background-image: url('слоты.webp');
}

.assortment__card--live::before {
  background-image: url('лайф игры.PNG');
}

.assortment__card--crash::before {
  background-image: url('краш.PNG');
}

.assortment__card--table::before {
  background-image: url('настольные игры.PNG');
}

.assortment__card:hover {
  transform: translateY(-5px);
  box-shadow: 25px 25px 60px rgba(255, 79, 216, 0.3);
}

.assortment__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-3);
  filter: drop-shadow(0 0 20px rgba(94, 241, 255, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.assortment__icon svg {
  width: 100%;
  height: 100%;
}

.assortment__card:hover .assortment__icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(94, 241, 255, 0.9));
  color: var(--accent);
}

.assortment__card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.assortment__card p {
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.assortment__card p:not(:first-of-type) {
  margin-top: 1rem;
}

/* Игры */
.games-section {
  margin-top: 5rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.game-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.3), rgba(94, 241, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 79, 216, 0.25), 0 0 0 1px rgba(255, 79, 216, 0.2);
  border-color: rgba(255, 79, 216, 0.3);
}

.game-card:hover::before {
  opacity: 1;
}

.game-card__image {
  width: 100%;
  height: 200px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.05), rgba(94, 241, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
}

.game-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 16, 0.1) 100%);
  pointer-events: none;
  z-index: 0;
}

.game-card__image-wrapper {
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.game-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.15) brightness(1.05);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  background: transparent;
  max-width: 100%;
}

.game-card:hover .game-card__image img {
  transform: scale(1.08);
  filter: saturate(1.3) brightness(1.1);
}

.game-card__content {
  flex: 1;
  padding: 0.625rem 1rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 79, 216, 0.15), rgba(94, 241, 255, 0.15));
  min-height: auto;
  gap: 0.4rem;
}

.game-card__content h3 {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.game-card__content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

/* Бонусы и Промо */
.bonuses-promo {
  margin-top: 5rem;
}

.bonuses-promo .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bonuses-promo .section-header h2 {
  text-align: center;
  background: linear-gradient(135deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonuses-promo .section-header p {
  text-align: center;
}

/* CTA после выигрышей */
.wins-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.wins-cta__arrow {
  font-size: 2.5rem;
  color: var(--accent-3);
  text-shadow: 0 0 20px rgba(94, 241, 255, 0.8), 0 0 40px rgba(94, 241, 255, 0.6);
  animation: neon-arrow-pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(94, 241, 255, 0.8));
}

.wins-cta__arrow--left {
  transform: rotate(0deg);
}

.wins-cta__arrow--right {
  transform: rotate(180deg);
}

@keyframes neon-arrow-pulse {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(94, 241, 255, 0.8), 0 0 40px rgba(94, 241, 255, 0.6);
    filter: drop-shadow(0 0 15px rgba(94, 241, 255, 0.8));
  }
  50% {
    opacity: 0.7;
    text-shadow: 0 0 30px rgba(94, 241, 255, 1), 0 0 60px rgba(94, 241, 255, 0.9), 0 0 80px rgba(255, 79, 216, 0.6);
    filter: drop-shadow(0 0 25px rgba(94, 241, 255, 1)) drop-shadow(0 0 50px rgba(255, 79, 216, 0.8));
  }
}

.wins-cta__button {
  padding: 1.3rem 3rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wins-cta__button.ghost {
  background: linear-gradient(135deg, rgba(74, 255, 239, 0.9), rgba(94, 241, 255, 0.9));
  color: #04121a;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(74, 255, 239, 0.25);
  animation: none;
}

.wins-cta__button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.wins-cta__button:hover::before {
  animation: shine 0.6s ease;
}

.wins-cta__button.ghost::before {
  display: none;
}

.wins-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.wins-cta__button.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(74, 255, 239, 0.35);
}

.wins-cta__button:active {
  transform: translateY(-2px) scale(0.98);
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shine {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

  .demo-mode-notice {
    text-align: center;
    margin-top: 0.2rem;
    padding: 0 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .demo-mode-notice p {
    font-size: 0.9rem;
  }

.demo-mode-notice p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.demo-mode-notice p:last-child {
  margin-bottom: 0;
}

.demo-mode-text {
  color: #ffd700;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffd700, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-bonuses {
  margin-top: 5rem;
}

.promo-bonuses .section-header {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.promo-bonuses .section-header h2 {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  text-shadow: none;
  text-align: center;
}

.promo-bonuses .section-header__button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  opacity: 1 !important;
  padding: 1rem 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 12px 15px 35px rgba(255, 79, 216, 0.3) !important;
  animation: none !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  max-width: 100% !important;
  text-align: center !important;
  line-height: 1.3 !important;
}

.promo-bonuses .section-header p {
  text-align: center;
}

.promo-bonuses__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.promo-bonuses__cluster {
  text-align: center;
  position: relative;
}

.promo-bonuses__cluster--primary {
  padding-bottom: 1rem;
}

.promo-bonuses__cluster h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: #ffffff;
  text-shadow: none;
}

.promo-bonuses__text {
  color: var(--muted);
  margin: 0 auto;
  max-width: 540px;
  line-height: 1.7;
  font-size: 1rem;
}

.promo-bonuses__nodes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.promo-bonuses__nodes--three {
  gap: clamp(1.5rem, 4vw, 3rem);
}

.promo-bonuses__nodes--three .promo-bonuses__node {
  min-width: 230px;
}

.promo-bonuses__nodes--two {
  gap: clamp(2rem, 6vw, 4rem);
  align-items: flex-start;
}

.promo-bonuses__nodes--two .promo-bonuses__node {
  min-width: 360px;
  max-width: 520px;
}

.promo-bonuses__nodes--two > .promo-bonuses__node:first-child {
  width: fit-content;
  max-width: none;
  min-width: auto;
}

.promo-bonuses__column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 360px;
  max-width: 520px;
}

.promo-bonuses__column .promo-bonuses__node {
  width: 100%;
}

.promo-bonuses__node {
  position: relative;
  padding: 1.5rem 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(94, 241, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.6;
  box-shadow: 0 20px 40px rgba(5, 5, 20, 0.55);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.promo-bonuses__node--gold {
  border-color: rgba(255, 215, 0, 0.85);
  background: linear-gradient(135deg, rgba(255, 237, 191, 0.35), rgba(255, 186, 73, 0.45));
  box-shadow: 0 25px 55px rgba(255, 206, 109, 0.35), 0 0 30px rgba(255, 188, 65, 0.4);
  color: #0e0b02;
  text-shadow: none;
}

.promo-bonuses__node--gold strong,
.promo-bonuses__node--gold span {
  color: #050404;
}

.promo-bonuses__illustration {
  margin-top: -1cm;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.promo-bonuses__illustration img {
  width: 100%;
  max-width: 273px;
  height: auto;
  border-radius: 16px;
  border: none;
  transition: transform 0.25s ease;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 80%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0.4) 65%, rgba(0, 0, 0, 0) 80%);
  mask-size: 140% 140%;
  mask-position: center;
  mask-repeat: no-repeat;
  display: block;
  object-fit: contain;
}

.promo-bonuses__illustration img:hover {
  transform: scale(1.06);
}

.promo-bonuses__node strong {
  display: block;
  font-size: 1.1rem;
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.promo-bonuses__node span {
  display: block;
  font-weight: 400;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.promo-bonuses__node span:last-of-type {
  margin-bottom: 0;
}

.promo-bonuses__node:hover {
  border-color: rgba(255, 215, 0, 0.7);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 179, 71, 0.15));
  box-shadow: 0 25px 55px rgba(255, 215, 0, 0.25);
  color: #fff6dc;
}

.promo-bonuses__node:hover strong {
  color: #ffe8a3;
}

.promo-bonuses__node:hover span {
  color: rgba(255, 249, 222, 0.9);
}

.promo-bonuses__node strong em {
  font-style: normal;
  color: #ffd700;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
}

.promo-bonuses__node--vip {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  padding: 1.2rem 1.5rem;
}

.vip-privileges-list {
  width: 100%;
  max-width: 600px;
  margin: 0.8rem 0;
  text-align: center;
  align-self: center;
}

.vip-privileges-list div {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.vip-privileges-list div:last-child {
  margin-bottom: 0.8rem;
}

.vip-details-btn {
  margin-top: 1.5rem;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c0c18;
  border: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 12px 15px 35px rgba(255, 79, 216, 0.3);
}

.vip-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.vip-details-btn:active {
  transform: translateY(0);
}

.promo-bonuses__footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.promo-bonuses__footer p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0.8rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.promo-card {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.15), rgba(94, 241, 255, 0.15));
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 20px 20px 50px rgba(2, 3, 20, 0.7);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(94, 241, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-card:hover::before {
  opacity: 1;
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(94, 241, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 79, 216, 0.6));
  animation: neon-pulse-icon 2.5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.promo-icon svg {
  width: 100%;
  height: 100%;
}

.promo-card:hover .promo-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 30px rgba(94, 241, 255, 1)) drop-shadow(0 0 60px rgba(255, 79, 216, 0.9));
}

@keyframes neon-pulse-icon {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(94, 241, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 79, 216, 0.6));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(94, 241, 255, 1)) drop-shadow(0 0 60px rgba(255, 79, 216, 0.9));
    opacity: 0.95;
  }
}

.promo-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.promo-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Карточки выигрышей */
.win-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.win-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.3), rgba(94, 241, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.win-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 79, 216, 0.25), 0 0 0 1px rgba(255, 79, 216, 0.2);
  border-color: rgba(255, 79, 216, 0.3);
}

.win-card:hover::before {
  opacity: 1;
}

.win-card__image {
  width: 100%;
  height: 200px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.05), rgba(94, 241, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
}

.win-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 16, 0.1) 100%);
  pointer-events: none;
  z-index: 0;
}

.win-card__image-wrapper {
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.win-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.15) brightness(1.05);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  background: transparent;
  max-width: 100%;
}

.win-card:hover .win-card__image img {
  transform: scale(1.08);
  filter: saturate(1.3) brightness(1.1);
}

.win-card__amount {
  flex: 1;
  padding: 1.25rem 1rem 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 79, 216, 0.15), rgba(94, 241, 255, 0.15));
  gap: 0.5rem;
  min-height: auto;
}

.win-amount {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ff4fd8, #ff9a24, #5ef1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 79, 216, 0.5);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  filter: drop-shadow(0 0 10px rgba(255, 79, 216, 0.6));
  animation: win-glow 2s ease-in-out infinite;
}

.win-amount-rub {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.03em;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


@keyframes win-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(255, 79, 216, 0.6));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(255, 79, 216, 0.9)) drop-shadow(0 0 30px rgba(94, 241, 255, 0.7));
    opacity: 0.95;
  }
}

/* Безопасность */
.security {
  margin-top: 5rem;
  background: transparent;
  border-radius: 0;
  padding: 3rem 0;
  text-align: center;
  border: none;
  box-shadow: none;
}

.security__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 20px rgba(94, 241, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 79, 216, 0.6));
  animation: neon-pulse 2s ease-in-out infinite;
}

.security__icon svg {
  width: 100%;
  height: 100%;
}

@keyframes neon-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(94, 241, 255, 0.8)) drop-shadow(0 0 40px rgba(255, 79, 216, 0.6));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(94, 241, 255, 1)) drop-shadow(0 0 60px rgba(255, 79, 216, 0.9));
    opacity: 0.9;
  }
}

.security h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.security p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Регистрация / логин / KYC */
.auth-guide {
  margin-top: 5rem;
  padding: 3.5rem 0;
}

.auth-guide__intro {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.auth-guide__intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.auth-section {
  margin-bottom: 1.8rem;
  padding: 1.8rem 2rem;
  border-radius: 28px;
  background: rgba(9, 16, 38, 0.35);
  border: 1px solid rgba(94, 241, 255, 0.2);
  box-shadow:
    0 25px 45px rgba(2, 3, 16, 0.5),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
}

.auth-section:last-of-type {
  margin-bottom: 0;
}

.auth-section h3 {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 0.9rem;
}

.auth-section__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.auth-section__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(94, 241, 255, 0.5), rgba(6, 12, 28, 0.9));
  border: 1px solid rgba(94, 241, 255, 0.4);
  box-shadow: 0 0 18px rgba(94, 241, 255, 0.4);
  color: #8df9ff;
}

.auth-section__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.auth-section__icon--kyc {
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.5), rgba(14, 11, 4, 0.9));
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.45);
  color: #ffd25a;
}

.auth-section p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin: 0;
}

.auth-section__action {
  margin-top: 1.3rem;
}

  .auth-section__action .btn {
    min-width: 220px;
    justify-content: center;
  }

  .auth-section__action {
    text-align: center;
  }

  .auth-section__action .btn {
    width: 100%;
    max-width: 300px;
  }

/* Пополнение и Вывод */
.deposit-withdraw {
  margin-top: 5rem;
  padding: 3rem 0;
}

.deposit-withdraw .section-header {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 1100px;
}

.deposit-withdraw .section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 0.5rem;
  text-align: center;
}

.deposit-withdraw__title {
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.deposit-withdraw__subtitle-heading {
  text-align: center;
  width: 100%;
  display: block;
}
.deposit-withdraw__intro {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.deposit-withdraw__content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0 2rem;
}

.deposit-withdraw__section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 22px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.deposit-withdraw__section:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 65px rgba(255, 215, 0, 0.25);
  border-color: rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 237, 191, 0.15), rgba(255, 186, 73, 0.15));
}

.deposit-withdraw__section h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deposit-withdraw__section p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.deposit-withdraw__section p:last-child {
  margin-bottom: 0;
}

.deposit-withdraw__section p strong {
  color: #ffd700;
  font-weight: 700;
}

.deposit-withdraw__subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.deposit-withdraw__steps {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  counter-reset: steps;
}

.deposit-withdraw__steps li {
  position: relative;
  padding-left: 3rem;
  color: #ffffff;
  line-height: 1.7;
}

.deposit-withdraw__steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050915;
  font-weight: 700;
  box-shadow: 0 15px 30px rgba(94, 241, 255, 0.3);
}

.deposit-withdraw__steps strong {
  color: #ffffff;
  display: block;
  margin-bottom: 0.2rem;
}

.deposit-withdraw__methods {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.deposit-withdraw__methods h4 {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.deposit-withdraw__methods p {
  color: var(--muted);
  margin: 0 0 1.2rem;
  font-size: 1rem;
}

.deposit-withdraw__methods .payments-grid {
  margin-top: 0;
}

.deposit-withdraw__diagram-block {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.deposit-withdraw__diagram-block .processing-diagram {
  max-width: 900px;
  margin: 0 auto;
}

.processing-diagram__note {
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  max-width: 760px;
}

.deposit-withdraw__table-block {
  margin-top: 3rem;
  padding: 0 2rem;
}

.deposit-withdraw__table-heading {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.deposit-withdraw__table-subtitle--center {
  text-align: center;
  margin: 0 auto 1.5rem;
}

.deposit-withdraw__table-block .deposit-withdraw__table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.deposit-withdraw__table-wrapper {
  margin-top: 2.5rem;
  padding: 1.8rem;
  border-radius: 22px;
  background: rgba(8, 15, 35, 0.18);
  border: 1px solid rgba(94, 241, 255, 0.18);
  box-shadow:
    inset 0 0 26px rgba(94, 241, 255, 0.08),
    0 18px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.deposit-withdraw__table-wrapper h4 {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 1.25rem;
}

.deposit-withdraw__table caption,
.deposit-withdraw__table-caption {
  caption-side: top;
  text-align: center;
  margin: 0 auto 0.75rem;
  padding: 0.2rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.deposit-withdraw__table-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.deposit-withdraw__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
  border: none;
  table-layout: fixed;
}

.deposit-withdraw__table thead {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
}

.deposit-withdraw__table thead tr {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.1fr;
  gap: 1.2rem;
  padding: 0 1.4rem 0.8rem;
}

.deposit-withdraw__table th {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  text-align: center;
  font-weight: 600;
}

.deposit-withdraw__table th:nth-child(2),
.deposit-withdraw__table td:nth-child(2) {
  text-align: center;
}

.deposit-withdraw__table tbody tr {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  background: rgba(6, 12, 28, 0.28);
  border-radius: 14px;
  border: 1px solid rgba(94, 241, 255, 0.18);
  box-shadow: 0 18px 32px rgba(2, 3, 16, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.deposit-withdraw__table tbody tr + tr {
  margin-top: 1rem;
}

.deposit-withdraw__table tbody tr:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 216, 0.5);
  box-shadow: 0 35px 60px rgba(255, 79, 216, 0.15);
}

.deposit-withdraw__table td {
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.deposit-withdraw__method {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.deposit-withdraw__method-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: radial-gradient(circle, rgba(94, 241, 255, 0.3), rgba(4, 8, 20, 0.6));
  border: 1px solid rgba(94, 241, 255, 0.4);
  box-shadow: 0 0 10px rgba(94, 241, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.deposit-withdraw__method-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.deposit-withdraw__method-icon--wallet {
  border-color: rgba(255, 79, 216, 0.4);
  box-shadow: 0 0 10px rgba(255, 79, 216, 0.4);
}

.deposit-withdraw__method-icon--sbp {
  border-color: rgba(255, 154, 36, 0.5);
  box-shadow: 0 0 10px rgba(255, 154, 36, 0.45);
}

.deposit-withdraw__method-icon--crypto {
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.85), rgba(18, 12, 3, 0.7));
  border-color: rgba(255, 215, 0, 0.65);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.6);
  color: #ffd700;
}

.deposit-withdraw__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  color: #050915;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.9), rgba(74, 255, 239, 0.9));
  box-shadow: 0 0 18px rgba(94, 241, 255, 0.4);
}

.deposit-withdraw__pill--fast {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.95), rgba(255, 164, 255, 0.95));
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.35);
}

.deposit-withdraw__pill--sbp {
  background: linear-gradient(135deg, rgba(255, 154, 36, 0.95), rgba(255, 210, 146, 0.95));
  box-shadow: 0 0 18px rgba(255, 154, 36, 0.35);
}

.deposit-withdraw__pill--crypto {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 153, 0, 0.9));
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
}

.deposit-withdraw__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.deposit-withdraw__feature::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ef1ff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
  flex-shrink: 0;
}

.deposit-withdraw__table--withdraw thead tr,
.deposit-withdraw__table--withdraw tbody tr {
  grid-template-columns: repeat(4, 1fr);
}

.deposit-withdraw__table--withdraw th,
.deposit-withdraw__table--withdraw td {
  text-align: center;
}

.deposit-withdraw__table--withdraw .deposit-withdraw__method {
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.deposit-withdraw__table--withdraw td .deposit-withdraw__pill {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .deposit-withdraw__table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
  }

  .deposit-withdraw__table-wrapper h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .deposit-withdraw__table {
    min-width: 700px;
  }

  .deposit-withdraw__table--withdraw {
    min-width: 600px;
  }

  .deposit-withdraw__table thead tr,
  .deposit-withdraw__table tbody tr {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
  }

  .deposit-withdraw__table--withdraw thead tr,
  .deposit-withdraw__table--withdraw tbody tr {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }

  .deposit-withdraw__table--withdraw th,
  .deposit-withdraw__table--withdraw td {
    font-size: 0.85rem;
  }

  .deposit-withdraw__method {
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
  }

  .deposit-withdraw__method span:last-child {
    font-size: 0.8rem;
    word-break: break-word;
  }

  .deposit-withdraw__method-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .deposit-withdraw__method-icon svg {
    width: 14px;
    height: 14px;
  }

  .deposit-withdraw__feature {
    font-size: 0.8rem;
    padding: 0.3rem 0.5rem;
    text-align: center;
  }

  .deposit-withdraw__pill {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .deposit-withdraw__diagram-block {
    padding: 1.5rem 1rem;
  }

  .deposit-withdraw__table-block {
    padding: 0 1rem;
  }

  .processing-diagram {
    margin-top: 1.5rem;
  }

  .processing-diagram h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .processing-diagram__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .processing-diagram__label {
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .processing-diagram__label span:last-child {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }

  .processing-diagram__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .processing-diagram__bar {
    height: 20px;
    margin-top: 0.5rem;
    width: 100%;
  }

  .processing-diagram__bar span {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .processing-diagram__note {
    font-size: 0.9rem;
    padding: 0 0.5rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .deposit-withdraw__table-wrapper {
    padding: 0.8rem;
  }

  .deposit-withdraw__table-wrapper h4 {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .deposit-withdraw__table thead {
    display: none;
  }

  .deposit-withdraw__table tbody tr {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
    padding: 1rem 0.8rem;
  }

  .deposit-withdraw__table {
    min-width: 100%;
    border-spacing: 0 1rem;
  }

  .deposit-withdraw__table tbody tr {
    display: flex;
    flex-direction: column;
  }

  .deposit-withdraw__table tbody tr td {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .deposit-withdraw__table tbody tr td:last-child {
    border-bottom: none;
  }

  .deposit-withdraw__table--withdraw tbody tr td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-3);
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(94, 241, 255, 0.2);
    width: 100%;
  }

  .deposit-withdraw__method {
    justify-content: center;
    margin-bottom: 0;
    width: 100%;
  }

  .deposit-withdraw__method span:last-child {
    font-size: 0.75rem;
  }

  .deposit-withdraw__feature {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
  }

  .deposit-withdraw__pill {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .processing-diagram__label {
    font-size: 0.85rem;
  }

  .processing-diagram__bar {
    height: 18px;
  }

  .processing-diagram__bar span {
    font-size: 0.8rem;
  }
}

.processing-diagram {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.processing-diagram h4 {
  margin: 0;
  text-align: center;
  font-size: 1.25rem;
}

.processing-diagram__row {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 1rem;
  align-items: center;
}

.processing-diagram__label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}

.processing-diagram__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  color: #ffd700;
}

.processing-diagram__icon svg {
  width: 18px;
  height: 18px;
}

.processing-diagram__icon--btc {
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.9), rgba(255, 166, 0, 0.2));
  border: 1px solid rgba(255, 215, 0, 0.6);
  color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.45);
}

.processing-diagram__bar {
  position: relative;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.processing-diagram__bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--bar-size, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(94, 241, 255, 0.9), rgba(255, 79, 216, 0.9));
  box-shadow: 0 0 15px rgba(94, 241, 255, 0.4);
}

.processing-diagram__bar span {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.processing-diagram__bar--full::before {
  background: linear-gradient(90deg, rgba(94, 241, 255, 1), rgba(255, 79, 216, 1));
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.35), 0 0 22px rgba(94, 241, 255, 0.3);
}

@media (max-width: 640px) {
  .processing-diagram__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .processing-diagram__label {
    font-size: 0.9rem;
    flex-wrap: wrap;
  }

  .processing-diagram__label span:last-child {
    flex: 1;
    min-width: 0;
    word-break: break-word;
  }

  .processing-diagram__icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .processing-diagram__bar {
    height: 18px;
    margin-top: 0.5rem;
    width: 100%;
  }

  .processing-diagram__bar span {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .processing-diagram__note {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}

.deposit-withdraw__steps--secondary li::before {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 15px 30px rgba(255, 154, 36, 0.3);
}

.deposit-withdraw__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.deposit-withdraw__list li {
  color: #ffffff;
  line-height: 1.8;
  font-size: 1.05rem;
  padding-left: 2rem;
  position: relative;
}

.deposit-withdraw__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-3);
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 0 10px rgba(94, 241, 255, 0.8);
}

/* Методы Платежей */
.payments {
  margin-top: 5rem;
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.payment-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(94, 241, 255, 0.2);
  box-shadow: 0 20px 40px rgba(8, 14, 46, 0.45);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.payment-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 79, 216, 0.4);
  box-shadow: 0 25px 50px rgba(14, 26, 71, 0.55);
}

.payment-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(94, 241, 255, 0.65));
  box-shadow: 0 0 25px rgba(94, 241, 255, 0.6);
  color: #050915;
}

.payment-item__icon--card,
.payment-item__icon--wallet {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), rgba(255, 79, 216, 0.65));
}

.payment-item__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #050915;
  stroke-width: 1.8;
}

.payment-item__icon--wallet svg,
.payment-item__icon--crypto svg {
  stroke: none;
  fill: #050915;
}

.payment-item__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Поддержка */
.support {
  margin-top: 5rem;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.1), rgba(94, 241, 255, 0.1));
  border-radius: 32px;
  padding: 4rem 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 25px 25px 60px rgba(2, 3, 20, 0.7);
}

.support__icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 79, 216, 0.35), rgba(11, 16, 32, 0.95));
  border: 1px solid rgba(255, 79, 216, 0.55);
  box-shadow:
    0 0 25px rgba(255, 79, 216, 0.35),
    0 0 55px rgba(94, 241, 255, 0.25);
  position: relative;
  color: #8df9ff;
}

.support__icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(141, 249, 255, 0.3);
  box-shadow: 0 0 30px rgba(141, 249, 255, 0.25);
}

.support__icon svg {
  width: 58px;
  height: 58px;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 0 15px rgba(141, 249, 255, 0.45));
}

.support h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.support p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.support__contact {
  margin-top: 2rem;
  font-size: 1.1rem;
  color: var(--text);
}

.support__contact strong {
  color: var(--accent-3);
}

.support__contact a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.support__contact a:hover {
  color: var(--accent-3);
}

/* FAQ */
.faq {
  margin-top: 5rem;
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 15px 15px 40px rgba(2, 3, 20, 0.6);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: 20px 20px 50px rgba(255, 79, 216, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-question {
  background: rgba(94, 241, 255, 0.05);
}

.faq-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  border-radius: 50%;
  color: #04121a;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-question h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 0 2rem 1.5rem 4.5rem;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0.5rem 0;
}

.faq-answer ol {
  color: var(--muted);
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--accent-3);
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero__content {
    margin-left: 0;
    padding: 0 2rem;
  }

  .hero__visual {
    margin-top: 0;
  }

  .hero__layout {
    gap: 2rem;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .info__wins-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deposit-withdraw__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 2rem;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .header-panel__inner {
    padding: 0.5rem 1rem;
  }

  .nav {
    position: relative;
    width: 100%;
  }

  .nav__toggle {
    display: flex;
    margin-left: auto;
  }

  .nav__links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(6, 10, 30, 0.98), rgba(10, 16, 44, 0.95));
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid rgba(94, 241, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  .nav__links--open {
    max-height: 500px;
    padding: 2rem 1.5rem;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }

  .nav__links a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
  }

  .nav__links a:hover {
    background: rgba(94, 241, 255, 0.1);
    color: #5ef1ff;
  }

  .info {
    flex-direction: column;
  }

  .info__bonus-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .info__bonus-table-wrapper {
    padding: 2rem 1.5rem;
  }

  .info__bonus-image {
    min-height: 300px;
    order: -1;
  }

  .info__wins {
    gap: 1.5rem;
  }

  .info__wins-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero__content {
    padding: 2rem 1rem;
    margin-left: 0;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__visual {
    margin-top: 0;
  }

  .hero__highlight {
    max-width: 100%;
    position: relative;
  }

  .hero__highlight img {
    width: 100%;
    height: auto;
  }

  .hero__highlight-bonus {
    font-size: 1.1rem;
    white-space: normal;
    padding: 0.4rem 0.6rem;
    text-align: center;
  }

  .hero__highlight-cta {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 1rem;
  }

  .hero__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
  }

  .hero__bonus-block {
    padding: 0 1rem;
  }

  .info__bonus-stats {
    margin-top: 1rem;
    max-width: 100%;
  }

  .info__bonus-stats article {
    min-width: 100px;
    max-width: 140px;
  }
}

@media (max-width: 768px) {
  main {
    padding: 0 1rem 4rem;
  }

  .hero {
    padding: 6rem 1rem 3rem;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    padding: 0 1rem;
  }

  .hero__content {
    padding: 1rem;
  }

  .hero__content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero__list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero__list li {
    font-size: 0.85rem;
  }

  .hero__highlight-cta {
    bottom: 1rem;
    width: calc(100% - 1rem);
  }

  .btn--register {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero__highlight-bonus {
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
  }

  .section-header {
    padding: 0 1rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .assortment__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .assortment__card {
    padding: 2rem 1.5rem;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }

  .game-card {
    min-height: 220px;
  }

  .game-card__image {
    height: 140px;
  }

  .game-card__content {
    padding: 0.5rem 0.75rem;
  }

  .game-card__content h3 {
    font-size: 0.9rem;
  }

  .game-card__content p {
    font-size: 0.75rem;
  }

  .info__wins-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .win-card {
    min-height: 250px;
  }

  .win-card__image {
    height: 180px;
  }

  .win-amount {
    font-size: 1.5rem;
  }

  .wins-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .wins-cta__arrow {
    display: none;
  }

  .wins-cta__button {
    width: 100%;
    max-width: 300px;
  }

  .promo-bonuses__nodes {
    flex-direction: column;
    align-items: stretch;
  }

  .promo-bonuses__nodes--two .promo-bonuses__node,
  .promo-bonuses__column {
    min-width: auto;
    max-width: 100%;
  }

  .promo-bonuses__illustration {
    margin-top: 0;
  }

  .promo-bonuses__illustration img {
    max-width: 100%;
    height: auto;
  }

  .deposit-withdraw__content {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .deposit-withdraw__section {
    padding: 1.5rem 1rem;
  }

  .deposit-withdraw__steps li {
    padding-left: 2.5rem;
    font-size: 0.95rem;
  }

  .deposit-withdraw__steps li::before {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }

  .deposit-withdraw__table-wrapper {
    padding: 1rem;
    overflow-x: auto;
  }

  .deposit-withdraw__table {
    min-width: 600px;
  }

  .processing-diagram__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .processing-diagram__bar {
    margin-top: 0.5rem;
  }

  .auth-section {
    padding: 1.5rem 1rem;
  }

  .cta {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .cta__content {
    margin-bottom: 1rem;
  }

  .cta__content h2 {
    font-size: 1.5rem;
  }

  .cta__content p {
    font-size: 0.95rem;
  }

  .cta a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .footer {
    padding: 2rem 1rem;
  }

  .footer__links {
    flex-direction: column;
    gap: 1rem;
  }

  .footer__links a {
    display: block;
    padding: 0.5rem 0;
  }

  .section-header {
    text-align: center;
  }

  .section-header p {
    text-align: center;
  }

  .assortment__card h3 {
    font-size: 1.3rem;
  }

  .assortment__card p {
    font-size: 0.9rem;
  }

  .promo-bonuses__node {
    padding: 1.2rem 1.5rem;
  }

  .promo-bonuses__node strong {
    font-size: 1rem;
  }

  .promo-bonuses__node span {
    font-size: 0.9rem;
  }

  .promo-bonuses .section-header__button {
    font-size: clamp(0.9rem, 4vw, 1.1rem) !important;
    padding: 0.8rem 0.6rem !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
    white-space: normal !important;
  }

  .promo-bonuses .section-header {
    padding: 0 1rem;
  }

  .promo-bonuses .section-header p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 600px) {
  main,
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero__content {
    padding: 1rem 0.5rem;
  }

  .info__card,
  .cta {
    padding: 1.8rem;
  }

  .info__wins {
    grid-template-columns: 1fr;
  }

  .bonuses-table {
    padding: 1rem;
  }

  .bonuses-table table {
    font-size: 0.9rem;
  }

  .bonuses-table th,
  .bonuses-table td {
    padding: 1rem 0.8rem;
  }

  .bonuses-table td:first-child {
    min-width: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .bonus-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__media {
    min-height: 300px;
  }

  .hero__highlight img {
    max-width: 100%;
  }

  .assortment__grid,
  .promo-grid {
    grid-template-columns: 1fr;
  }

  .promo-icon {
    width: 56px;
    height: 56px;
  }

  .win-card {
    min-height: 280px;
  }

  .win-card__image {
    height: 160px;
  }

  .win-card__image-wrapper {
    border-radius: 10px;
  }

  .win-card__amount {
    padding: 0.75rem 0.75rem;
    min-height: auto;
  }

  .win-amount {
    font-size: 1.75rem;
  }

  .win-amount-rub {
    font-size: 1.25rem;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }

  .game-card {
    min-height: 240px;
  }

  .game-card__image {
    height: 160px;
  }

  .game-card__content {
    padding: 0.625rem 0.75rem 0.625rem;
    min-height: auto;
    gap: 0.3rem;
  }

  .game-card__content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .payments-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security {
    padding: 2rem 0;
  }

  .support {
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
  }

  .support h2 {
    font-size: 1.8rem;
  }

  .support p {
    font-size: 0.95rem;
  }

  .security {
    padding: 2rem 0;
  }

  .security h2 {
    font-size: 1.8rem;
  }

  .security p {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding-left: 0;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }

  .faq-question {
    padding: 1.2rem 1.5rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .support__icon {
    width: 80px;
    height: 80px;
  }

  .support__icon svg {
    width: 45px;
    height: 45px;
  }

  .security__icon {
    width: 60px;
    height: 60px;
  }

  .security__icon svg {
    width: 100%;
    height: 100%;
  }

  .info__bonus-card {
    min-height: auto;
    border-radius: 20px;
    grid-template-columns: 1fr;
  }

  .info__bonus-content-overlay {
    padding: 1.5rem 1rem;
    min-height: auto;
  }

  .info__bonus-table-wrapper {
    padding: 1.5rem 1.25rem;
  }

  .info__bonus-image {
    min-height: 200px;
    order: -1;
  }

  .info__bonus-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    white-space: normal;
  }

  .info__bonus-text {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .info__bonus-button {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }

  .btn--deposit {
    width: 100%;
    text-align: center;
  }

  .bonuses-table-compact th,
  .bonuses-table-compact td {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .payments-grid {
    grid-template-columns: 1fr;
  }

  .security__icon {
    width: 60px;
    height: 60px;
  }

  .promo-icon {
    width: 48px;
    height: 48px;
  }

  .win-card {
    min-height: 240px;
    border-radius: 12px;
  }

  .win-card__image {
    height: 150px;
    border-radius: 12px 12px 0 0;
  }

  .win-card__image-wrapper {
    border-radius: 10px;
  }

  .win-card__amount {
    padding: 0.625rem 0.625rem;
    min-height: auto;
    gap: 0.375rem;
  }

  .win-amount {
    font-size: 1.5rem;
  }

  .win-amount-rub {
    font-size: 1.1rem;
  }

  .wins-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .wins-cta {
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem 0;
  }

  .wins-cta__arrow {
    font-size: 1.8rem;
  }

  .wins-cta__button {
    padding: 1.1rem 2rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .coins-animation {
    width: 80px;
    height: 50px;
  }

  .info__wins-grid {
    grid-template-columns: 1fr;
  }

  .support__icon {
    font-size: 3rem;
  }

  .security h2,
  .support h2 {
    font-size: 1.8rem;
  }

  .deposit-withdraw__content {
    gap: 2rem;
    padding: 0 1rem;
  }

  .deposit-withdraw__section {
    padding: 2rem 1.5rem;
  }

  .deposit-withdraw__section h3 {
    font-size: 1.5rem;
  }

  .auth-guide {
    padding: 2rem 0;
  }

  .auth-guide__intro {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .auth-guide__intro h2 {
    font-size: 1.8rem;
  }

  .auth-section {
    padding: 1.5rem 1.2rem;
    margin-bottom: 1.5rem;
  }

  .auth-section h3 {
    font-size: 1.2rem;
  }

  .auth-section p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .auth-section__icon {
    width: 38px;
    height: 38px;
  }

  .auth-section__icon svg {
    width: 20px;
    height: 20px;
  }

  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
  }

  .game-card {
    min-height: 240px;
    border-radius: 12px;
  }

  .game-card__image {
    height: 170px;
    border-radius: 12px 12px 0 0;
  }

  .game-card__image-wrapper {
    border-radius: 10px;
  }


  .game-card__content {
    padding: 0.5rem 0.625rem 0.5rem;
    min-height: auto;
    gap: 0.3rem;
  }

  .game-card__content p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .info__bonus-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .info__bonus-content-overlay {
    padding: 1.5rem 1rem;
    min-height: auto;
  }

  .info__bonus-table-wrapper {
    padding: 1.25rem 1rem;
  }

  .info__bonus-image {
    min-height: 200px;
    order: -1;
  }

  .info__bonus-title {
    font-size: 1.5rem;
    white-space: normal;
  }

  .info__bonus-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .info__bonus-button {
    position: static;
    margin-top: 1rem;
    width: 100%;
  }

  .btn--deposit {
    width: 100%;
    text-align: center;
  }

  .bonuses-table-compact th,
  .bonuses-table-compact td {
    padding: 0.625rem 0.4rem;
    font-size: 0.8rem;
  }
}

/* VIP Modal Styles */
.vip-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vip-modal.active {
  display: flex;
  opacity: 1;
}

.vip-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 16, 0.9);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.vip-modal__content {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 10, 30, 0.95), rgba(10, 16, 44, 0.9));
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 1200px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(94, 241, 255, 0.25);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(94, 241, 255, 0.15),
    0 0 100px rgba(255, 79, 216, 0.1),
    inset 0 0 40px rgba(94, 241, 255, 0.05);
  z-index: 10001;
  animation: modalSlideIn 0.3s ease;
  position: relative;
}

.vip-modal__content::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(94, 241, 255, 0.3), rgba(255, 79, 216, 0.3), rgba(255, 154, 36, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vip-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.vip-modal__close:hover {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.3), rgba(94, 241, 255, 0.3));
  color: #5ef1ff;
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(94, 241, 255, 0.6);
}

.vip-modal__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 auto 2rem;
  color: #ffd700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 215, 0, 0.4);
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vip-statuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  justify-items: start;
}

.vip-status:nth-last-child(-n+2) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 300px;
  width: 100%;
}

@media (min-width: 1200px) {
  .vip-status:nth-last-child(-n+2) {
    grid-column: span 1;
    max-width: 300px;
  }
  
  .vip-statuses {
    justify-items: center;
  }
}

.vip-status {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.vip-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--status-gradient);
  opacity: 0.9;
  box-shadow: 0 0 15px var(--status-glow);
}

.vip-status::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: var(--status-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.vip-status:hover {
  transform: translateY(-5px);
  border-color: var(--status-color);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px var(--status-glow),
    0 0 60px var(--status-glow-strong),
    inset 0 0 30px var(--status-glow-inset);
}

.vip-status:hover::after {
  opacity: 0.6;
}

.vip-status__badge {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  position: relative;
  animation: badgePulse 3s ease-in-out infinite;
}

.vip-status__badge::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--badge-glow), transparent 70%);
  opacity: 0.6;
  filter: blur(15px);
  z-index: -1;
  animation: badgeGlow 2s ease-in-out infinite;
}

.vip-status__badge-icon {
  width: calc(3rem + 0.5cm);
  height: calc(3rem + 0.5cm);
  min-width: calc(3rem + 0.5cm);
  min-height: calc(3rem + 0.5cm);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 20px var(--badge-icon-glow)) drop-shadow(0 0 40px var(--badge-glow));
  z-index: 1;
  position: relative;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes badgeGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.vip-status--bronze-i {
  --status-color: #ff9a24;
  --status-gradient: linear-gradient(135deg, #ff9a24, #ff8c42);
  --status-glow: rgba(255, 154, 36, 0.4);
  --status-glow-strong: rgba(255, 154, 36, 0.2);
  --status-glow-inset: rgba(255, 154, 36, 0.05);
  --badge-gradient: linear-gradient(135deg, #ff9a24, #ff8c42);
  --badge-shadow: rgba(255, 154, 36, 0.5);
  --badge-glow: rgba(255, 154, 36, 0.6);
  --badge-icon-glow: rgba(255, 154, 36, 0.8);
  --label-bg: linear-gradient(135deg, #ff9a24, #ff8c42);
}

.vip-status--bronze-ii {
  --status-color: #ff9a24;
  --status-gradient: linear-gradient(135deg, #ff9a24, #ff8c42);
  --status-glow: rgba(255, 154, 36, 0.4);
  --status-glow-strong: rgba(255, 154, 36, 0.2);
  --status-glow-inset: rgba(255, 154, 36, 0.05);
  --badge-gradient: linear-gradient(135deg, #ff9a24, #ff8c42);
  --badge-shadow: rgba(255, 154, 36, 0.5);
  --badge-glow: rgba(255, 154, 36, 0.6);
  --badge-icon-glow: rgba(255, 154, 36, 0.8);
  --label-bg: linear-gradient(135deg, #ff9a24, #ff8c42);
}

.vip-status--silver-i {
  --status-color: #5ef1ff;
  --status-gradient: linear-gradient(135deg, #5ef1ff, #4affef);
  --status-glow: rgba(94, 241, 255, 0.4);
  --status-glow-strong: rgba(94, 241, 255, 0.2);
  --status-glow-inset: rgba(94, 241, 255, 0.05);
  --badge-gradient: linear-gradient(135deg, #5ef1ff, #4affef);
  --badge-shadow: rgba(94, 241, 255, 0.5);
  --badge-glow: rgba(94, 241, 255, 0.6);
  --badge-icon-glow: rgba(94, 241, 255, 0.8);
  --label-bg: linear-gradient(135deg, #5ef1ff, #4affef);
}

.vip-status--silver-ii {
  --status-color: #5ef1ff;
  --status-gradient: linear-gradient(135deg, #5ef1ff, #4affef);
  --status-glow: rgba(94, 241, 255, 0.4);
  --status-glow-strong: rgba(94, 241, 255, 0.2);
  --status-glow-inset: rgba(94, 241, 255, 0.05);
  --badge-gradient: linear-gradient(135deg, #5ef1ff, #4affef);
  --badge-shadow: rgba(94, 241, 255, 0.5);
  --badge-glow: rgba(94, 241, 255, 0.6);
  --badge-icon-glow: rgba(94, 241, 255, 0.8);
  --label-bg: linear-gradient(135deg, #5ef1ff, #4affef);
}

.vip-status--gold-i {
  --status-color: #ffd700;
  --status-gradient: linear-gradient(135deg, #ffd700, #ff9a24);
  --status-glow: rgba(255, 215, 0, 0.5);
  --status-glow-strong: rgba(255, 215, 0, 0.3);
  --status-glow-inset: rgba(255, 215, 0, 0.08);
  --badge-gradient: linear-gradient(135deg, #ffd700, #ff9a24);
  --badge-shadow: rgba(255, 215, 0, 0.6);
  --badge-glow: rgba(255, 215, 0, 0.7);
  --badge-icon-glow: rgba(255, 215, 0, 0.9);
  --label-bg: linear-gradient(135deg, #ffd700, #ff9a24);
}

.vip-status--gold-ii {
  --status-color: #ffd700;
  --status-gradient: linear-gradient(135deg, #ffd700, #ff9a24);
  --status-glow: rgba(255, 215, 0, 0.5);
  --status-glow-strong: rgba(255, 215, 0, 0.3);
  --status-glow-inset: rgba(255, 215, 0, 0.08);
  --badge-gradient: linear-gradient(135deg, #ffd700, #ff9a24);
  --badge-shadow: rgba(255, 215, 0, 0.6);
  --badge-glow: rgba(255, 215, 0, 0.7);
  --badge-icon-glow: rgba(255, 215, 0, 0.9);
  --label-bg: linear-gradient(135deg, #ffd700, #ff9a24);
}

.vip-status--platinum {
  --status-color: #5ef1ff;
  --status-gradient: linear-gradient(135deg, #5ef1ff, #ff4fd8);
  --status-glow: rgba(94, 241, 255, 0.5);
  --status-glow-strong: rgba(255, 79, 216, 0.3);
  --status-glow-inset: rgba(94, 241, 255, 0.08);
  --badge-gradient: linear-gradient(135deg, #5ef1ff, #ff4fd8);
  --badge-shadow: rgba(94, 241, 255, 0.6);
  --badge-glow: rgba(94, 241, 255, 0.7);
  --badge-icon-glow: rgba(255, 79, 216, 0.8);
  --label-bg: linear-gradient(135deg, #5ef1ff, #ff4fd8);
}

.vip-status--diamond {
  --status-color: #ff4fd8;
  --status-gradient: linear-gradient(135deg, #ff4fd8, #5ef1ff, #ff9a24);
  --status-glow: rgba(255, 79, 216, 0.6);
  --status-glow-strong: rgba(94, 241, 255, 0.4);
  --status-glow-inset: rgba(255, 79, 216, 0.1);
  --badge-gradient: linear-gradient(135deg, #ff4fd8, #5ef1ff, #ff9a24);
  --badge-shadow: rgba(255, 79, 216, 0.7);
  --badge-glow: rgba(255, 79, 216, 0.8);
  --badge-icon-glow: rgba(94, 241, 255, 0.9);
  --label-bg: linear-gradient(135deg, #ff4fd8, #5ef1ff);
}

.vip-status__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  width: 100%;
}

.vip-status__header h3 {
  font-size: 1.4rem;
  margin: 0;
  color: #0c0c18;
  font-weight: 700;
  background: var(--label-bg);
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    0 0 20px var(--status-glow),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
}

.vip-status__level {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.vip-status__benefits {
  width: 100%;
}

.vip-status__benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.vip-status__benefits li {
  padding: 0.4rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

.vip-status__benefits li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--status-color);
  font-weight: bold;
  font-size: 1rem;
  text-shadow: 
    0 0 10px var(--status-color),
    0 0 20px var(--status-glow);
  filter: drop-shadow(0 0 5px var(--status-color));
  animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .vip-modal__content {
    padding: 1.5rem 1rem;
    width: 95%;
    max-height: 95vh;
  }

  .vip-modal__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .vip-statuses {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .vip-status {
    padding: 1.2rem 1rem;
  }

  .vip-status__header h3 {
    font-size: 1.2rem;
    padding: 0.3rem 1rem;
  }

  .vip-status__badge {
    width: 60px;
    height: 60px;
  }

  .vip-status__badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }

  .vip-status__benefits li {
    font-size: 0.85rem;
    padding-left: 1.5rem;
  }
}

