:root {
  --bg: #f3f1ec;
  --panel: #ffffff;
  --border: #d8d1c7;
  --text: #222;
  --muted: #656565;
  --brand: #5d0f0f;
  --brand-dark: #3f0808;
  --gold: #f2b632;
  --green: #155c1a;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #650d0d 0, #4b0707 180px, var(--bg) 180px, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
}

a { color: #0c5d18; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 14px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 320px) 1fr;
  align-items: stretch;
  background: #2e0505;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

.hero-grid > img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.hero-center {
  background: url('images/casino-head3.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

.hero-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(42, 8, 8, .38);
}

.brand, .brand-subtitle {
  position: relative;
  z-index: 1;
}

.brand {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}

.brand-subtitle {
  margin: 12px 0 0;
  color: #fff7d9;
  font-size: 1rem;
  max-width: 22ch;
}

.hero-strip {
  background: linear-gradient(90deg, #9b7023, var(--gold), #9b7023);
  color: #321b00;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.1);
}

.page-wrap {
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 0 14px 30px;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 22px;
}

.sidebar, .content {
  min-width: 0;
}

.panel, .card, .site-footer {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(30, 15, 10, .06);
}

.panel { margin-bottom: 20px; overflow: hidden; }
.panel-accent h2 {
  margin: 0;
  padding: 14px 16px;
  background: var(--brand);
  color: #fff;
  font-size: 1.15rem;
}

.topic-list {
  list-style: none;
  margin: 0;
  padding: 14px 16px 16px;
}
.topic-list li + li { margin-top: 10px; }
.topic-list a { color: var(--brand-dark); font-weight: 700; }

.image-panel img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.card {
  padding: 22px;
  margin-bottom: 22px;
}

.intro-text {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.flag { width: 48px; }

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
  color: var(--brand-dark);
}

h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
h2 { font-size: 1.55rem; margin-bottom: 12px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; }
p:last-child { margin-bottom: 0; }

.section-head p { color: var(--muted); margin-top: 0; }

.table-wrap { overflow-x: auto; }
.casino-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.casino-table th,
.casino-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e8e2d9;
  vertical-align: top;
  text-align: left;
}
.casino-table th {
  background: #f8f4ee;
  color: var(--brand-dark);
  font-size: .95rem;
}
.casino-table tbody tr:hover { background: #fffaf2; }

.stars {
  color: #d89a00;
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}
.btn:hover {
  background: var(--brand-dark);
  text-decoration: none;
}

.faq-item + .faq-item {
  border-top: 1px solid #ebe4db;
  margin-top: 14px;
  padding-top: 14px;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 18px 14px;
  text-align: center;
}
.site-footer p { margin: 0; }
.site-footer p + p { margin-top: 8px; }

@media (max-width: 920px) {
  .page-wrap {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }

  .content {
    order: 1;
  }
}

@media (max-width: 760px) {
  body {
    background: linear-gradient(180deg, #650d0d 0, #4b0707 120px, var(--bg) 120px, var(--bg) 100%);
  }

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

  .hero-grid > img:first-child,
  .hero-grid > img:last-child {
    max-height: 180px;
  }

  .hero-center {
    min-height: 180px;
  }

  .intro-text {
    grid-template-columns: 1fr;
  }

  .flag {
    width: 40px;
  }

  .card, .site-footer {
    padding: 18px;
  }
}
