
:root {
  --color-bg:        #0B0F1A;   /* deep navy-black — main background */
  --color-surface:   #131829;   /* slightly lighter — card/section backgrounds */
  --color-elevated:  #1C2340;   /* elevated cards, modals */
  --color-accent:    #C9A84C;   /* antique gold — primary accent */
  --color-accent-lt: #E8C96A;   /* light gold — hover states */
  --color-teal:      #2ABFBF;   /* vivid teal — secondary accent, AI badge */
  --color-text:      #E8E4DA;   /* warm off-white — body text */
  --color-muted:     #8A8FA8;   /* muted blue-grey — secondary text */
  --color-border:    #252C45;   /* subtle border */
  --color-danger:    #D94F4F;   /* alerts, warnings */
  --color-success:   #3DB87A;   /* success states */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  
  --max-width: 1200px;
  --header-height: 80px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}



a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-lt);
}

/* Typography Scale */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  color: #FFFFFF;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1.5rem;
}

p.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-text);
}

small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* Signature Divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 30%, var(--color-accent-lt) 50%, var(--color-accent) 70%, transparent 100%);
  box-shadow: 0 0 8px 1px rgba(201, 168, 76, 0.35);
  margin: 0;
  border: none;
}

/* Layout elements */
.section {
  padding: 80px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.section__inner > div {
  min-width: 0;
}

@media (min-width: 769px) {
  .section__inner--split {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .section--history .section__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

/* Animation & Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--accent {
  background: var(--color-accent);
  color: #0B0F1A;
}

.btn--accent:hover {
  background: var(--color-accent-lt);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

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

.btn--ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  background-color: transparent;
}

.site-header--scrolled {
  background-color: var(--color-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  position: relative;
  z-index: 100;
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header__logo,
.site-footer__logo {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.site-header__nav a:not(.btn) {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  position: relative;
  padding: 4px 0;
}

.site-header__nav a:not(.btn):hover,
.site-header__nav a:not(.btn).active {
  color: #FFFFFF;
}

.site-header__nav a:not(.btn).active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-accent);
}

.site-header__burger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  outline: none;
}

.site-header__burger svg path {
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
  stroke: var(--color-accent);
}

.site-header__mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  gap: 24px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  border-top: 1px solid var(--color-border);
}

.site-header__mobile-nav:not([hidden]) {
  transform: translateY(0);
}

.site-header__mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: #FFFFFF;
  padding: 10px;
}

@media (min-width: 992px) {
  .site-header__nav {
    display: flex;
  }
  .site-header__burger {
    display: none;
  }
  .site-header__mobile-nav {
    display: none !important;
  }
}

/* Footer */
.site-footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 80px 24px 40px 24px;
  margin-top: 80px;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
}

.site-footer__tagline {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.site-footer__nav-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.site-footer__nav-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__nav-grid a {
  color: var(--color-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-footer__nav-grid a:hover {
  color: #FFFFFF;
}

.social-links {
  display: flex !important;
  flex-direction: row !important;
  gap: 16px !important;
  list-style: none;
}

.social-links a {
  color: var(--color-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: var(--color-accent) !important;
  transform: translateY(-2px);
}

.site-footer__cookie-notice,
.site-footer__disclaimer {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}
.site-footer__responsible-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.responsible-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted) !important;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.responsible-logo-link:hover {
  color: var(--color-accent) !important;
  transform: translateY(-1px);
}

.responsible-logo-link svg {
  stroke: currentColor;
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-elevated);
  border-top: 2px solid var(--color-accent);
  padding: 20px 24px;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
}

@media (min-width: 769px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cookie-banner p {
    flex: 1;
    margin-right: 32px;
  }
}

/* AI Agent Chat Widget */
.ai-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.ai-widget__button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.ai-widget__button:hover {
  background-color: var(--color-accent-lt);
  transform: scale(1.05);
}

.ai-widget__button svg {
  fill: #0B0F1A;
  width: 24px;
  height: 24px;
}

.ai-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  height: 500px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.ai-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.ai-panel__header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-elevated);
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
}

.ai-panel__title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-panel__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.ai-panel__badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-teal);
  border: 1px solid var(--color-teal);
  padding: 2px 6px;
  border-radius: 4px;
}

.ai-panel__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.ai-panel__close:hover {
  color: #FFFFFF;
}

.ai-panel__messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.ai-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

.ai-message__typing {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 20px;
}

.ai-message__typing span {
  width: 6px;
  height: 6px;
  background-color: var(--color-muted);
  border-radius: 50%;
  animation: typing 1.4s infinite both;
}

