
:root {
  
  --color-bg:           #0B0F1A;   
  --color-surface:      #141928;   
  --color-surface-alt:  #1C2236;   
  --color-gold:         #C9A84C;   
  --color-gold-light:   #E2C47A;   
  --color-text-primary: #F0EDE6;   
  --color-text-muted:   #8A8FA8;   
  --color-border:       #2A3050;   
  --color-success:      #3DA874;   
  --color-error:        #C94C4C;   

  
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   32px;
  --space-xl:   64px;
  --space-2xl:  96px;

  
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow:  0 0 24px rgba(201, 168, 76, 0.15);
  
  
  --font-display: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-family: var(--font-display);
  font-weight: 900;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--color-gold);
}

h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

p.muted {
  color: var(--color-text-muted);
}

.mono {
  font-family: var(--font-mono);
}


.drop-cap::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin-right: var(--space-sm);
  color: var(--color-gold);
}


section {
  padding: var(--space-xl) 0;
}

.bg-alt {
  background-color: var(--color-surface-alt);
}

.bg-surface {
  background-color: var(--color-surface);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  box-shadow: 0 0 32px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}


header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-gold);
  stroke-width: 2;
  fill: none;
}

.site-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  white-space: nowrap;
}

.site-title span {
  color: var(--color-gold);
}

.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: var(--space-lg);
}

.desktop-nav a {
  font-weight: 500;
  font-size: 0.95rem;
}

.desktop-nav a:hover {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 4px;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

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


.mobile-nav-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--color-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-md);
  gap: var(--space-lg);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid var(--color-border);
}

.mobile-nav-overlay.active {
  transform: translateY(0);
}

.mobile-nav-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  padding: var(--space-sm) 0;
}

.mobile-nav-overlay a:hover {
  color: var(--color-gold);
}


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

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

.footer-col h3 {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: var(--space-md);
}

.footer-logo-wrapper {
  margin-bottom: var(--space-md);
}

.footer-logo-wrapper .logo-link {
  font-size: 1.8rem;
}

.footer-tagline {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.social-link:hover {
  color: var(--color-gold);
}

.social-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.quick-links-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.quick-links-list a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.quick-links-list a:hover {
  color: var(--color-gold);
}

.badge-18plus {
  display: inline-block;
  border: 2px solid #FF5252;
  color: #FFFFFF;
  background-color: #FF5252;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.contact-info-list address {
  font-style: normal;
  line-height: 1.6;
}

.footer-bottom {
  background-color: #080A12;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

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

.footer-bottom a {
  color: var(--color-gold);
}

.footer-bottom a:hover {
  color: var(--color-gold-light);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-surface);
  border-top: 2px solid var(--color-gold);
  z-index: 2000;
  padding: var(--space-md);
  box-shadow: 0 -4px 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-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-close {
  position: absolute;
  top: -4px;
  right: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  color: var(--color-text-muted);
}

.cookie-close:hover {
  color: var(--color-gold);
}

.cookie-text {
  font-size: 0.9rem;
  padding-right: var(--space-lg);
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-preferences {
  display: none;
  background-color: var(--color-surface-alt);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-top: var(--space-sm);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
}

.cookie-option-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.cookie-option-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}


.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  transition: .4s;
  border-radius: var(--radius-pill);
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-text-primary);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--color-gold);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}


.ai-agent-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
}

.ai-agent-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), var(--shadow-glow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-agent-trigger:hover {
  transform: scale(1.08) rotate(5deg);
  background-color: var(--color-gold-light);
}

.ai-agent-trigger svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.ai-agent-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 320px;
  height: 440px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-agent-panel.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.ai-agent-header {
  background-color: var(--color-surface-alt);
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-agent-title {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--color-gold);
}

.ai-agent-close {
  cursor: pointer;
  color: var(--color-text-muted);
  width: 20px;
  height: 20px;
}

.ai-agent-close:hover {
  color: var(--color-gold);
}

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

.ai-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.ai-msg-bot {
  background-color: var(--color-surface-alt);
  color: var(--color-text-primary);
  border-bottom-left-radius: 2px;
  align-self: flex-start;
  border: 1px solid var(--color-border);
}

.ai-msg-user {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border-bottom-right-radius: 2px;
  align-self: flex-end;
  font-weight: 500;
}


.ai-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  align-self: flex-start;
}

.ai-typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-text-muted);
  border-radius: 50%;
  animation: typing 1s infinite alternate;
}

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

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

@keyframes typing {
  0% { transform: translateY(0); opacity: 0.4; }
  100% { transform: translateY(-4px); opacity: 1; }
}

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

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

.ai-agent-input:focus {
  border-color: var(--color-gold);
}

.ai-agent-send {
  background-color: var(--color-gold);
  color: var(--color-bg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: var(--space-sm);
}

.ai-agent-send:hover {
  background-color: var(--color-gold-light);
}




.hero {
  position: relative;
  background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.04) 0%, rgba(11, 15, 26, 0) 60%);
  padding: var(--space-2xl) 0 var(--space-xl) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

