/* ============================================
   SVIJET IGRAONICA - Main Stylesheet
   style.css
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-primary:    #080d18;
  --bg-secondary:  #0f1625;
  --bg-card:       #131b2e;
  --bg-card-hover: #192238;
  --accent:        #c9a84c;
  --accent-light:  #e8d070;
  --accent-dark:   #9a7830;
  --text-primary:  #e8eaf0;
  --text-secondary:#a8b2c8;
  --text-muted:    #687890;
  --border:        #1e2a42;
  --border-accent: #2a3855;
  --success:       #27ae60;
  --warning:       #e67e22;
  --white:         #ffffff;
  --gold-glow:     rgba(201,168,76,0.35);
  --font-main:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-card:   0 2px 16px rgba(0,0,0,0.35);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--accent-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  color: var(--white);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 70px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  text-align: center;
  margin-bottom: 12px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 44px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- AGE VERIFICATION OVERLAY ---- */
#age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 18, 0.97);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.age-modal {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 18px;
  padding: 52px 44px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 60px rgba(201,168,76,0.25);
  animation: ageModalIn 0.4s ease;
}
@keyframes ageModalIn {
  from { opacity: 0; transform: translateY(-30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.age-modal .age-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c0392b, #922b21);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 20px rgba(192,57,43,0.5);
}
.age-modal h2 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 1.5rem;
}
.age-modal p {
  font-size: 0.95rem;
  margin-bottom: 28px;
  color: var(--text-secondary);
}
.age-btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-age-yes, .btn-age-no {
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: all 0.25s;
}
.btn-age-yes {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0f1a;
}
.btn-age-yes:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gold-glow);
}
.btn-age-no {
  background: transparent;
  border: 2px solid var(--border-accent);
  color: var(--text-secondary);
}
.btn-age-no:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

