
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(22, 22, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

header .header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-gold);
  cursor: pointer;
  transition: var(--transition-base);
}

.header-brand svg {
  width: 32px;
  height: 32px;
}

.header-brand:hover {
  text-shadow: 0 0 12px rgba(245,158,11,0.5);
}

.header-nav {
  display: flex;
  gap: var(--space-sm);
}

.nav-pill {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-base);
}

.nav-pill:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}

.nav-pill.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: var(--color-surface-2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
  gap: var(--space-md);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
  border-top: 1px solid var(--color-border);
}

body.nav-open .mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-base);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-base);
  gap: var(--space-sm);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn--gold {
  background: var(--gradient-gold);
  color: #0d0d1a;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.5);
}

.btn--outline {
  border-color: var(--color-border-light);
  color: var(--color-text);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-text);
  color: #fff;
}

.btn--accent {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.5);
}

.btn--success {
  background-color: var(--color-success);
  color: #fff;
}

.btn--success:hover {
  background-color: #059669;
}

.btn--danger {
  background-color: var(--color-danger);
  color: #fff;
}

.btn--danger:hover {
  background-color: #dc2626;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

.btn--full {
  display: flex;
  width: 100%;
}

.game-card {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.game-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition-base);
}

.game-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transform: translateY(20px);
  transition: transform var(--transition-spring);
}

.game-card:hover .game-card__content {
  transform: translateY(0);
}

.game-card:hover .game-card__img {
  transform: scale(1.08);
}

.game-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.rating svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.rating span {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-gold-light);
  font-family: var(--font-mono);
}

.game-card__title {
  color: #fff;
  font-size: 22px;
  font-family: var(--font-display);
}

.game-card__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  opacity: 0;
  transition: opacity var(--transition-base) 0.1s;
}

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

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: var(--transition-base);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--color-accent);
  background: var(--color-surface-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-card svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg) auto;
  fill: var(--color-accent-glow);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 14px;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.pros-cons-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.pros-cons-card__header {
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pros-cons-card__header svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.pros-cons-card__body {
  padding: var(--space-lg);
}

.pros-cons-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.pros-cons-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 15px;
  color: var(--color-text-muted);
}

.pros-cons-item svg {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pros-cons-card--advantages .pros-cons-card__header {
  background: var(--color-success);
}
.pros-cons-card--advantages .pros-cons-item svg {
  fill: var(--color-success);
}

.pros-cons-card--disadvantages .pros-cons-card__header {
  background: var(--color-danger);
}
.pros-cons-card--disadvantages .pros-cons-item svg {
  fill: var(--color-danger);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

table {
  background: var(--color-surface);
}

table th, table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

table th {
  background-color: var(--color-surface-2);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 700;
}

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

table tbody tr:hover {
  background-color: var(--color-surface-2);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-border-light);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
}

.faq-question svg {
  width: 16px;
  height: 16px;
  fill: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) cubic-bezier(0, 1, 0, 1), padding var(--transition-base);
  padding: 0 var(--space-lg);
  color: var(--color-text-muted);
  font-size: 15px;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
  fill: var(--color-gold);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px; 
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  transition: max-height var(--transition-base) cubic-bezier(1, 0, 1, 0), padding var(--transition-base);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 7000;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-banner__text {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 14px;
}

.cookie-banner__badge-18 {
  display: inline-block;
  padding: 2px 10px;
  background: var(--color-danger);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

.cookie-banner__text p {
  margin: 0;
  color: var(--color-text-muted);
}

.cookie-banner__text a {
  color: var(--color-accent-glow);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13,13,26,0.85);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal-card {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-dim);
  transition: var(--transition-base);
}

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

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.modal-card h2 {
  font-size: 28px;
  margin-bottom: var(--space-sm);
  text-align: center;
}

.modal-card h2::after {
  display: none;
}

.modal-card p {
  font-size: 14px;
  margin-bottom: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-lg);
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 15px;
  transition: var(--transition-base);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 8px rgba(124,58,237,0.25);
}

.form-error {
  display: block;
  font-size: 13px;
  color: var(--color-danger);
  margin-top: var(--space-xs);
}

.form-success, .form-success-state {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  background: rgba(16,185,129,0.15);
  border: 1px solid var(--color-success);
  color: var(--color-success);
  font-size: 14px;
  text-align: center;
}

.form-success-state svg {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md) auto;
  fill: var(--color-success);
}