.hero-title span {
  display: block;
  color: var(--color-gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}


.mini-slot-preview {
  width: 260px;
  background-color: var(--color-surface);
  border: 4px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-slot-reels {
  display: flex;
  gap: var(--space-sm);
  background-color: #080A12;
  padding: 10px;
  border-radius: var(--radius-sm);
  width: 100%;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.mini-reel {
  width: 60px;
  height: 60px;
  background-color: var(--color-surface-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  position: relative;
}

.mini-reel-strip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  transition: transform 0.5s ease-in-out;
}

.mini-slot-badge {
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  text-align: center;
  box-shadow: var(--shadow-glow);
}


.ticker-strip {
  background-color: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  overflow: hidden;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  gap: var(--space-xl);
  font-family: var(--font-mono);
  color: var(--color-gold);
  font-size: 0.9rem;
  animation: scroll-left 30s linear infinite;
  padding-left: 100%;
}

.ticker-wrap:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-item span {
  color: var(--color-text-primary);
}

@keyframes scroll-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}


.what-is-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.what-is-text {
  font-size: 0.95rem;
}

.what-is-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}


.history-timeline {
  position: relative;
  padding-left: 20px;
}

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

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-left: var(--space-md);
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 8px;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gold);
  border: 2px solid var(--color-bg);
}

.timeline-year {
  font-family: var(--font-mono);
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.timeline-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.timeline-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.history-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  align-items: center;
}

.history-intro-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}


.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.feature-icon-wrapper {
  margin-bottom: var(--space-md);
}

.feature-icon {
  width: 40px;
  height: 40px;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  fill: none;
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 0;
}


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

.pros-cons-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.pros-card {
  border-left: 4px solid var(--color-success);
}

.cons-card {
  border-left: 4px solid var(--color-error);
}

.pros-cons-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

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

.pros-cons-list li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-text-primary);
}

.pros-cons-list li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.pros-card .pros-cons-list li::before {
  background-color: var(--color-success);
}

.cons-card .pros-cons-list li::before {
  background-color: var(--color-error);
}


.comparison-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 140px 1fr 1fr;
  min-width: 580px;
}

.comparison-header {
  background-color: var(--color-surface-alt);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: var(--space-md);
  border-bottom: 2px solid var(--color-border);
  color: var(--color-text-primary);
}

.comparison-header.gold-col {
  color: var(--color-gold);
}

.comparison-cell {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  background-color: var(--color-surface);
}

.comparison-grid div:nth-last-child(-n+3) {
  border-bottom: none;
}

.comparison-feature-name {
  font-weight: 600;
  background-color: var(--color-surface-alt);
}


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

.editorial-block {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

.editorial-block h3 {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.faq-question {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--color-surface-alt);
  font-size: 0.95rem;
}

.faq-question:hover {
  color: var(--color-gold);
}

.faq-question-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease;
}

.faq-item.active {
  border-color: var(--color-gold);
}