/* ---- COOKIE BANNER ---- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f1828;
  border-top: 1px solid var(--border-accent);
  padding: 16px 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { margin: 0; font-size: 0.88rem; color: var(--text-secondary); flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--accent); }
.btn-cookie {
  padding: 9px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  background: var(--accent);
  color: #0a0f1a;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cookie:hover { background: var(--accent-light); transform: translateY(-1px); }

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 13, 24, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo-wrap { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo-wrap img { height: 44px; width: auto; }

/* Nav */
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--accent);
  background: rgba(201,168,76,0.08);
}
.header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e74c3c;
  flex-shrink: 0;
}
.header-badge img { width: 24px; height: 24px; }

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO SECTION ---- */
.hero {
  background: linear-gradient(160deg, #080d18 0%, #0f1a30 40%, #0a1520 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(39,174,96,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-badge::before { content: '🛡️'; }
.hero h1 { margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #080d18;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #080d18;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(201,168,76,0.4);
  transition: all 0.25s;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(201,168,76,0.08);
  color: var(--accent-light);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- PRODUCT CARDS (Platforms) ---- */
.platforms-section { background: var(--bg-secondary); }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 3s ease-in-out infinite;
}
.platform-card:nth-child(2) { animation-delay: 1s; }
.platform-card:nth-child(3) { animation-delay: 2s; }
.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), transparent, rgba(201,168,76,0.1)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.platform-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.platform-card:hover::before { opacity: 1; }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
}
.card-logo-wrap {
  background: #ffffff0d;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 56px;
  border: 1px solid var(--border);
}
.card-logo-wrap img { max-height: 40px; max-width: 140px; width: auto; object-fit: contain; image-rendering: -webkit-optimize-contrast; }
.card-badges { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.badge-licensed {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(39,174,96,0.12);
  border: 1px solid rgba(39,174,96,0.35);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2ecc71;
}
.badge-licensed::before { content: '✓'; font-weight: 900; }
.badge-hr {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
}
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 0.9rem; }
.rating-num { font-size: 0.82rem; color: var(--text-muted); }
.card-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 18px; line-height: 1.55; }
.card-features { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.feature-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 11px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.card-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.btn-card {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #080d18;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-card:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--gold-glow);
  color: #080d18;
}
.card-tc { font-size: 0.72rem; color: var(--text-muted); }
.card-separator {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0 14px;
}
.card-info-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.card-info-item { font-size: 0.8rem; color: var(--text-muted); }
.card-info-item strong { color: var(--text-secondary); display: block; font-weight: 600; }

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.about-logo-big {
  margin-bottom: 24px;
}
.about-logo-big img { height: 56px; }
.about-model-text {
  background: rgba(201,168,76,0.05);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.7;
}

/* ---- WHAT WE DO / DON'T ---- */
.model-section { background: var(--bg-secondary); }
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.model-card.do-card { border-top: 3px solid var(--success); }
.model-card.dont-card { border-top: 3px solid var(--warning); }
.model-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.model-card.do-card .model-card-title { color: #2ecc71; }
.model-card.dont-card .model-card-title { color: #e67e22; }
.model-card-title .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.do-card .icon { background: rgba(39,174,96,0.15); }
.dont-card .icon { background: rgba(230,126,34,0.15); }
.model-list { display: flex; flex-direction: column; gap: 10px; }
.model-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.model-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.do-card .model-list li::before { background: #2ecc71; }
.dont-card .model-list li::before { background: #e67e22; }

/* ---- SAFETY SECTION ---- */
.safety-section { background: var(--bg-primary); }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.safety-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: transform 0.3s;
}
.safety-card:hover { transform: translateY(-4px); }
.safety-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.safety-card h3 { font-size: 1rem; margin-bottom: 8px; }
.safety-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- REGULATORS SECTION ---- */
.regulators-section { background: var(--bg-secondary); }
.reg-category { margin-bottom: 44px; }
.reg-category:last-child { margin-bottom: 0; }
.reg-category-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}
.reg-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: all 0.25s;
}
.reg-item:hover {
  border-color: rgba(201,168,76,0.35);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.reg-item img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9) contrast(1.05) drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: filter 0.25s;
}
.reg-item:hover img { filter: brightness(1) contrast(1.1); }

/* ---- CONTACTS SECTION ---- */
.contacts-section { background: var(--bg-primary); }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-wrap h2 { margin-bottom: 20px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.contact-item-icon {
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 3px;
  font-weight: 700;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text-primary);
  user-select: text;
  cursor: text;
}
/* Email display - NOT clickable */
.email-display {
  font-size: 0.95rem;
  color: var(--text-primary);
  user-select: text;
  pointer-events: none;
  cursor: text;
}
.disclaimer-box {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 26px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.disclaimer-box strong { color: var(--accent); display: block; margin-bottom: 10px; }

/* ---- FOOTER ---- */
.site-footer {
  background: #040810;
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}
.footer-brand img { height: 38px; }
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-reg {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.footer-reg-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-reg-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer-reg-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  height: 48px;
  transition: all 0.2s;
}
.footer-reg-item:hover {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.04);
}
.footer-reg-item img {
  max-height: 32px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.75);
  transition: filter 0.2s;
}
.footer-reg-item:hover img { filter: brightness(0.95); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-legal {
  flex: 1;
  min-width: 280px;
}
.footer-legal p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.footer-legal p:last-child { margin-bottom: 0; }
.footer-18 { flex-shrink: 0; }
.footer-18 img { width: 52px; height: 52px; }
.footer-copy {
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- INFO BANNER ---- */
.info-banner {
  background: linear-gradient(135deg, #0f1625 0%, #131b2e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.info-banner .info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.info-banner a { color: var(--accent); }

/* ---- COMPARISON TABLE ---- */
.comparison-section { background: var(--bg-secondary); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th, .compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.compare-table thead th {
  background: var(--bg-card);
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}
.compare-table tbody tr { transition: background 0.2s; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare-table td { color: var(--text-secondary); }
.compare-table td:first-child { font-weight: 600; color: var(--text-primary); }
.check { color: #2ecc71; font-weight: 900; }
.cross { color: #e74c3c; }

/* ---- RESPONSIBLE GAMBLING BANNER ---- */
.rg-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(39,174,96,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.rg-banner h3 { color: var(--accent); margin-bottom: 10px; }
.rg-banner p { max-width: 620px; margin: 0 auto 20px; }
.rg-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.rg-link {
  display: inline-block;
  padding: 9px 22px;
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.rg-link:hover { border-color: var(--accent); color: var(--accent); }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid, .contacts-grid, .model-grid, .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #ffffff0d; border-top: 1px solid var(--border); padding: 12px 0; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 10px 24px; border-radius: 0; width: 100%; }
  .hamburger { display: flex; }
  .hero { padding: 52px 0 44px; }
  .hero-stats { gap: 20px; }
  .platforms-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .reg-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width: 480px) {
  .age-modal { padding: 36px 24px; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}

/* ---- Logo display improvements (local images) ---- */
.card-logo-wrap {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}
.card-logo-wrap img {
  max-height: 42px !important;
  max-width: 150px !important;
  width: auto !important;
  object-fit: contain !important;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.reg-item {
  background: rgba(255,255,255,0.03) !important;
}
.reg-item img {
  max-height: 50px !important;
  max-width: 160px !important;
}
.footer-reg-item img {
  max-height: 34px !important;
  max-width: 110px !important;
  filter: brightness(0.85) !important;
}
.footer-reg-item:hover img {
  filter: brightness(1) !important;
}
