

:root {
  --color-bg-main: #0a0d14;
  --color-bg-card: #121824;
  --color-bg-card-hover: #192233;
  --color-bg-alt: #0e131d;
  --color-gold-primary: #d4af37;
  --color-gold-light: #ffd700;
  --color-gold-dark: #aa8625;
  --color-cyan-glow: #00d2ff;
  --color-emerald: #00e676;
  --color-text-bright: #ffffff;
  --color-text-main: #e2e8f0;
  --color-text-muted: #94a3b8;
  --color-border: #232d3f;
  --color-border-gold: rgba(212, 175, 55, 0.3);
  
  --font-family-base: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-heading: 'Space Grotesk', 'Outfit', sans-serif;
  
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}


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

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

body {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  font-family: var(--font-family-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  color: var(--color-text-bright);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-main);
}

a {
  color: var(--color-gold-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

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


.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-padding {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-alt {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-text-bright);
  letter-spacing: -0.01em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.brand-name-gold {
  color: var(--color-gold-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
}

.nav-link {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-bright);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold-primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-18plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  background-color: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #f87171;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-bright);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #ffffff;
}

.mobile-menu-toggle svg path {
  fill: #ffffff;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-family-base);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  user-select: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  color: #0c0f17;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
  color: #0c0f17;
}

.btn-outline {
  background-color: rgba(10, 14, 22, 0.85);
  border-color: var(--color-gold-primary);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background-color: var(--color-gold-primary);
  color: #0c0f17;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}


.hero-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: linear-gradient(90deg, rgba(8, 11, 18, 0.95) 0%, rgba(8, 11, 18, 0.82) 45%, rgba(8, 11, 18, 0.45) 100%), url('/assets/images/hero_bg.webp');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .hero-section {
    background-image: linear-gradient(180deg, rgba(8, 11, 18, 0.95) 0%, rgba(8, 11, 18, 0.88) 100%), url('/assets/images/hero_bg_mobile.webp');
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  background: rgba(14, 19, 29, 0.85);
  backdrop-filter: blur(14px);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #f1f5f9;
  margin-bottom: 1.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-content p {
  color: #cbd5e1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-preview-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.hero-preview-img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.hero-preview-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  font-weight: 700;
  font-size: 0.85rem;
}


.section-header {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.section-subtitle {
  color: var(--color-gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: block;
}


.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.game-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-glow);
  background-color: var(--color-bg-card-hover);
}

.game-thumb-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.game-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.game-card:hover .game-thumb-img {
  transform: scale(1.05);
}

.game-rating-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-light);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

.game-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.game-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.game-card-actions {
  display: flex;
  gap: 0.5rem;
}

.game-card-actions .btn {
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  flex: 1;
}


.history-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.history-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
}

.timeline-year {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-gold-primary);
  min-width: 60px;
}

.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

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


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-normal);
}

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

.feature-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  margin-bottom: 1.25rem;
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

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


.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pros-box, .cons-box {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.pros-box {
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.cons-box {
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pros-header, .cons-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.pros-icon, .cons-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.pros-icon {
  background-color: rgba(0, 230, 118, 0.2);
  color: var(--color-emerald);
}

.cons-icon {
  background-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.pros-list, .cons-list {
  list-style: none;
  margin: 0;
}

.pros-list li, .cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.pros-check {
  color: var(--color-emerald);
  font-weight: bold;
}

.cons-cross {
  color: #ef4444;
  font-weight: bold;
}


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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

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

.comparison-table th {
  background-color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-family-heading);
  font-size: 1rem;
  color: var(--color-text-bright);
}

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

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-text-bright);
  width: 30%;
}

.comparison-table .highlight-col {
  background-color: rgba(212, 175, 55, 0.05);
  color: var(--color-gold-light);
  font-weight: 500;
}


.faq-accordion {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

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

.faq-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--color-text-bright);
  font-family: var(--font-family-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
  color: var(--color-gold-primary);
  flex-shrink: 0;
}

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

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.faq-item.active .faq-panel {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-panel p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0;
}


.conclusion-card {
  background: linear-gradient(135deg, rgba(18, 24, 36, 0.95) 0%, rgba(25, 34, 51, 0.95) 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-glow);
}

.conclusion-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.conclusion-card p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 7, 12, 0.92);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-window {
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-gold-primary);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--color-border-gold);
  color: var(--color-text-bright);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-gold-primary);
  color: #000;
}