.faq-item.active .faq-question-icon {
  transform: rotate(180deg);
  color: var(--color-gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer-inner {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  line-height: 1.6;
}


.conclusion-box {
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.conclusion-box h2 {
  display: block;
}

.conclusion-box h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.conclusion-box p {
  max-width: 700px;
  margin: 0 auto var(--space-lg) auto;
  color: var(--color-text-primary);
}


.games-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.game-block-wrapper {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.game-header-section {
  margin-bottom: var(--space-lg);
}

.game-header-section h2 {
  margin-bottom: var(--space-xs);
}

.game-header-section h2::after {
  display: none;
}

.game-description-text {
  margin-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-lg);
}

.game-description-text h3 {
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  font-size: 1.1rem;
}


.game-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #080A12;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.9rem;
}

.hud-item span {
  color: var(--color-gold);
  font-weight: 700;
}


.slot-machine-cabinet {
  max-width: 500px;
  margin: 0 auto;
  background-color: #1a2238;
  border: 6px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
}

.slot-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  text-shadow: 0 0 12px rgba(201,168,76,0.3);
  text-transform: uppercase;
  font-weight: 900;
}

.slot-reels-window {
  background-color: #080A12;
  border-radius: var(--radius-md);
  padding: 16px;
  border: 2px solid var(--color-border);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

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

.slot-reel {
  width: 90px;
  height: 240px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.slot-reel-strip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: -240px;
  width: 100%;
}

.slot-symbol {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: transform 0.1s ease;
}

.slot-symbol-7 { color: #E74C3C; text-shadow: 0 0 8px rgba(231,76,60,0.3); }
.slot-symbol-Diamond { color: #3498DB; text-shadow: 0 0 8px rgba(52,152,219,0.3); }
.slot-symbol-Bell { color: #F1C40F; text-shadow: 0 0 8px rgba(241,196,15,0.3); }
.slot-symbol-Cherry { color: #E84393; text-shadow: 0 0 8px rgba(232,67,147,0.3); }
.slot-symbol-Bar { color: #BDC3C7; text-shadow: 0 0 8px rgba(189,195,199,0.3); }


.payline-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(201, 168, 76, 0.7);
  box-shadow: 0 0 8px var(--color-gold);
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 10;
}

.payline-indicator::before, .payline-indicator::after {
  content: '';
  position: absolute;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.payline-indicator::before {
  left: 2px;
  border-left: 8px solid var(--color-gold);
}

.payline-indicator::after {
  right: 2px;
  border-right: 8px solid var(--color-gold);
}


@keyframes win-glow {
  0%, 100% { border-color: var(--color-border); }
  50% { border-color: var(--color-gold); box-shadow: 0 0 15px var(--color-gold); }
}

.slot-reels-window.win-flash {
  animation: win-glow 0.4s ease 3;
}

.slot-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.controls-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.bet-selector-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bet-selector-wrapper label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.bet-options {
  display: flex;
  background-color: #080A12;
  border-radius: var(--radius-pill);
  padding: 2px;
  border: 1px solid var(--color-border);
}

.bet-btn {
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-pill);
}

.bet-btn.active {
  background-color: var(--color-gold);
  color: var(--color-bg);
}

.autoplay-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.spin-btn-container {
  display: flex;
  justify-content: center;
}

.spin-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


.wheel-game-container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wheel-outer-wrapper {
  position: relative;
  width: 320px;
  height: 320px;
  margin-bottom: var(--space-lg);
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 28px;
  fill: var(--color-gold);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  z-index: 10;
}

.wheel-canvas-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 8px solid var(--color-gold);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
  background-color: var(--color-bg);
}

.wheel-circle {
  width: 100%;
  height: 100%;
  transition: transform 4s cubic-bezier(0.1, 0.8, 0.1, 1);
  transform: rotate(0deg);
}


.scratch-game-container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scratch-card-wrapper {
  position: relative;
  width: 300px;
  height: 200px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-gold);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  background-color: var(--color-surface-alt);
  margin-bottom: var(--space-lg);
  touch-action: none;
}


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

.scratch-cell {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

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


.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: flex-start;
}

.about-intro-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.about-content-section {
  margin-bottom: var(--space-xl);
}

.about-content-section h2 {
  font-size: 1.5rem;
}

.about-content-section p {
  color: var(--color-text-primary);
  font-size: 0.98rem;
  margin-bottom: var(--space-md);
}


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

.contact-form-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.form-control {
  background-color: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px var(--space-md);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  width: 100%;
}

.form-control:focus {
  border-color: var(--color-gold);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 4px;
}

.form-error {
  color: var(--color-error);
  font-size: 0.75rem;
  display: none;
  margin-top: 2px;
}

.form-group.has-error .form-control {
  border-color: var(--color-error);
}

.form-group.has-error .form-error {
  display: block;
}

.success-message-panel {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(61, 168, 116, 0.1);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md) auto;
}

.success-icon {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

.success-message-panel h3 {
  color: var(--color-success);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.contact-details-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.contact-details-card h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  margin-top: var(--space-xl);
}

.map-container iframe {
  display: block;
}


.policy-page {
  padding-top: var(--space-2xl);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
}

.policy-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-xl);
}

.policy-header h1 {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.policy-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.policy-body h2 {
  font-size: 1.3rem;
  color: var(--color-text-primary);
  margin: var(--space-lg) 0 var(--space-sm) 0;
  display: block;
}

.policy-body h2::after {
  display: none;
}

.policy-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.policy-body ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}






@media (min-width: 480px) {
  .hero-title {
    font-size: 2.6rem;
  }
  
  .cookie-buttons {
    flex-direction: row;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
}


@media (min-width: 768px) {
  section {
    padding: var(--space-2xl) 0;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  .hero-title {
    font-size: 3.4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  
  .cookie-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
  }
  
  .cookie-buttons {
    flex-shrink: 0;
    width: auto;
  }
  
  .what-is-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .history-intro-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pros-cons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  
  .comparison-grid {
    grid-template-columns: 200px 1fr 1fr;
  }
  
  .footer-bottom-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .policy-container {
    padding: var(--space-2xl);
  }
}


@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .mobile-nav-overlay {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .games-layout {
    gap: var(--space-2xl);
  }
  
  .game-block-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
  }
  
  .game-header-section {
    margin-bottom: 0;
  }
  
  .game-description-text {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
  }
  
  .ai-agent-panel {
    width: 340px;
    height: 480px;
  }
}


@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
}


/* Fix link contrast / underline for accessibility */
.cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}


/* Fix link contrast / underline for accessibility in footer */
.footer-bottom-container a {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