.ai-message__typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-message__typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

.ai-panel__input-area {
  padding: 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 8px;
  background-color: var(--color-surface);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.ai-panel__input {
  flex: 1;
  background-color: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 10px 14px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
}

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

.ai-panel__send {
  background-color: var(--color-accent);
  border: none;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.ai-panel__send:hover {
  background-color: var(--color-accent-lt);
}

.ai-panel__send svg {
  fill: #0B0F1A;
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .ai-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 90px;
    height: 400px;
  }
  .ai-widget {
    bottom: 16px;
    right: 16px;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 70% 50%, #1C2340 0%, #0B0F1A 70%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='%23C9A84C' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 650px;
}

.hero__eyebrow {
  margin-bottom: 1rem;
}

.hero__heading {
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__game-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

/* Hero Slot Machine Mini Widget */
.hero-slot {
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(201, 168, 76, 0.15);
  text-align: center;
}

.hero-slot__title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.hero-slot__reels {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-slot__reel {
  width: 70px;
  height: 90px;
  background-color: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slot__reel-svg {
  width: 44px;
  height: 44px;
}

.hero-slot__spin {
  width: 100%;
}

/* History section */
.section__text-col p {
  color: var(--color-text);
  font-size: 1.05rem;
}

.section__image-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 32px;
  padding-top: 16px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
}

.timeline__item {
  position: relative;
  text-align: center;
  flex: 1;
}

.timeline__item::before {
  content: '';
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-border);
  border: 2px solid var(--color-bg);
  transition: background-color 0.3s ease;
}

.timeline__item:hover::before {
  background-color: var(--color-accent);
}

.timeline__year {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

.timeline__label {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 4px;
}

/* Section Image treatments */
.responsive-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Features Grid */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(201, 168, 76, 0.1);
}

.feature-card__icon {
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-accent);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* What is Section split & images */
.what-is__image-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Featured game section on homepage */
.featured-game__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 24px;
  align-items: center;
}

.featured-game__specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.featured-game__specs li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.featured-game__specs li .label {
  margin-bottom: 0;
  color: var(--color-muted);
}

.featured-game__specs li span:last-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #FFFFFF;
}

.featured-game__canvas {
  display: flex;
  justify-content: center;
}

@media (min-width: 992px) {
  .featured-game__inner {
    grid-template-columns: 1fr 1fr;
    padding: 60px;
  }
}

/* Editorial Text Blocks */
.editorial-block {
  border-left: 2px solid var(--color-accent);
  padding: 16px 0 16px 24px;
  margin: 40px 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.6;
  color: var(--color-text);
  font-style: italic;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.05) 0%, transparent 100%);
}

.editorial-block p {
  margin-bottom: 12px;
}

.editorial-block p:last-child {
  margin-bottom: 0;
}

/* Pros and Cons */
.pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

.pros-cons__col {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
}

.pros-cons__col h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pros-cons__col--pros h3 {
  color: var(--color-success);
}

.pros-cons__col--cons h3 {
  color: var(--color-danger);
}

.pros-cons__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pros-cons__col li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
}

.pros-cons__col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
}

.pros-cons__col--pros li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233DB87A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  top: 4px;
}

.pros-cons__col--cons li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D94F4F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  width: 14px;
  height: 14px;
  top: 6px;
}

