@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --bg: #060a06;
  --bg-panel: #0d140d;
  --bg-input: #141c14;
  --green: #27ae48;
  --green-hover: #2fc955;
  --green-bright: #3dba44;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --text: #ffffff;
  --text-muted: #8fa08f;
  --border: rgba(255, 255, 255, 0.1);
  --radius: 10px;
  --radius-sm: 6px;
  --max-width: 1400px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

.app-container-xergv {
  min-height: 100vh;
}

/* ===== HEADER ===== */
.header-xergv {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top-xergv {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6px 20px 8px;
}

.header-actions-xergv {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  grid-column: 1;
  justify-self: start;
}

.icon-btn-xergv {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.icon-btn-xergv:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.logo-xergv {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  grid-column: 2;
  justify-self: center;
}

.logo-chip-xergv {
  display: block;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  opacity: 0.94;
  filter: drop-shadow(0 0 14px rgba(232, 201, 106, 0.16));
}

.logo-text-xergv {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 18px rgba(232, 201, 106, 0.14);
}

.header-spacer-xergv {
  display: none;
}

.header-right-xergv {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  grid-column: 3;
  justify-self: end;
}

.btn-xergv {
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn-login-xergv {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn-login-xergv:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-signup-xergv {
  background: var(--green);
  color: var(--text);
}

.btn-signup-xergv:hover {
  background: var(--green-hover);
}

/* ===== NAV ===== */
.main-nav-xergv {
  border-top: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.main-nav-xergv::-webkit-scrollbar {
  display: none;
}

.main-nav-inner-xergv {
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 20px;
  min-width: max-content;
}

.nav-item-xergv {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav-item-xergv:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-item-xergv img,
.nav-item-xergv svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

[class*="nav-item--highlight"],
.nav-item--highlight-xergv {
  background: var(--green);
  color: var(--text);
  font-weight: 600;
  padding: 8px 16px;
}

[class*="nav-item--highlight"]:hover,
.nav-item--highlight-xergv:hover {
  background: var(--green-hover);
  color: var(--text);
}

/* ===== MAIN ===== */
.main-wrapper-xergv {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
}

/* ===== HERO ===== */
.hero-section-xergv {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-banner-xergv {
  position: relative;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: #0a1208;
}

.hero-banner-bg-xergv {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

.hero-banner-content-xergv {
  position: relative;
  z-index: 3;
  padding: 28px 24px 28px 52px;
  flex: 0 1 52%;
  max-width: 52%;
}

.hero-banner-title-xergv {
  font-size: 26px;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-banner-subtitle-xergv {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.hero-banner-desc-xergv {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 340px;
}

.hero-banner-btn-xergv {
  display: inline-block;
  padding: 12px 32px;
  background: var(--green);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}

.hero-banner-btn-xergv:hover {
  background: var(--green-hover);
}

.hero-banner-character-xergv {
  position: absolute;
  right: 24px;
  bottom: 0;
  height: 92%;
  width: auto;
  max-width: 44%;
  min-width: 180px;
  object-fit: contain;
  object-position: bottom right;
  z-index: 2;
  pointer-events: none;
}

.hero-coin-xergv {
  position: absolute;
  top: 14%;
  right: 36%;
  width: 72px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

/* ===== PROMO CAROUSEL ===== */
.promo-carousel-xergv {
  position: relative;
  min-width: 0;
}

.carousel-viewport-xergv {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track-xergv {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.carousel-slide-xergv {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide-xergv .hero-banner-xergv,
.carousel-slide-xergv .content-banner--slide-xergv {
  margin-bottom: 0;
  height: 100%;
  min-height: 280px;
}

.content-banner--slide-xergv {
  min-height: 280px;
}

.carousel-slide-xergv .content-banner-body-xergv {
  min-height: 280px;
}

.carousel-slide-xergv .content-banner-image-xergv {
  width: auto;
  max-width: 42%;
  max-height: 240px;
  height: auto;
  object-fit: contain;
  object-position: center right;
  align-self: flex-end;
}

.carousel-arrow-xergv {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.promo-carousel-xergv:hover .carousel-arrow-xergv {
  opacity: 1;
}

.carousel-arrow-xergv:hover {
  background: rgba(0, 0, 0, 0.65);
}

.carousel-arrow--prev-xergv {
  left: 10px;
}

.carousel-arrow--next-xergv {
  right: 10px;
}

.carousel-dots-xergv {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

[data-carousel-dot] {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

[data-carousel-dot].active {
  background: var(--green);
  transform: scale(1.2);
}

[data-carousel-dot]:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ===== STATS ===== */
.stats-panel-xergv {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item-xergv {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.stat-item-xergv:last-child {
  border-bottom: none;
}

.stat-icon-xergv {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.stat-info-xergv {
  flex: 1;
  min-width: 0;
}

.stat-label-xergv {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.stat-value-xergv {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* ===== SLOTS SECTION ===== */
.slots-section-xergv {
  margin-bottom: 40px;
}

.slots-header-xergv {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.slots-header-icon-xergv {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.slots-header-title-xergv {
  font-size: 22px;
  font-weight: 700;
}

.slots-intro-xergv {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Filters row */
.filters-row-xergv {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.filter-field-xergv {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 160px;
  font-size: 13px;
  color: var(--text-muted);
}

.filter-field-xergv select,
.filter-field-xergv input {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 13px;
  outline: none;
  flex: 1;
  min-width: 0;
}

.filter-field-xergv select option {
  background: var(--bg-input);
}

.filter-search-xergv {
  flex: 1;
  min-width: 200px;
}

.filter-reset-xergv {
  margin-left: auto;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 13px;
  transition: background 0.2s, color 0.2s;
}

.filter-reset-xergv:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

/* Filter tags */
.filter-tags-xergv {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.filter-tag-xergv {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-tag-xergv:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

[class*="filter-tag"].active,
.filter-tag-xergv.active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.filter-dropdowns-xergv {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-dropdown-xergv {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}

.filter-dropdown-xergv:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.filter-dropdown-xergv svg {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

/* Games grid */
.games-grid-xergv {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.game-card-xergv {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-panel);
  transition: transform 0.2s;
}

.game-card-xergv:hover {
  transform: translateY(-3px);
}

.game-card-image-xergv {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.game-card-image-xergv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-overlay-xergv {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.game-card-xergv:hover .game-card-overlay-xergv {
  opacity: 1;
}

.game-play-btn-xergv {
  padding: 10px 24px;
  background: var(--green);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}

.game-play-btn-xergv:hover {
  background: var(--green-hover);
}

.game-card-info-xergv {
  padding: 10px 12px;
}

.game-card-name-xergv {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-provider-xergv {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== LIVE CASINO ===== */
.live-section-xergv {
  margin-bottom: 40px;
}

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

.live-games-grid-xergv .game-card-image-xergv {
  aspect-ratio: 16 / 10;
}

.live-badge-xergv {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #d32f2f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.45);
}

.live-badge-dot-xergv {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: live-pulse 1.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* ===== PROVIDERS ===== */
.providers-section-xergv {
  margin: 40px 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
}

.providers-title-xergv {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.providers-grid-xergv {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.provider-item-xergv {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.provider-item-xergv:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.provider-item-xergv img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 36px;
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  transition: opacity 0.2s;
}

.provider-item-xergv:hover img {
  opacity: 1;
}

/* ===== SEO CONTENT ===== */
.main-content-xergv {
  margin-bottom: 40px;
}

.hero-content-xergv {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-content-xergv h1 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-content-xergv h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 12px;
}

.hero-content-xergv p {
  margin-bottom: 12px;
}

.hero-content-xergv ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.hero-content-xergv li {
  margin-bottom: 6px;
}

.hero-content-xergv strong {
  color: var(--text);
}

/* ===== CONTENT BANNER ===== */
.content-banner-xergv {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  min-height: 200px;
}

.content-banner--bottom-xergv {
  margin-top: 28px;
  margin-bottom: 0;
  border-color: var(--green);
}

.content-banner-bg-xergv {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.content-banner-body-xergv {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
}

.content-banner-text-xergv {
  flex: 1;
  min-width: 0;
}

.content-banner-badge-xergv {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 12px;
}

.content-banner-title-xergv {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.content-banner-desc-xergv {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-banner-image-xergv {
  width: 280px;
  max-width: 40%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

.content-banner-icon-xergv {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

/* ===== INFOGRAPHIC ===== */
.content-infographic-xergv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.info-card-xergv {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.info-card-xergv:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.info-card-icon-xergv {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.info-card-value-xergv {
  font-size: 26px;
  font-weight: 800;
  color: var(--green-bright);
  margin-bottom: 4px;
  line-height: 1;
}

.info-card-label-xergv {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.info-card-bar-xergv {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.info-card-bar-xergv span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  border-radius: 2px;
}

/* ===== CONTENT LISTS ===== */
.content-lists-xergv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 16px 0 24px;
}

.content-list-block-xergv {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.content-list-title-xergv {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.content-block-text-xergv {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.main-content-xergv > .content-block-text-xergv,
.faq-section-xergv > .content-block-text-xergv,
.contacts-section-xergv > .content-block-text-xergv {
  margin-bottom: 20px;
}

.content-list-xergv {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-list-xergv li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.content-list-xergv li:last-child {
  border-bottom: none;
}

.content-list-xergv li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.content-steps-xergv {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  counter-reset: step-counter;
}

.content-steps-xergv li {
  position: relative;
  padding: 12px 0 12px 44px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  counter-increment: step-counter;
}

.content-steps-xergv li:last-child {
  border-bottom: none;
}

.content-steps-xergv li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  transform: none;
}

/* ===== CONTENT TABLE ===== */
.content-table-wrap-xergv {
  overflow-x: auto;
  margin: 16px 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.content-table-xergv {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.content-table-xergv thead {
  background: rgba(39, 174, 72, 0.15);
}

.content-table-xergv th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

.content-table-xergv td {
  padding: 13px 18px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.content-table-xergv tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

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

.content-table-xergv td strong {
  color: var(--green-bright);
}

/* ===== CONTENT ACTIONS / BUTTONS ===== */
.content-actions-xergv {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-actions--inline-xergv {
  margin: 20px 0 28px;
}

.btn-outline-xergv {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-outline-xergv:hover {
  border-color: var(--green);
  color: var(--text);
  background: rgba(39, 174, 72, 0.08);
}

.btn-outline-light-xergv {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-outline-light-xergv:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ===== FAQ ===== */
.faq-section-xergv {
  margin-bottom: 40px;
}

.faq-title-xergv {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-container-xergv {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item-xergv {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question-xergv {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s;
}

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

.faq-icon-xergv {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item-xergv.open .faq-icon-xergv {
  transform: rotate(180deg);
}

.faq-answer-xergv {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-xergv.open .faq-answer-xergv {
  max-height: 300px;
}

.faq-answer-xergv p {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== CONTACTS ===== */
.contacts-section-xergv {
  margin-bottom: 40px;
}

.contacts-title-xergv {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contacts-container-xergv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.contact-item-xergv {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-icon-xergv {
  flex-shrink: 0;
  color: var(--green);
}

.contact-label-xergv {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-value-xergv {
  font-size: 14px;
  color: var(--text);
}

.contact-desc-xergv {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 10px;
}

.contact-link-xergv:hover {
  color: var(--green-bright);
}

/* ===== FOOTER ===== */
.footer-section-xergv {
  background: linear-gradient(180deg, #0a120a 0%, #060a06 100%);
  border-top: 1px solid var(--border);
  padding: 32px 20px 20px;
  margin-top: 40px;
}

.footer-container-xergv {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-social-row-xergv {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.footer-main-xergv {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(140px, 0.75fr) minmax(140px, 0.75fr);
  gap: 32px 40px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-brand-col-xergv {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-xergv {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-logo-chip-xergv {
  display: block;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  opacity: 0.94;
  filter: drop-shadow(0 0 14px rgba(232, 201, 106, 0.16));
}

.footer-logo-text-xergv {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 0 18px rgba(232, 201, 106, 0.14);
}

.footer-badges-xergv {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.footer-badges-xergv img {
  height: 26px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-badge-4luck-xergv {
  height: 24px;
}

.footer-crypto-xergv {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.crypto-item-xergv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0;
  background: none;
  border: none;
  flex: 1;
  min-width: 0;
}

.crypto-icon-xergv {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.crypto-name-xergv {
  display: none;
}

.crypto-price-xergv {
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-actions-xergv {
  display: flex;
  gap: 8px;
  width: 100%;
}

.footer-support-btn-xergv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background: #27ae48;
  color: var(--text);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  flex: 1.55;
  min-width: 0;
  white-space: nowrap;
}

.footer-support-btn-xergv:hover {
  background: var(--green-hover);
}

.footer-support-icon-xergv {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-lang-btn-xergv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.footer-lang-btn-xergv:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-lang-flag-xergv {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  display: block;
}

.footer-heading-xergv {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links-xergv {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-xergv a {
  font-size: 14px;
  color: var(--text);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links-xergv a:hover {
  opacity: 1;
  color: var(--green-bright);
}

.social-links-xergv {
  display: flex;
  gap: 10px;
}

.social-link-xergv {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, opacity 0.2s;
}

.social-link-xergv:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.social-link-xergv img {
  width: 40px;
  height: 40px;
  display: block;
}

.footer-legal-bar-xergv {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-top-btn-xergv {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  min-width: 64px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.footer-top-icon-xergv {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.footer-legal-text-xergv a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-text-xergv a:hover {
  color: var(--text);
}

.footer-top-btn-xergv:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.footer-age-xergv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.footer-legal-text-xergv {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  opacity: 0.7;
}

/* ===== MODAL ===== */
.modal-overlay-xergv {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay-xergv.hidden {
  display: none;
}

.register-modal-xergv {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 420px;
  padding: 32px;
  position: relative;
}

.modal-close-xergv {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.modal-close-xergv:hover {
  color: var(--text);
}

.register-title-xergv {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group-xergv {
  margin-bottom: 14px;
}

.form-input-xergv,
.form-select-xergv {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input-xergv:focus,
.form-select-xergv:focus {
  border-color: var(--green);
}

.form-label-xergv {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.submit-btn-xergv {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.2s;
}

.submit-btn-xergv:not(:disabled):hover {
  background: var(--green-hover);
}

.submit-btn-xergv:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-section-xergv {
    grid-template-columns: 1fr;
  }

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

  .content-lists-xergv {
    grid-template-columns: 1fr;
  }

  .content-banner-body-xergv {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .content-banner-image-xergv {
    max-width: 100%;
    width: 240px;
  }

  .providers-grid-xergv {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .content-banner-icon-xergv {
    width: 80px;
  }

  .content-actions-xergv {
    justify-content: center;
  }

  .stats-panel-xergv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item-xergv {
    border-bottom: 1px solid var(--border);
  }

  .footer-main-xergv {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-col-xergv {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-top-xergv {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 6px 12px;
  }

  .header-actions-xergv {
    position: static;
    transform: none;
    grid-column: auto;
    justify-self: auto;
    gap: 0;
  }

  .icon-btn-xergv {
    width: 32px;
    height: 32px;
  }

  .icon-btn-xergv svg {
    width: 20px;
    height: 20px;
  }

  .header-spacer-xergv,
  .header-right-xergv {
    display: none;
  }

  .logo-xergv {
    grid-column: auto;
    justify-self: auto;
    flex-direction: row-reverse;
    gap: 8px;
    margin-left: 4px;
  }

  .logo-chip-xergv {
    width: 32px;
    height: 32px;
  }

  .logo-text-xergv {
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .footer-logo-chip-xergv {
    width: 46px;
    height: 46px;
  }

  .footer-logo-text-xergv {
    font-size: 28px;
  }

  .btn-xergv {
    padding: 8px 14px;
    font-size: 13px;
  }

  .main-wrapper-xergv {
    padding: 16px;
  }

  .hero-banner-content-xergv {
    max-width: 56%;
    flex: 0 1 56%;
    padding: 20px 12px 20px 44px;
  }

  .hero-banner-title-xergv {
    font-size: 20px;
  }

  .hero-banner-subtitle-xergv {
    font-size: 15px;
  }

  .hero-banner-desc-xergv {
    font-size: 12px;
    margin-bottom: 12px;
    max-width: 100%;
  }

  .hero-banner-btn-xergv {
    padding: 10px 22px;
    font-size: 14px;
  }

  .hero-banner-character-xergv {
    opacity: 1;
    right: 4px;
    height: 88%;
    max-width: 46%;
    min-width: 120px;
  }

  .hero-coin-xergv {
    right: 38%;
    top: 10%;
    width: 48px;
  }

  .carousel-slide-xergv .hero-banner-xergv,
  .carousel-slide-xergv .content-banner--slide-xergv {
    min-height: 240px;
  }

  .carousel-slide-xergv .content-banner-body-xergv {
    min-height: 240px;
    padding: 20px 16px 20px 44px;
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .carousel-slide-xergv .content-banner-text-xergv {
    flex: 1;
    min-width: 0;
  }

  .carousel-slide-xergv .content-banner-image-xergv {
    max-width: 44%;
    max-height: 200px;
    align-self: center;
  }

  .carousel-arrow-xergv {
    opacity: 1;
    width: 32px;
    height: 32px;
  }

  .carousel-slide-xergv .content-banner-desc-xergv {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .stats-panel-xergv {
    grid-template-columns: 1fr;
  }

  .content-actions-xergv {
    grid-template-columns: 1fr;
  }

  .filters-row-xergv {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-reset-xergv {
    margin-left: 0;
  }

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

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

  .providers-grid-xergv {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .provider-item-xergv {
    min-height: 60px;
    padding: 10px 8px;
  }

  .provider-item-xergv img {
    max-width: 90px;
    height: 32px;
  }

  .footer-section-xergv {
    padding: 24px 16px 16px;
    margin-top: 24px;
  }

  .footer-social-row-xergv {
    display: none;
  }

  .footer-main-xergv {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 12px 14px;
    margin-bottom: 20px;
  }

  .footer-brand-col-xergv {
    grid-column: auto;
    gap: 12px;
  }

  .footer-col-info-xergv {
    display: none;
  }

  .footer-col-help-xergv {
    padding-top: 2px;
  }

  .footer-badges-xergv {
    gap: 6px 8px;
  }

  .footer-badges-xergv img {
    height: 20px;
  }

  .footer-badge-4luck-xergv {
    height: 18px;
  }

  .crypto-icon-xergv {
    width: 22px;
    height: 22px;
  }

  .crypto-price-xergv {
    font-size: 10px;
  }

  .footer-support-btn-xergv {
    flex: 1.6;
    padding: 11px 10px;
    font-size: 12px;
    gap: 6px;
  }

  .footer-support-icon-xergv {
    width: 18px;
    height: 18px;
  }

  .footer-lang-btn-xergv {
    flex: 1;
    padding: 11px 8px;
    font-size: 12px;
    gap: 4px;
  }

  .footer-lang-flag-xergv {
    width: 18px;
    height: 12px;
  }

  .footer-heading-xergv {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .footer-links-xergv {
    gap: 7px;
  }

  .footer-links-xergv a {
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-legal-bar-xergv {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
  }

  .footer-legal-text-xergv {
    font-size: 10px;
    flex-basis: 100%;
  }

  .content-infographic-xergv {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .info-card-value-xergv {
    font-size: 22px;
  }

  .content-banner-title-xergv {
    font-size: 20px;
  }

  .hero-content-xergv {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .header-actions-xergv .icon-btn-xergv:last-child {
    display: none;
  }

  .games-grid-xergv {
    grid-template-columns: repeat(3, 1fr);
  }
}