.slot-game-container {
  background-color: #060911;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.slot-disclaimer-banner {
  width: 100%;
  max-width: 680px;
  background: linear-gradient(90deg, #b91c1c, #991b1b);
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slot-canvas-frame {
  width: 100%;
  max-width: 680px;
  max-height: 440px;
  aspect-ratio: 16 / 10;
  background: #0b111e;
  border: 3px solid var(--color-gold-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

#slotCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.slot-controls-bar {
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--color-bg-card);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.slot-stat-box {
  display: flex;
  flex-direction: column;
}

.slot-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.slot-stat-value {
  font-family: var(--font-family-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.slot-btn-group {
  display: flex;
  gap: 0.5rem;
}


.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text-bright);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: rgba(10, 13, 20, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-bright);
  font-family: var(--font-family-base);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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


.form-alert {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.form-alert.success {
  display: block;
  background-color: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.4);
  color: var(--color-emerald);
}

.form-alert.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}


.map-frame-wrapper {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-top: 1.5rem;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.site-footer {
  background-color: #06080e;
  border-top: 1px solid var(--color-border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  color: var(--color-gold-primary);
}

.footer-links {
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

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

.footer-links a:hover {
  color: var(--color-text-bright);
}

.footer-social-links,
.footer-gratis-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-link-item,
.gratis-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.social-link-item:hover,
.gratis-link-item:hover {
  color: var(--color-gold-light);
}

.social-icon-svg,
.gratis-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
}


.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 500px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-gold-light);
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-actions .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  flex: 1;
}


.policy-page-header {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.policy-content-body {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.policy-content-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-gold-primary);
}

.policy-content-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.policy-content-body p,
.policy-content-body ul {
  font-size: 0.98rem;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
}


@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-card);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .nav-menu.show {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .history-layout {
    grid-template-columns: 1fr;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

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

  
  .comparison-table-wrapper {
    overflow-x: visible;
    border: none;
    background: transparent;
  }

  .comparison-table {
    display: block;
    min-width: 100%;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .comparison-table tr {
    display: block;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
  }

  .comparison-table td {
    display: block;
    width: 100% !important;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.92rem;
  }

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

  .comparison-table td:first-child {
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    border-bottom: 1px solid var(--color-border-gold);
    padding-bottom: 0.6rem;
    margin-bottom: 0.5rem;
  }

  .comparison-table td.highlight-col::before {
    content: "onarollclub (Gratis Gaming): ";
    font-weight: 700;
    color: var(--color-gold-light);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }

  .comparison-table td:nth-child(3)::before {
    content: "Klassische Echtgeld-Anbieter: ";
    font-weight: 700;
    color: var(--color-text-muted);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-preview-img {
    height: 240px;
  }

  .slot-controls-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}


@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .btn {
    padding: 0.75rem 1.25rem;
  }
}


.embed-body {
  background-color: transparent;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.game-iframe-wrapper {
  width: 100%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  border: 2px solid var(--color-border-gold);
  background-color: var(--color-bg-card);
}

.game-iframe {
  width: 100%;
  height: 660px;
  border: none;
  display: block;
}


.footer-rg-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-rg-title {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 600;
  width: 100%;
  margin-bottom: 0.25rem;
}

.rg-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.rg-badge-link:hover {
  background-color: rgba(212, 175, 55, 0.12);
  border-color: var(--color-border-gold);
  color: var(--color-gold-light);
}

.rg-logo-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

#slotAutoBtn.btn-auto-active {
  border-color: var(--color-success);
  color: var(--color-success);
}

.age-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 13, 20, 0.92);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.age-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-modal-window {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.age-modal-overlay.active .age-modal-window {
  transform: translateY(0);
}

.age-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-weight: 800;
  font-size: 1.35rem;
  font-family: var(--font-heading);
}

.age-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--color-text-main);
  font-family: var(--font-heading);
}

.age-modal-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.age-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