@media (min-width: 769px) {
  .pros-cons__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Comparison Table */
.table-container {
  overflow-x: auto;
  margin: 40px 0;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background-color: var(--color-surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-family: var(--font-body);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background-color: var(--color-elevated);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
}

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

.comparison-table tbody tr {
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.02);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #FFFFFF;
}

.comparison-table td:nth-child(2) {
  color: var(--color-success);
}

.comparison-table td:nth-child(3) {
  color: var(--color-muted);
}

/* FAQ Accordion */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

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

.faq-item__trigger {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-item__trigger h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: #FFFFFF;
  padding-right: 16px;
}

.faq-item__icon {
  flex-shrink: 0;
}

.faq-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon svg {
  transform: rotate(180deg);
}

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

.faq-item__content {
  padding: 0 24px 24px 24px;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Page Headers (About, Contact, Policies) */
.page-main {
  padding-top: var(--header-height);
  min-height: 80vh;
}

.page-hero {
  padding: 80px 24px 40px 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

/* About Us Layout */
.about-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Form Styles */
.contact-form-container {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 650px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
}

.contact-info-card address {
  font-style: normal;
  color: var(--color-muted);
  margin-top: 16px;
  line-height: 1.8;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
}

.form-group label span {
  color: var(--color-danger);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  background-color: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.form-group--checkbox label {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.form-group--checkbox a {
  text-decoration: underline;
}

.form-error {
  color: var(--color-danger);
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-success {
  background-color: rgba(61, 184, 122, 0.1);
  border: 1px solid var(--color-success);
  border-radius: 6px;
  color: var(--color-success);
  padding: 16px 20px;
  font-size: 0.95rem;
  margin-top: 24px;
  line-height: 1.6;
}

/* Map Embed */
.map-container {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

/* Policy Content Layout */
.policy-content {
  max-width: 800px;
  margin: 0 auto 80px auto;
  padding: 0 24px;
}

.policy-content section {
  margin-bottom: 40px;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
  margin-top: 40px;
}

.policy-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  margin-top: 24px;
}

.policy-content p {
  color: var(--color-text);
  margin-bottom: 16px;
  font-size: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.policy-content li {
  margin-bottom: 8px;
  color: var(--color-text);
}

/* GAMES PAGE LAYOUT */
.games-dashboard {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px;
}

.game-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 40px 24px;
  margin-bottom: 48px;
  align-items: center;
}

.game-section__info {
  max-width: 500px;
}

.game-section__info h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.game-section__info p {
  margin-bottom: 20px;
}

.game-section__canvas {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 992px) {
  .game-section {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 60px;
  }
}

/* SLOT CABINET STYLE */
.slot-cabinet {
  background: linear-gradient(180deg, #1C2340 0%, #131829 100%);
  border: 4px solid var(--color-accent);
  border-radius: 16px;
  padding: 32px 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(201, 168, 76, 0.15);
}

.slot-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  background-color: #05070d;
  border-radius: 8px;
  padding: 12px;
  border: 2px solid var(--color-border);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.slot-reel-column {
  height: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  position: relative;
}

.slot-symbol-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  will-change: transform;
}

.slot-symbol {
  height: 54px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* Slot Spinning animation classes handled by transform in JS */

.slot-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slot-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.slot-display-panel {
  background-color: #05070d;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slot-display-panel .label {
  margin-bottom: 4px;
  font-size: 0.65rem;
  color: var(--color-muted);
}

.slot-display-value {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
}

.slot-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.slot-bet-controls {
  display: flex;
  align-items: center;
  background-color: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 4px;
}

.slot-bet-btn {
  background: transparent;
  border: none;
  color: var(--color-accent);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.slot-bet-btn:hover {
  color: var(--color-accent-lt);
}

.slot-bet-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  width: 48px;
  text-align: center;
  color: #FFFFFF;
}

.slot-spin-btn {
  flex: 1;
}

/* FORTUNE WHEEL STYLE */
.wheel-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.wheel-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 360px;
  margin-bottom: 24px;
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
  line-height: 0;
}

.wheel-pointer svg {
  fill: var(--color-accent);
}

#fortune-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.1);
  border: 4px solid var(--color-accent);
  background-color: var(--color-bg);
}

.wheel-result {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  min-height: 2.2rem;
  text-align: center;
  font-weight: 600;
}

.wheel-timer {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
  min-height: 1.5rem;
}

/* SCRATCH CARD STYLE */
.scratch-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  background-color: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scratch-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  margin-bottom: 20px;
  touch-action: none;
}

.scratch-card-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  z-index: 1;
}

#scratch-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.scratch-result {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 16px;
  min-height: 2rem;
  text-align: center;
  font-weight: 600;
}

.scratch-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.scratch-balance {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--color-muted);
}

.scratch-balance span {
  color: #FFFFFF;
  font-weight: 700;
}

/* LEAD CAPTURE MODALS */
.lead-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.lead-modal.open {
  opacity: 1;
  pointer-events: all;
}

.lead-modal__card {
  background-color: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-modal.open .lead-modal__card {
  transform: translateY(0);
}

.lead-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-modal__close:hover {
  color: #FFFFFF;
}

.lead-modal h3 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-align: center;
}

.lead-modal p {
  color: var(--color-muted);
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.lead-modal .form-group {
  text-align: left;
}

.lead-modal .btn {
  width: 100%;
  margin-top: 12px;
}

/* Age badge styling */
.site-footer__age-badge {
  display: inline-block;
  line-height: 0;
}

.site-footer__age-badge svg {
  display: block;
}

/* Page transitions, structural styling, responsive improvements */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 60px;
  }
  .section {
    padding: 48px 16px;
  }
  .site-footer {
    padding: 60px 16px 30px 16px;
  }
  .what-is__image-group {
    grid-template-columns: 1fr;
  }
}

.hero-texture-img { max-width: 400px; }
