:root {
  --bg: #120930;
  --bg-card: #14141f;
  --bg-alt: #1a1a2e;
  --primary: #9b59b6;
  --primary-hover: #c17fdc;
  --secondary: #7b2fa0;
  --text: #eae8e4;
  --text-muted: #a09bb0;
  --accent: #d8a8ff;
  --border: #2a2a3e;
  --gradient: linear-gradient(135deg, #9b59b6 0%, #7b2fa0 100%);
  --glow: rgba(255,255,255,0.1);
  --glow-strong: rgba(255,255,255,0.2);
  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --section-pad: 6rem 2rem;
  --card-pad: 2.2rem;
  --gap: 2rem;
  --radius: 3px;
  --card-radius: 6px;
  --glass-bg: #14141f;
  --glass-border: #2a2a3e;
  --glass-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  --btn-text: #fff;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
}
a { color: var(--primary); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--primary-hover); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.glass {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  box-shadow: var(--glass-shadow);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2.2rem;
  background: var(--gradient);
  color: var(--btn-text);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--glow-strong), 0 2px 8px rgba(0,0,0,0.3);
  color: var(--btn-text);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--btn-text);
}
.btn-glass {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text);
}
.btn-glass:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
  color: var(--primary);
}
.section { padding: var(--section-pad); position: relative; z-index: 1; contain: layout style; }
.section-alt { background: var(--bg-alt); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  border-color: var(--primary);
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.shimmer-text {
  background: linear-gradient(90deg, var(--text) 40%, var(--accent) 50%, var(--text) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  will-change: background-position;
}
@media (prefers-reduced-motion: reduce) {
  .shimmer-text { animation: none; -webkit-text-fill-color: var(--text); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px var(--glow); }
  50% { box-shadow: 0 0 28px var(--glow-strong); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.stars { color: #ffd700; letter-spacing: 2px; text-shadow: 0 0 12px rgba(255,215,0,0.45); }
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: var(--bg);
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1rem;
}
.header .header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header .header-logo { height: 34px; width: auto; }
.header .header-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 0.2rem;
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 65%;
  overflow: hidden;
  max-height: 2.6rem;
}
.header-pill, .header-link {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.38rem 0.85rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-pill:hover, .header-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.07);
}
.header .header-cta { font-size: 0.8rem; padding: 0.4rem 1.1rem; }
.header .header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.header .header-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-burger-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-burger-open span:nth-child(2) { opacity: 0; }
.header-burger-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    padding: 0.8rem 1rem;
    flex-direction: column;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 0.15rem;
    max-width: 100%;
    max-height: none;
  }
  .header-nav-open { display: flex !important; }
  .header-pill, .header-link { padding: 0.6rem 0.8rem; font-size: 0.88rem; }
  .header .header-burger { display: flex; }
  .header .header-cta { display: none; }
}
.widget-area.secondary { position: fixed; left: 0; top: 0; bottom: 0; width: var(--sidebar-width, 64px); overflow-y: auto; z-index: 10; flex-shrink: 0; }
.sidebar-main { position: relative; height: 100%; overflow-y: auto; }
.footer { padding: 2.5rem 0 2rem; position: relative; z-index: 1; background: var(--bg-alt); }
.footer-inner { display: flex; flex-direction: column; gap: 1rem; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo { height: 30px; width: auto; }
.footer-name { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--primary); }
.footer-nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-nav a, .footer-link { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover, .footer-link:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.5rem 0; }
.footer-legal {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  padding-top: 0.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.footer-legal a:hover { opacity: 1; color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.55;
  max-width: 800px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer-cta { font-size: 0.78rem; padding: 0.35rem 1rem; }
.hero { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; pointer-events: none; }
.hero-bg-fx { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, var(--bg) 100%); }
.bonuses { padding: var(--section-pad); }
.bonuses-header { text-align: center; margin-bottom: 2.5rem; }
.bonuses-heading { font-size: 2rem; font-weight: 700; margin-bottom: 0.6rem; }
.bonuses-header p, .bonuses-intro { font-size: 0.92rem; color: var(--text-muted); max-width: 580px; margin: 0 auto; }
.bonuses-action { text-align: center; margin-top: 2rem; }
.bonuses-btn { font-size: 0.95rem; }
.content-image {
  width: 100%; max-width: 800px;
  margin: 1.5rem auto; display: block;
}
.content-image-inline {
  display: block; width: 100%; max-width: 720px; margin: 1.5rem auto; border-radius: var(--radius, 8px);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--gap); margin: 2rem 0;
}
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover;
}
@media (max-width: 480px) {
  :root {
    --section-pad: 1.8rem 0.8rem;
    --card-pad: 0.9rem;
    --gap: 0.6rem;
  }
  .container { padding: 0 0.8rem; }
  h1, .shimmer-text { font-size: 1.4rem !important; }
  h2 { font-size: 1.15rem !important; }
  .btn { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
  .header-nav { gap: 0.3rem; max-width: 55%; }
  .header-cta { padding: 0.5rem 1rem; font-size: 0.78rem; }
  .content-image-inline { max-width: 100%; margin: 1rem auto; }
}
@media (max-width: 768px) {
  :root {
    --section-pad: 2.5rem 1rem;
    --card-pad: 1.2rem;
  }
  .container { padding: 0 1rem; }
  .hero { min-height: auto; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --section-pad: 3.5rem 1.5rem;
    --card-pad: 1.5rem;
  }
  .container { max-width: 960px; }
}
:root { --gradient: linear-gradient(160deg,  #9b59b6 0%, #7b2fa0 100%); }
.btn { background: transparent; border: 2px solid var(--primary); color: var(--primary); } .btn:hover { background: var(--primary); color: #fff; }
@media (max-width: 768px) { .header-bg { background-image: url(../images/header-bg-mobile.webp); } }
:root {
  --header-h: 68px;
  --header-bg: var(--bg);
  --header-text: var(--text);
  --header-text-muted: var(--text-muted);
  --header-pill-bg: var(--bg-alt);
  --header-pill-border: var(--border);
  --header-cta-bg: var(--accent);
  --header-cta-text: #fff;
  --header-bonus-bg: var(--accent, #355be2);
  --header-bonus-text: #fff;
  --switcher-wrap-bg: var(--bg-alt, #252c45);
  --login-bg: var(--secondary, #0f3460);
}
body { padding-top: var(--header-h); }
header {
  background-color: var(--header-bg);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 9999;
  border-bottom: 1px solid var(--border);
}
.header-container {
  display: flex;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  height: 100%;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
}
.header-container a { color: var(--header-text); text-decoration: none; transition: color .2s ease; }
.header-container a:hover { color: unset; }
.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-container { display: flex; align-items: center; }
.logo-container img { max-height: 34px; width: auto; max-width: 200px; display: block; object-fit: contain; }
.logo-text-fallback {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--header-text);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}
.switcher-container {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: var(--header-pill-bg);
  padding: 4px;
  border-radius: 1000px;
  border: 1px solid var(--header-pill-border);
}
.switcher-container > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--header-text-muted);
  border-radius: 1000px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.switcher-container img { width: 16px; height: 16px; }
.switcher-container {
  background-color: var(--switcher-wrap-bg);
  border-color: var(--header-pill-border);
}
.switcher-left { color: var(--header-text) !important; }
.switcher-right { color: var(--header-text-muted); }
.switcher-left img, .switcher-right img { filter: none; }
.header-menu-container { display: flex; align-items: center; height: 100%; }
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  height: 100%;
}
.header-menu li { display: flex; align-items: center; height: 100%; }
.header-menu a {
  color: var(--header-text);
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header-menu a:hover { color: var(--primary); }
.header-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.missions-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--header-cta-bg);
  color: var(--header-cta-text);
  padding: 7px 12px 7px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: filter .2s ease, transform .15s ease;
}
.missions-button:hover { filter: brightness(1.1); }
.missions-button:active { transform: translateY(1px); }
.missions-button img { width: 18px; height: 18px; }
.missions-title { letter-spacing: 0.2px; }
.header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background .2s ease;
}
.header-search:hover { background: var(--header-pill-bg); }
.header-search img { width: 20px; height: 20px; opacity: 0.75; }
.header-cta-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}
.header-cta-buttons a {
  padding: 9px 18px;
  border-radius: 1000px;
  line-height: 1;
  letter-spacing: 0.2px;
  transition: filter .2s ease, background .2s ease, transform .15s ease;
}
.login-button {
  border: 1px solid var(--login-bg);
  color: var(--header-text);
  background: var(--login-bg);
}
.login-button:hover { filter: brightness(1.15); }
.register-button-container { position: relative; }
.register-button {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--btn-text, #fff);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.2);
}
.register-button:hover { filter: brightness(1.1); }
.register-button:active { transform: translateY(1px); }
.register-bonus {
  position: absolute;
  top: -13px;
  right: 2px;
  background-color: var(--header-bonus-bg);
  color: var(--header-bonus-text);
  border-radius: 1000px;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 7px 3px 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.register-bonus img { width: 9px; height: 9px; }
.burger-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.burger-button img { width: 24px; height: 24px; filter: invert(1); }
.offcanvas {
  position: fixed;
  top: 0; left: -100%;
  width: 90%;
  height: 100vh;
  background: var(--header-bg);
  z-index: 10000;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}
.offcanvas.open { left: 0; }
.offcanvas-close {
  background: none;
  border: none;
  padding: 10px;
  color: var(--header-text);
  cursor: pointer;
}
.offcanvas-header { display: flex; justify-content: flex-end; }
.offcanvas-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.offcanvas-content .header-menu { flex-direction: column; align-items: flex-start; gap: 15px; }
.offcanvas-content .header-menu a { font-size: 16px; padding: 12px 0; display: block; height: auto; }
.offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}
.offcanvas-backdrop.show { opacity: 1; pointer-events: all; }
@media (max-width: 1124px) {
  .header-menu-container,
  .switcher-container { display: none; }
  .offcanvas .header-menu-container,
  .offcanvas .switcher-container { display: flex; max-width: fit-content; }
  .offcanvas .header-menu { flex-direction: column; align-items: flex-start; font-size: 14px; gap: 15px; }
  .offcanvas .switcher-container { font-size: 12px; }
}
@media (min-width: 1125px) {
  .burger-button,
  .offcanvas,
  .offcanvas-backdrop { display: none; }
}
@media (max-width: 768px) {
  .missions-button,
  .header-search { display: none; }
  .header-container { padding: 0 16px; }
  .header-left { gap: 10px; }
  .logo-container { max-width: 100px; }
  .header-cta-buttons a { padding: 8px 14px; font-size: 11px; }
}
@media (max-width: 768px) {
  .header-right { flex-shrink: 0; }
  .logo-container { min-width: 0; flex-shrink: 1; }
  .logo-container img { max-width: 100%; }
}
.switcher-container > a { text-decoration: none; color: inherit; cursor: pointer; }
.header-bg, .header-bg *,.header-bg-bottom, .header-bg-bottom * {  font-family: 'Montserrat', sans-serif !important;}.header-bg {  background: url(../images/header-bg.png) no-repeat;  background-size: cover;  width: 100%;  max-width: 1400px;  margin: 0 auto;  border-radius: 8px;  overflow: hidden;}.header-bg-content {  display: flex;  align-items: center;  flex-direction: column;  padding-top: 12%;  padding-bottom: 50px;}.header-bg-content br {  display: none;}.header-bg-title {  text-transform: uppercase;  font-size: 30px;  font-weight: 600;  margin-bottom: 0;  color: var(--accent);}.header-bg-deposit {  font-size: 105px;  font-weight: 900;  line-height: 1.15;  color: var(--text);}.header-bg-bonus {  font-size: 24px;  font-weight: 600;  color: var(--text);  margin-bottom: 20px;}.header-bg-button {  background: var(--primary);  color: var(--btn-text, #fff);  border: none;  cursor: pointer;  padding: 12px 52px;  border-radius: 8px;  font-size: 16px;  font-weight: 700;  transition: all 0.3s;}.header-bg-button:hover {  background: var(--primary-hover);  transform: translateY(-2px);}.header-bg-button-content {  display: flex;  flex-direction: column;  align-items: center;}.header-bg-button-main {  font-size: 22px;  font-weight: 800;  line-height: 1.4;}.header-bg-button-description {  font-size: 11px;  font-weight: 400;  opacity: 0.8;}.header-bg-bottom {  display: flex;  justify-content: center;  align-items: center;  line-height: 1.5;  background: var(--bg-alt);  padding: 8px 0;  margin-bottom: 24px;  position: relative;}.header-bg-bottom::before,.header-bg-bottom::after {  content: '';  position: absolute;  top: 0;  bottom: 0;  width: 15%;  z-index: 1;  pointer-events: none;}.header-bg-bottom::before {  left: 0;  background: linear-gradient(to right, var(--bg), transparent);}.header-bg-bottom::after {  right: 0;  background: linear-gradient(to left, var(--bg), transparent);}.header-bg-bottom p {  display: none;}.header-bg-bottom-content {  text-align: center;  margin: 0 26px;}.header-bg-bottom-content .small-content {  font-size: 10px;  color: var(--text-muted);  font-weight: 700;}.header-bg-bottom-content .big-content {  font-size: 16px;  font-weight: 700;  color: #fff;}.header-bg-mobile-img { display: none; }@media (max-width: 768px) {  .header-bg {    background: none;    padding: 0;    margin-left: -20px;    margin-right: -20px;    width: auto;    max-width: none;    border-radius: 0;    overflow: visible;    position: relative;    margin-bottom: 100px;  }  .header-bg-mobile-img {    display: block;    width: 100%;    height: auto;    flex-shrink: 0;  }  .header-bg .header-bg-content {    position: absolute;    left: 0;    right: 0;    bottom: -93px;    padding: 0 16px;    gap: 4px;  }  .header-bg-content > a { display: block; width: 100%; }  .header-bg-title { font-size: 13px; margin-bottom: 4px; }  .header-bg-deposit { font-size: 42px; line-height: 1.1; }  .header-bg-bonus { font-size: 15px; margin-bottom: 16px; }  .header-bg-button { padding: 19px 32px; width: 100%; box-sizing: border-box; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.35); }  .header-bg-button-main { font-size: 20px; }  .header-bg-button-description { font-size: 11px; }  .header-bg-bottom { background: var(--bg-alt); gap: 10px; padding: 8px 15px; }  .big-content { font-size: 14px; }}
.header-bg-content > a { display: inline-block; width: auto; }
.header-bg-button {
  text-transform: capitalize;
  border-radius: 1000px !important;
  padding: 8px 53px !important;
  width: auto !important;
  box-shadow: none;
  transition: all .5s;
}
.header-bg-button-content { display: flex; flex-direction: column; letter-spacing: 0; }
.header-bg-button-main { font-size: 18px !important; font-weight: 700; line-height: 1.6; }
.header-bg-button-description { opacity: .8; text-transform: none; line-height: 1.6; font-weight: 500; font-size: 10px !important; }
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 20px 24px;
  margin: 24px auto;
  max-width: 1100px;
  background: transparent;
}
.payment-methods img {
  width: 72px;
  height: 56px;
  object-fit: fill;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity .2s ease, transform .2s ease;
  filter: grayscale(10%);
}
.payment-methods img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .payment-methods { gap: 14px 20px; padding: 16px; }
  .payment-methods img { width: 56px; height: 44px; }
}
.site-main {  max-width: 1240px; margin: 0 auto; padding: 20px 20px 60px;}.content-area {  font-size: 15px; line-height: 1.8; color: var(--text-muted); max-width: 860px;}.content-area p { margin-bottom: 1rem; }.content-area strong { color: var(--text); }.content-area a:not(.primary-button):not(.btn):not(.cta-btn):not(.app-banner-cta):not([class*="-button"]) { color: var(--primary); text-decoration: underline; }.content-area a:not(.primary-button):not(.btn):not(.cta-btn):not(.app-banner-cta):not([class*="-button"]):hover { color: var(--accent); }@media (max-width: 768px) {  .site-main { padding: 5rem 15px 30px; }  .content-area { font-size: 14px; }  .site-main > .app-banner-container,  .app-banner-container {    margin-left: -15px; margin-right: -15px;    width: auto; max-width: none;  }  .app-banner, .app-banner-mobile img {    border-radius: 0;    width: 100%; max-width: 100%;  }}.about-section {  max-width: 1240px; margin: 30px auto; padding: 0 20px;}.about-heading {  font-size: 22px; font-weight: 800; color: var(--text); margin: 0 0 15px;  border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 4px;}.about-content { font-size: 15px; line-height: 1.7; color: var(--text-muted); }.about-content p { margin: 0 0 1em; }.about-content strong { color: var(--text); }.about-content a { color: var(--primary); }
.features-container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1400px;
}
.feature-card {
  aspect-ratio: 1;
  border-radius: 20px;
  display: flex;
  align-items: flex-end; justify-content: flex-end;
  padding: 14px;
  background-color: var(--bg-card, var(--bg-alt));
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.feature-card h3 {
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0;
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
  text-align: right; width: auto;
}
.fcdl-payouts, .fast-payouts { background-image: url(../images/fast-pay.png); }
.cashback                    { background-image: url(../images/cashback.png); }
.vip                         { background-image: url(../images/vip-level.png); }
.games                       { background-image: url(../images/games.png); }
.missions                    { background-image: url(../images/feature-missions.png); }
@media (max-width: 1024px) { .features-container { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  {
  .features-container {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 16px 24px;
    gap: 12px;
    margin: 0 -16px;
    scrollbar-width: thin;
  }
  .features-container::-webkit-scrollbar { height: 4px; }
  .features-container::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
  .feature-card { flex: 0 0 44%; max-width: 44%; scroll-snap-align: start; }
  .feature-card h3 { font-size: 12px; }
}
.section-support {  display: flex;  flex-wrap: wrap;  gap: 16px;  justify-content: center;  padding: 30px 0;  max-width: 800px;  margin: 0 auto;}.block-support {  flex: 1;  background: var(--bg-alt);  border-radius: 8px;  padding: 18px;  max-width: 320px;}.title-support {  display: flex;  align-items: center;  gap: 10px;  margin-bottom: 8px;}.title-support img {  width: 33px;  height: 33px;  flex-shrink: 0;}.title-support-text {  font-weight: 700;  font-size: 16px;}.block-support p {  color: var(--text-muted);  font-size: 13px;  margin-bottom: 0;}@media (max-width: 768px) { .section-support { flex-direction: column; padding: 0 16px; } }.primary-button {  font-size: 18px;  font-weight: 700;  background: var(--primary);  color: var(--btn-text, var(--text));  padding: 10px 56px;  border-radius: 16px;  margin: 30px auto;  display: block;  max-width: fit-content;  text-decoration: none;}.primary-button:hover {  background: var(--primary-hover, var(--primary));  color: var(--btn-text, var(--text));}
.header-bg-button { border-radius: 16px; }
.updated-date {  display: flex; align-items: center; gap: 10px;  background: var(--bg-alt); margin: 30px auto; border-radius: 10px;  border-left: 5px solid var(--primary); font-weight: 700; font-size: 20px;  text-transform: uppercase; padding: 18px 30px; color: var(--text); max-width: 1240px;}@media (max-width: 768px) { .updated-date { font-size: 16px; padding: 14px 20px; margin: 20px 15px; } }
.site-footer.footer-v3 {
  background: var(--footer-bg, var(--bg-alt, #060e2a));
  color: var(--footer-text, #fff);
  font-family: 'Montserrat', system-ui, sans-serif;
  padding: 0;
  margin-top: 60px;
}
.site-footer.footer-v3 .footer-top,
.site-footer.footer-v3 .footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box;
}
.site-footer.footer-v3 .footer-top {
  display: grid;
  grid-template-columns: minmax(220px, 297px) minmax(120px, 1fr) minmax(180px, 1fr) minmax(220px, 297px);
  gap: 24px;
  align-items: start;
  padding-top: 32px;
  padding-bottom: 36px;
}
.site-footer.footer-v3 .footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.site-footer.footer-v3 .footer-logo { width: 257px; max-width: 100%; height: 64px; object-fit: contain; object-position: left center; }
.site-footer.footer-v3 .footer-follow-label { font-weight: 600; font-size: 14px; line-height: 26px; }
.site-footer.footer-v3 .footer-socials { display: flex; gap: 4px; }
.site-footer.footer-v3 .footer-social {
  width: 32px; height: 32px; border-radius: 16px;
  background: var(--footer-social-bg, #444a5f);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.18s;
}
.site-footer.footer-v3 .footer-social:hover { background: var(--accent, #5a6178); }
.site-footer.footer-v3 .footer-social img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.site-footer.footer-v3 .footer-brand-name { font-weight: 600; font-size: 18px; line-height: 1.4; margin-top: 8px; }
.site-footer.footer-v3 .footer-nav { display: flex; flex-direction: column; gap: 10px; padding-top: 7px; }
.site-footer.footer-v3 .footer-nav a {
  color: var(--footer-link, #9296a2);
  font-size: 12px; font-weight: 600; line-height: 22.29px;
  text-decoration: none;
}
.site-footer.footer-v3 .footer-nav a:hover { color: var(--footer-text, #fff); }
.site-footer.footer-v3 .footer-help { display: flex; flex-direction: column; gap: 12px; }
.site-footer.footer-v3 .footer-help .footer-help-title { font-weight: 600; font-size: 18px; margin: 0; line-height: 1.2; }
.site-footer.footer-v3 .footer-help p { color: var(--footer-text, #b1b4bc); font-size: 14px; line-height: 26px; margin: 0; font-weight: 600; }
.site-footer.footer-v3 .footer-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--footer-text, #fff); font-weight: 600; font-size: 16px; text-decoration: none;
}
.site-footer.footer-v3 .footer-email img { width: 15px; height: 15px; filter: brightness(0) invert(1); opacity: 0.85; }
.site-footer.footer-v3 .footer-cta {
  background: var(--accent, #e45809); color: var(--footer-text, #fff);
  font-family: inherit; font-weight: 700; font-size: 18px;
  padding: 16px 24px; border-radius: 6px; text-transform: capitalize;
  text-decoration: none; min-height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start; box-sizing: border-box;
  margin-top: 4px;
  transition: filter 0.18s;
}
.site-footer.footer-v3 .footer-cta:hover { filter: brightness(1.08); }
.site-footer.footer-v3 .footer-divider {
  height: 0;
  background: transparent;
  margin: 0;
}
.site-footer.footer-v3 .footer-bottom {
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 36px;
  text-align: center;
}
.site-footer.footer-v3 .footer-copyright {
  color: var(--footer-text, #a2a5af); font-size: 12px; font-weight: 400; line-height: 16px;
  margin: 0 auto; max-width: 1100px;
}
@media (max-width: 1100px) {
  .site-footer.footer-v3 .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .site-footer.footer-v3 .footer-top { grid-template-columns: 1fr; padding: 24px 20px; }
  .site-footer.footer-v3 .footer-divider { margin: 0; }
  .site-footer.footer-v3 .footer-bottom { padding: 0 20px 24px; }
  .site-footer.footer-v3 .footer-top,
  .site-footer.footer-v3 .footer-brand,
  .site-footer.footer-v3 .footer-help {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .site-footer.footer-v3 .footer-socials { justify-content: center; flex-wrap: wrap; }
  .site-footer.footer-v3 .footer-nav { align-items: center; }
  .site-footer.footer-v3 .footer-email { justify-content: center; }
  .site-footer.footer-v3 .footer-cta { align-self: center; }
  .site-footer.footer-v3 .footer-top { padding-bottom: 24px; }
}
.site-footer .footer-nav:not(:has(a)) { display: none; }
.site-footer .footer-nav--primary { text-align: left; }
.site-footer .footer-nav--legal   { text-align: left; }
:root {
  --sidebar-width: 0px;
}
.site-layout {
  display: flex;
  min-height: calc(100vh - 64px);
  position: relative;
}
.site-content {
  flex: 1;
  min-width: 0;
  padding-top: 0;
}
.site-content .site-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-area {
  margin: 0 auto;
}
.about-section, .features-container, .bonus-section, .faq-section, .faq-container,
.app-banner, .payment-section, .support-section, .review-section {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer[class] {
  padding-left: var(--sidebar-width, 0px);
}
.site-footer[class] .footer-top,
.site-footer[class] .footer-bottom {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 921px) {
  .site-footer[class] { padding-left: 0; }
}
.cta-center { text-align: center; margin: 30px 0; clear: both; }
.cta-center .primary-button, .cta-center a.primary-button { display: inline-block; }
@media (max-width: 768px) {
  .cta-center { display: block; margin: 30px auto; }
}
.primary-button.app-banner-cta {
  padding: 8px 32px;
  font-size: 14px;
  border-radius: 24px;
  margin: 0;
}
.about-section h2, .faq-section h2, .faq-container h2,
.faq-heading, .faq-cards .faq-heading,
.features-container h2, .bonus-section h2, .payment-section h2, .review-section h2 {
  font-family: var(--font-heading);
  color: var(--text);
  margin: 2.5rem 0 1rem 0;
  padding: 0;
  line-height: 1.3;
  clear: both;
}
.faq-container, .faq-cards {
  padding: 0;
}
.content-area .site-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text);
  margin: 0 0 16px 0;
  line-height: 1.3;
}
.features-container .feature-card {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 14px 14px;
}
.features-container .feature-card h3 {
  margin: 0;
  font-size: 14px;
}
.content-area ul, .content-area ol {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.content-area ul { list-style: disc; }
.content-area ol { list-style: decimal; }
.content-area li {
  padding: 0.3rem 0;
  line-height: 1.7;
}
.content-area table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.content-area table th {
  background: var(--primary);
  color: var(--btn-text, #fff);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
}
.content-area table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.content-area table tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}
.about-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 860px;
}
.header-bg {
  position: relative;
  z-index: 1;
}
.header-bg-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .content-area table,
  .about-content table,
  .legal-content table {
    display: block !important;
    width: 100%;
    max-width: 100%;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}
.sidebar-icon-item img { width: 24px; height: 24px; object-fit: contain; }
.sidebar-icon-item.sidebar-icon-lg img { width: 48px; height: 48px; }
.sidebar-expanded-icon img { width: 64px; height: 64px; object-fit: contain; }
.sidebar-expanded-item img { width: 24px; height: 24px; object-fit: contain; }
.sidebar-expanded .sidebar-main { padding-top: 20px !important; }
.switcher-container img { width: 14px; height: 14px; object-fit: contain; }
.header-search img { width: 18px; height: 18px; object-fit: contain; }
.register-bonus img { width: 12px; height: 12px; object-fit: contain; }
.burger-button img { width: 24px; height: 24px; object-fit: contain; }
.games-filter-v1 a, .games-filter-v2 a, .games-filter-v3 a,
.games-filter-pill, .games-filter-providers,
.games-filter-pill:visited, .games-filter-providers:visited,
.games-filter-pill:hover, .games-filter-providers:hover { text-decoration: none !important; }
.legal-page { padding: 3rem 0 4rem; min-height: 60vh; animation: fadeUp 0.5s ease both; }
.legal-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.legal-breadcrumb a { color: var(--primary); text-decoration: none; }
.legal-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 2px; }
.legal-breadcrumb-sep { opacity: 0.3; }
.legal-title {
  font-size: 2.4rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--text);
  line-height: 1.15; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.legal-content {
  font-size: 1rem; line-height: 1.85; color: var(--text-muted); max-width: 860px;
}
.legal-content p { margin-bottom: 1.1rem; }
.legal-content strong { color: var(--text); }
.legal-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--primary-hover, var(--accent)); }
.header-pill-active, .header-pill-active:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-weight: 600;
}
.legal-content .info-box, .legal-content .review-intro {
  padding: 1.5rem 1.8rem; margin: 1.5rem 0 2rem; border-radius: 14px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb, 201,162,39), 0.06), rgba(var(--primary-rgb, 201,162,39), 0.02));
  border: 1px solid rgba(var(--primary-rgb, 201,162,39), 0.12);
  border-left: 4px solid var(--primary, #c9a227);
}
.legal-content .info-box h3 {
  margin: 0 0 1rem; font-size: 1.1rem; color: var(--primary, #c9a227);
}
.legal-content .info-box.highlight {
  border-left-color: var(--accent, #f0d050);
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 240,208,80), 0.08), rgba(var(--accent-rgb, 240,208,80), 0.02));
}
.legal-content article.casino-review .review-intro,
.legal-content article.legal-page .review-intro {
  font-size: 1.05rem; line-height: 1.9; color: var(--text);
}
.legal-content article em { color: var(--text-muted); font-style: italic; }
@media (max-width: 768px) {
  .legal-title { font-size: 1.6rem; }
  .legal-content h1 { font-size: 1.5rem; }
  .legal-content h2 { font-size: 1.2rem; }
  .legal-content .info-box, .legal-content .review-intro { padding: 1rem 1.2rem; }
  .legal-page { padding: 2rem 0 3rem; }
}
img { max-width: 100%; height: auto; }
.hero-bg-img { object-fit: cover; }
.gallery-grid img { object-fit: cover; max-height: 220px; }
.about-img { width: 100%; max-height: 320px; object-fit: cover; aspect-ratio: 16/10; }
.bonuses-img { max-height: 160px; object-fit: cover; }
.content-img {
  max-width: 30%;
  height: auto;
  object-fit: cover;
}
.content-img-left {
  float: left;
  margin: 0.75rem 1.8rem 1rem 0;
}
.content-img-right {
  float: right;
  margin: 0.75rem 0 1rem 1.8rem;
}
.content-img-center {
  display: block;
  float: none;
  margin: 1rem auto;
  max-width: 80%;
}
.content-img-full {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  margin: 1rem 0;
}
.content-area h2,
.content-area h3,
.content-area table { clear: both; }
.content-clear { clear: both; display: block; height: 0; }
.content-img-caption {
  display: block;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted, #9a9a9a);
  margin: -0.5rem 0 1.2rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .content-img, .content-img-left, .content-img-right,
  .content-img-center, .content-img-full {
    float: none !important;
    display: block;
    max-width: 100% !important;
    width: 100% !important;
    margin: 1rem auto;
  }
}
.legal-content h1, .legal-content h2, .legal-content h3,.about-content h1, .about-content h2, .about-content h3,.content-area h1, .content-area h2, .content-area h3 {  font-family: var(--font-heading);  color: var(--text);  text-decoration: none;  border: none;}.legal-content h1, .about-content h1, .content-area h1 { font-size: 2.75rem; font-weight: 800; line-height: 1.15; margin-top: 2.5rem; margin-bottom: 0.75rem; }.legal-content h2, .about-content h2, .content-area h2 { font-size: 2.25rem; font-weight: 800; line-height: 1.2;  margin-top: 2rem;   margin-bottom: 0.6rem; }.legal-content h3, .about-content h3, .content-area h3 { font-size: 1.5rem;  font-weight: 700; line-height: 1.3;  margin-top: 1.5rem; margin-bottom: 0.5rem; }@media (max-width: 600px) {  .legal-content h1, .about-content h1, .content-area h1 { font-size: 2rem; }  .legal-content h2, .about-content h2, .content-area h2 { font-size: 1.6rem; }  .legal-content h3, .about-content h3, .content-area h3 { font-size: 1.2rem; }}.legal-content ul, .about-content ul, .content-area ul {  list-style: none;  padding-left: 0;  margin: 0.75rem 0;}.legal-content ul li, .about-content ul li, .content-area ul li {  position: relative;  padding-left: 1.2rem;  margin-bottom: 0.6rem;  line-height: 1.6;}.legal-content ul li::before, .about-content ul li::before, .content-area ul li::before {  content: '';  position: absolute;  left: 0;  top: 0.6em;  width: 6px;  height: 6px;  border-radius: 50%;  background: var(--primary);}.legal-content ol, .about-content ol, .content-area ol {  list-style: none;  padding-left: 0;  margin: 0.75rem 0;  counter-reset: ol-counter;}.legal-content ol li, .about-content ol li, .content-area ol li {  position: relative;  padding-left: 1.8rem;  margin-bottom: 0.6rem;  counter-increment: ol-counter;}.legal-content ol li::before, .about-content ol li::before, .content-area ol li::before {  content: counter(ol-counter) '.';  position: absolute;  left: 0;  color: var(--primary);  font-weight: 600;}.legal-content table,
.about-content table,
.content-area table {
  display: table;
  width: 100%;
  max-width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card, rgba(255,255,255,0.03));
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.18);
  margin: 1.5rem 0;
  color: var(--text-muted, #c9ccd6);
  font-family: var(--font-body, 'Montserrat', system-ui, sans-serif);
}
.legal-content table thead tr:first-child th:first-child,
.about-content table thead tr:first-child th:first-child,
.content-area table thead tr:first-child th:first-child { border-top-left-radius: 10px; }
.legal-content table thead tr:first-child th:last-child,
.about-content table thead tr:first-child th:last-child,
.content-area table thead tr:first-child th:last-child { border-top-right-radius: 10px; }
.legal-content table tbody tr:last-child td:first-child,
.about-content table tbody tr:last-child td:first-child,
.content-area table tbody tr:last-child td:first-child { border-bottom-left-radius: 10px; }
.legal-content table tbody tr:last-child td:last-child,
.about-content table tbody tr:last-child td:last-child,
.content-area table tbody tr:last-child td:last-child { border-bottom-right-radius: 10px; }
.legal-content table thead tr,
.about-content table thead tr,
.content-area table thead tr { background: var(--bg-alt, rgba(255,255,255,0.06)); }
.legal-content table thead th,
.about-content table thead th,
.content-area table thead th {
  font-weight: 700;
  color: var(--text, #fff);
  text-align: left;
  padding: 14px 20px;
  border-right: 1px solid var(--border, rgba(255,255,255,0.12));
  font-size: 0.875rem;
  background: transparent;
  letter-spacing: 0.2px;
}
.legal-content table thead th:last-child,
.about-content table thead th:last-child,
.content-area table thead th:last-child { border-right: none; }
.legal-content table tbody tr:nth-child(odd),
.about-content table tbody tr:nth-child(odd),
.content-area table tbody tr:nth-child(odd) { background: transparent; }
.legal-content table tbody tr:nth-child(even),
.about-content table tbody tr:nth-child(even),
.content-area table tbody tr:nth-child(even) { background: var(--bg-alt, rgba(255,255,255,0.03)); }
.legal-content table tbody td,
.about-content table tbody td,
.content-area table tbody td {
  padding: 14px 20px;
  border-right: 1px solid var(--border, rgba(255,255,255,0.06));
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.06));
  color: var(--text-muted, #c9ccd6);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
.legal-content table tbody td:last-child,
.about-content table tbody td:last-child,
.content-area table tbody td:last-child { border-right: none; }
.legal-content table tbody tr:last-child td,
.about-content table tbody tr:last-child td,
.content-area table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 600px) {
  .legal-content table thead th,
  .about-content table thead th,
  .content-area table thead th { padding: 10px 12px; font-size: 0.8rem; }
  .legal-content table tbody td,
  .about-content table tbody td,
  .content-area table tbody td { padding: 10px 12px; font-size: 0.8rem; }
}
.faq-block-1 {
  background: var(--bg-alt, rgba(255,255,255,0.02));
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 12px;
  padding: 28px 32px 32px;
  margin: 30px auto;
  font-family: 'Montserrat', system-ui, sans-serif;
}
.faq-block-1 .faq-heading {
  color: var(--text, #fff);
  font-family: var(--font-heading, 'Montserrat', system-ui, sans-serif);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-top: 4px;
}
.faq-block-1 .faq-card {
  background: var(--bg-card, rgba(255,255,255,0.04));
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 12px;
  padding: 24px 24px;
  margin-bottom: 14px;
  color: var(--text-muted, #b1b4bc);
}
.faq-block-1 .faq-card:last-child { margin-bottom: 0; }
.faq-block-1 .faq-question {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text, #fff);
  margin: 0 0 12px;
}
.faq-block-1 .faq-answer {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted, #b1b4bc);
}
.faq-block-1 .faq-answer p { margin: 0 0 8px; }
.faq-block-1 .faq-answer p:last-child { margin-bottom: 0; }
.faq-block-1 .faq-answer strong,
.faq-block-1 .faq-answer b {
  font-weight: 700;
  color: var(--text, #fff);
}
.legal-content .faq-section { margin: 1.5rem 0 2rem; }
.legal-content .faq-item {
  background: var(--bg-card, rgba(255,255,255,0.04));
  border: 1px solid var(--border, rgba(255,255,255,0.1));
  border-radius: 12px;
  padding: 24px 24px;
  margin-bottom: 14px;
  color: var(--text-muted, #b1b4bc);
}
.legal-content .faq-item h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--text, #fff);
  margin: 0 0 12px;
}
.legal-content .faq-item p {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted, #b1b4bc);
  margin: 0 0 8px;
}
.legal-content .faq-item p:last-child { margin-bottom: 0; }
@media (max-width: 600px) {
  .faq-block-1 { padding: 24px 20px 28px; margin: 24px 12px; }
  .faq-block-1 .faq-heading { font-size: 1.6rem; letter-spacing: 0.3px; margin: 0 0 24px; padding-top: 4px; }
  .faq-block-1 .faq-card { padding: 20px 18px; margin-bottom: 12px; }
  .faq-block-1 .faq-question { font-size: 1.05rem; line-height: 1.35; }
  .faq-block-1 .faq-answer { font-size: 0.9rem; }
}
.content-area h2 {
  border: none;
  border-bottom: none;
}
.legal-content ul li, .legal-content ol li, .about-content ul li, .about-content ol li, .content-area ul li, .content-area ol li {
  border-bottom: none;
}
.content-area { max-width: 1200px; margin: 0 auto; }
[data-slot="content-image-1"]:not(a):not(button) { max-width: 40% !important; }
@media (max-width: 768px) { [data-slot="content-image-1"]:not(a):not(button) { max-width: 100% !important; } }
[data-slot="app-content-image-1"]:not(a):not(button) { max-width: 35% !important; }
@media (max-width: 768px) { [data-slot="app-content-image-1"]:not(a):not(button) { max-width: 100% !important; } }
[data-slot="deutschland-content-image-1"]:not(a):not(button) { max-width: 45% !important; }
@media (max-width: 768px) { [data-slot="deutschland-content-image-1"]:not(a):not(button) { max-width: 100% !important; } }

/*OV*/
:root {
  --bg: #120930;
  --bg-alt: #21183f;
  --primary: #9b59b6;
  --primary-hover: #c17fdc;
  --secondary: #7b2fa0;
  --text: #e8e6e3;
  --text-muted: #9a9a9a;
  --btn-text: #fff;
  --accent: #d8a8ff;
  --accent-text: #fff;
  --border: #2a2a3e;
  --bg-card: #14141f;
}
.feature-card { background-color: #120930 !important; background-blend-mode: normal !important; }