#ai-agent-container {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 8000;
}

.ai-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-spring);
}

.ai-fab:hover {
  transform: scale(1.1);
}

.ai-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.ai-chat-panel {
  position: fixed;
  bottom: 108px;
  right: 32px;
  z-index: 8000;
  width: 340px;
  height: 480px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
}

.ai-chat-header {
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-surface-3);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 15px;
}

.ai-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
}

#ai-close-btn {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
}

#ai-close-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.ai-chat-messages {
  flex-grow: 1;
  padding: var(--space-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ai-message {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  max-width: 85%;
  font-size: 14px;
  line-height: 1.4;
}

.ai-message--agent {
  background-color: var(--color-surface-3);
  color: var(--color-text);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.ai-message--user {
  background-color: var(--color-accent);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.ai-chat-input {
  display: flex;
  padding: var(--space-sm);
  border-top: 1px solid var(--color-border);
  background: var(--color-surface-3);
  gap: var(--space-sm);
}

.ai-chat-input input {
  flex-grow: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text);
  font-size: 14px;
}

.ai-chat-input input:focus {
  border-color: var(--color-accent);
}

.slot-machine {
  background: var(--color-surface-2);
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  max-width: 600px;
  margin: var(--space-xl) auto;
  position: relative;
  text-align: center;
}

.slot-balance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  color: var(--color-text-muted);
}

.slot-coins {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold-light);
  font-family: var(--font-mono);
}

.slot-reels {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  position: relative;
}

.reel {
  width: 100px;
  height: 240px;
  background: var(--color-surface);
  border: 3px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.reel-strip {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slot-symbol {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.slot-symbol svg {
  width: 54px;
  height: 54px;
}

.slot-payline {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  height: 2px;
  background: rgba(245,158,11,0.5);
  z-index: 10;
  pointer-events: none;
  transform: translateY(-50%);
  box-shadow: 0 0 6px rgba(245,158,11,0.8);
}

.slot-message {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gold);
  min-height: 28px;
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
}

.slot-spin-btn {
  font-size: 18px;
  padding: 14px 40px;
}

footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-xl) 0;
  color: var(--color-text-muted);
}

footer h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

footer ul a {
  font-size: 14px;
  transition: var(--transition-fast);
}

footer ul a:hover {
  color: var(--color-gold);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: var(--space-3xl);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-gold);
}

.footer-brand-logo svg {
  width: 32px;
  height: 32px;
}

.footer-brand-col p {
  font-size: 14px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm) !important;
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 13px !important;
  color: var(--color-text-dim);
}

.social-links li a:hover {
  color: var(--color-accent-glow);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-contact-col address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-subscribe-prompt {
  margin-top: var(--space-xl);
  font-size: 13px;
  line-height: 1.5;
}

.footer-subscribe-btn {
  margin-top: var(--space-sm);
  display: block;
}

.footer-cookie-notice {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
  margin-bottom: var(--space-lg);
  font-size: 13px;
  text-align: center;
}

.footer-cookie-notice p {
  margin: 0;
}

.footer-cookie-notice a {
  color: var(--color-accent-glow);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
}

.footer-bottom__disclaimer {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.badge-18 {
  display: inline-block;
  padding: 1px 6px;
  background-color: var(--color-danger);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom__payments {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.footer-bottom__payments svg {
  width: auto;
  height: 24px;
  fill: var(--color-text-dim);
  opacity: 0.6;
}

.footer-legal-text {
  font-size: 12px;
  color: var(--color-text-dim);
  text-align: center;
  padding: var(--space-lg) var(--space-lg) 0 var(--space-lg);
  line-height: 1.6;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl) 0 var(--space-sm) 0;
  font-size: 13px;
  color: var(--color-text-dim);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.page-hero {
  padding: var(--space-xl) 0 var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3xl);
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero h1::after {
  display: none;
}

.page-hero .tagline {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.page-hero__image-wrap {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-card);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, rgba(13, 13, 26, 0.95) 100%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.page-hero__image-wrap img {
  height: 90%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.page-hero__image-wrap img:hover {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .page-hero__image-wrap {
    height: 260px;
  }
}

.stats-table {
  max-width: 600px;
  margin: var(--space-2xl) 0;
}

.stats-table th {
  width: 40%;
}

.qeq {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background-color: #0d0d1a;
}

.qeq iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

