@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg2: #0f0f18;
  --bg3: #13131e;
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --gold-dim: rgba(201,168,76,0.15);
  --red: #d94040;
  --white: #f4f0e8;
  --white-dim: rgba(244,240,232,0.6);
  --white-faint: rgba(244,240,232,0.08);
  --border: rgba(201,168,76,0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --radius: 2px;
  --trans: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── LINKS ── */
a { color: var(--gold); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold2); }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

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

.logo-emblem {
  width: 36px; height: 36px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--trans);
}

.header-nav a:hover,
.header-nav a.active { color: var(--gold); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.age-badge {
  width: 32px; height: 32px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.lang-switcher a {
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: var(--trans);
}

.lang-switcher a.active,
.lang-switcher a:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(217,64,64,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0f 0%, #0d0d16 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.04) 79px, rgba(201,168,76,0.04) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201,168,76,0.04) 79px, rgba(201,168,76,0.04) 80px);
  pointer-events: none;
}

.hero-corner {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,168,76,0.12);
  pointer-events: none;
}
.hero-corner.tl { top: 80px; left: 40px; border-right: none; border-bottom: none; }
.hero-corner.tr { top: 80px; right: 40px; border-left: none; border-bottom: none; }
.hero-corner.bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.hero-corner.br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover { background: var(--gold2); color: var(--bg); }
.btn-primary:hover::after { transform: translateX(100%); }

.hero-disclaimer {
  font-size: 0.72rem;
  color: rgba(244,240,232,0.3);
  letter-spacing: 0.02em;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-card {
  background: var(--white-faint);
  border: 1px solid var(--border);
  padding: 28px 24px;
  transition: var(--trans);
}

.stat-card:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--white-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ══════════════════════════════
   SECTIONS COMMON
══════════════════════════════ */
section { padding: 100px 24px; }

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 560px;
  margin: 0 auto;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 60px;
  max-width: 200px;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ══════════════════════════════
   CASINO CARDS
══════════════════════════════ */
#casinos { background: var(--bg2); }

.casino-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.casino-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

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

.casino-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}

.card-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casino-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.casino-logo-wrap {
  width: 100px; height: 48px;
  display: flex; align-items: center; justify-content: flex-start;
}

.casino-logo-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}

.casino-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rating-wrap {
  text-align: right;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.rating-stars {
  display: flex;
  gap: 2px;
  justify-content: flex-end;
  margin-top: 4px;
}

.star { color: var(--gold); font-size: 0.8rem; }
.star.empty { color: rgba(201,168,76,0.3); }

.casino-bonus {
  background: var(--gold-dim);
  border: 1px solid var(--border);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.bonus-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 4px;
}

.bonus-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.bonus-code {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 10px;
  border: 1px dashed var(--border);
  font-size: 0.72rem;
  color: var(--white-dim);
  letter-spacing: 0.1em;
}

.casino-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.tag {
  padding: 4px 12px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--white-dim);
  letter-spacing: 0.04em;
  transition: var(--trans);
}

.tag:hover { border-color: var(--gold); color: var(--gold); }

.casino-actions {
  display: flex;
  gap: 10px;
}

.btn-play {
  flex: 1;
  padding: 13px 20px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: var(--trans);
  display: block;
}

.btn-play:hover { background: var(--gold2); color: var(--bg); }

.btn-review {
  padding: 13px 20px;
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: var(--trans);
  display: block;
}

.btn-review:hover { border-color: var(--gold); color: var(--gold); }

.card-disclaimer {
  margin-top: 16px;
  font-size: 0.68rem;
  color: rgba(244,240,232,0.25);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════
   FEATURES
══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-item {
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--gold-dim);
  transition: height 0.4s ease;
}

.feature-item:hover { border-color: var(--gold); }
.feature-item:hover::after { height: 100%; }

.feature-item > * { position: relative; z-index: 1; }

.feature-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--trans);
}

.feature-item:hover .feature-icon { border-color: var(--gold); }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ══════════════════════════════
   GUIDE
══════════════════════════════ */
#guide { background: var(--bg2); }

.guide-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.guide-text p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 32px;
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.req-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: var(--trans);
}

.req-list li:hover { border-color: var(--gold); color: var(--white); }

.req-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

.guide-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.guide-stat {
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--trans);
}

.guide-stat:hover { border-color: var(--gold); background: var(--gold-dim); }

.guide-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.guide-stat-label {
  font-size: 0.78rem;
  color: var(--white-dim);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--trans);
}

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

.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--trans);
}

.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--gold); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 28px 22px;
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.faq-item.open .faq-a { max-height: 200px; }

/* ══════════════════════════════
   RESPONSIBLE
══════════════════════════════ */
#responsible {
  background: linear-gradient(135deg, #0a0a0f 0%, #100a0a 100%);
  border-top: 1px solid rgba(217,64,64,0.2);
  border-bottom: 1px solid rgba(217,64,64,0.2);
}

.responsible-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.responsible-content .section-title { color: var(--white); }

.responsible-content p {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 540px;
  margin-bottom: 0;
}

.helpline-box {
  border: 1px solid rgba(217,64,64,0.4);
  padding: 32px 40px;
  text-align: center;
  background: rgba(217,64,64,0.04);
}

.helpline-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.helpline-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--red);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: #060609;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: var(--trans);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.partner-badge {
  padding: 6px 14px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--white-dim);
  letter-spacing: 0.06em;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-badge:hover { border-color: var(--gold); color: var(--gold); }

.partner-badge svg, .partner-badge span.icon { font-size: 0.9rem; }

.footer-mid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.age-warning {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--white-dim);
}

.age-circle {
  width: 44px; height: 44px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}

.srij-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--white-dim);
}

.srij-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.footer-legal-text {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 24px;
  font-size: 0.75rem;
  color: rgba(244,240,232,0.2);
  line-height: 1.8;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.footer-legal-text a { color: rgba(201,168,76,0.4); }
.footer-legal-text a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(244,240,232,0.25);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(244,240,232,0.25);
  transition: var(--trans);
}

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

/* ══════════════════════════════
   INNER PAGES
══════════════════════════════ */
.page-hero {
  padding: 140px 24px 80px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
}

.page-hero h1 span { color: var(--gold); }

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 24px;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  margin: 40px 0 16px;
}

.page-content p {
  font-size: 0.92rem;
  color: var(--white-dim);
  line-height: 1.9;
  margin-bottom: 16px;
}

.page-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
  color: var(--white-dim);
  font-size: 0.92rem;
  line-height: 1.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  font-size: 0.75rem;
}

.contact-value {
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
}

.contact-value:hover {
  color: var(--gold);
}

/* ══════════════════════════════
   MOBILE
══════════════════════════════ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .guide-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .casino-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .responsible-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-corner { display: none; }
}

@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-mid { flex-direction: column; align-items: flex-start; }
}

.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--border);
  transition: var(--trans);
  background: rgba(255,255,255,0.02);
}

.partner-logo-link:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.partner-logo {
  max-height: 32px;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: var(--trans);
}

.partner-logo-link:hover .partner-logo {
  opacity: 1;
}