:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #5f6b7a;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, transparent 32%), var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 24px 35px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: bold;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin: 18px 0;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
  margin-top: 0;
}

h3 {
  margin-bottom: 6px;
}

.intro {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 720px;
}

.hero-img,
.section-img {
  width: 100%;
  max-height: 330px;
}

.casino-img {
  display: block;
  object-fit: contain;
  max-width: 280px;
  margin: 0 auto;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 70px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
  margin: 26px 0;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 34px;
  align-items: center;
}

.reverse {
  grid-template-columns: 340px 1fr;
}

.reverse div {
  order: 2;
}

.reverse img {
  order: 1;
}

.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.grid img {
  width: 80px;
  height: 80px;
}

.note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 6px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 16px;
}

.timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.timeline li:last-child {
  border-bottom: 0;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: bold;
  flex: 0 0 auto;
}

.conclusion {
  text-align: center;
  background: #111827;
  color: white;
  border-radius: 32px;
  padding: 42px 34px;
  box-shadow: var(--shadow);
}

.conclusion p {
  max-width: 850px;
  margin: 0 auto;
  color: #d1d5db;
}

@media (max-width: 800px) {
  .hero,
  .two-cols,
  .reverse,
  .grid {
    grid-template-columns: 1fr;
  }

  .reverse div,
  .reverse img {
    order: initial;
  }

  .hero {
    padding-top: 42px;
  }

  .card {
    padding: 24px;
    border-radius: 22px;
  }
}
