:root {
  --primary: #C8102E;
  --secondary: #1A1A2E;
  --surface: #16213E;
  --surface-light: #0F3460;
  --gold: #D4AF37;
  --gold-light: #F5D76E;
  --text-primary: #FFFFFF;
  --text-secondary: #B0B8C8;
  --border: rgba(212, 175, 55, 0.25);
  --ff-head: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  background-color: var(--secondary);
  color: var(--text-primary);
  
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 10px);
  background-attachment: fixed;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: 3.2rem; line-height: 1.2; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.section-separator {
  border: 0;
  height: 2px;
  background-color: var(--gold);
  margin: 4rem 0;
  opacity: 0.8;
}
section {
  padding: 4rem 0;
}


header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 72px;
  background: rgba(26, 26, 46, 0.96);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.logo span {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  color: var(--text-primary);
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--gold);
}
.lang-switcher {
  display: flex;
  gap: 8px;
}
.lang-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
}
.lang-toggle.active {
  color: var(--gold);
  text-decoration: underline;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger svg {
  width: 28px;
  height: 28px;
  fill: var(--text-primary);
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 72px;
  right: -100%;
  width: 250px;
  height: calc(100vh - 72px);
  background: var(--surface);
  border-left: 1px solid var(--border);
  transition: right 0.3s ease;
  z-index: 999;
  flex-direction: column;
  padding: 20px;
  gap: 20px;
}
.mobile-menu-overlay.open {
  right: 0;
  display: flex;
}
.badge-18plus {
  background: var(--primary);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}


.btn-cta, .btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--ff-body);
}
.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--secondary);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}


.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}


.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 80vh;
  position: relative;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  padding: 60px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 26, 46, 0.8);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
}
.hero-content {
  flex: 0 0 60%;
}
.hero-content h1 {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #E2E8F0;
}
.hero-buttons {
  display: flex;
  gap: 16px;
}
.hero-slot {
  flex: 0 0 40%;
}


.slot-machine {
  background: var(--surface-light);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.slot-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--gold);
}
.slot-reels {
  display: flex;
  gap: 10px;
  background: #111;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  height: 120px;
  overflow: hidden;
}
.reel {
  flex: 1;
  background: #222;
  border-radius: 4px;
  position: relative;
  height: 100%;
  overflow: hidden;
}
.reel-inner {
  position: absolute;
  top: 0;
  width: 100%;
  transition: transform 3s cubic-bezier(0.1, 1, 0.1, 1);
}
.slot-symbol {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.slot-symbol.lemon { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23FFD700"/></svg>'); }
.slot-symbol.coin { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23FFA500"/></svg>'); }
.slot-symbol.mask { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="30" width="60" height="40" fill="%23800080"/></svg>'); }
.slot-symbol.fiat { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="40" width="80" height="30" fill="%23C8102E"/></svg>'); }
.slot-symbol.gondola { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,80 Q50,90 90,80 L80,60 L20,60 Z" fill="%2316213E"/></svg>'); }
.slot-symbol.wildcard { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%23D4AF37"/></svg>'); }

.slot-result {
  height: 30px;
  margin: 15px 0;
  font-weight: 700;
  color: var(--gold-light);
}
.btn-spin {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--secondary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.1s;
}
.btn-spin:active { transform: scale(0.98); }
.btn-spin:disabled { opacity: 0.5; cursor: not-allowed; }
.slot-disclaimer {
  font-size: 0.75rem;
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--text-secondary);
}


.lead-form-wrap {
  margin-top: 20px;
}
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-form input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--ff-body);
}
.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
}
.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
}
.lead-msg {
  font-size: 0.85rem;
  margin-top: 10px;
}


.img-text-block {
  display: flex;
  gap: 40px;
  align-items: center;
}
.img-text-block img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.img-text-block.reverse {
  flex-direction: row-reverse;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
}
.feature-icon {
  width: 50px;
  height: 50px;
  fill: var(--gold);
  margin-bottom: 15px;
}


.pros-cons {
  display: flex;
  gap: 30px;
}
.pros-col, .cons-col {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.pros-col ul, .cons-col ul {
  list-style: none;
}
.pros-col li, .cons-col li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.pros-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}
.cons-col li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  top: -2px;
}


.editorial-card {
  background: var(--surface-light);
  border-left: 4px solid var(--gold);
  padding: 30px;
  border-radius: 0 16px 16px 0;
  font-style: italic;
}


.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.comparison-table th, .comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  background: var(--surface-light);
  color: var(--gold);
  font-family: var(--ff-head);
}


.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
}
.faq-item.active .faq-question::after {
  content: '-';
}
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px;
}


.game-card {
  display: flex;
  gap: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  align-items: center;
}
.game-card img {
  width: 300px;
  border-radius: 8px;
  object-fit: cover;
}
.game-info h3 {
  margin-bottom: 10px;
}
.rtp-badge {
  display: inline-block;
  background: var(--surface-light);
  color: var(--gold-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  border: 1px solid var(--gold);
}
.game-disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 15px;
}


.ai-agent-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  z-index: 1000;
  border: none;
}
.ai-agent-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--secondary);
}
.ai-agent-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  height: 480px;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: 16px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.ai-agent-panel.open {
  display: flex;
}
.ai-header {
  background: var(--surface-light);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.ai-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
}
.ai-title {
  font-weight: 700;
  color: var(--gold);
}
.ai-close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.5rem;
}
.ai-chat {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  padding: 10px 15px;
  border-radius: 16px;
  max-width: 80%;
  font-size: 0.9rem;
}
.chat-bot {
  background: var(--surface-light);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-user {
  background: var(--gold);
  color: var(--secondary);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ai-input {
  display: flex;
  padding: 10px;
  border-top: 1px solid var(--border);
}
.ai-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--secondary);
  color: white;
  outline: none;
}
.ai-input button {
  background: none;
  border: none;
  color: var(--gold);
  padding: 0 10px;
  cursor: pointer;
  font-weight: 700;
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1A1A2E;
  border-top: 2px solid var(--gold);
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cookie-text {
  font-size: 0.9rem;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btns button {
  padding: 8px 16px;
  font-size: 0.9rem;
}


footer {
  background: var(--surface);
  border-top: 2px solid var(--gold);
  padding: 60px 20px 20px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand img {
  width: 80px;
  margin-bottom: 15px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--secondary) !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(214, 175, 55, 0.4);
  border-color: var(--gold);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-address {
  font-style: normal;
  color: var(--text-secondary);
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.footer-badges {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-badge-link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer-badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}
.badge-svg {
  height: 32px;
  width: auto;
  display: block;
}