.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: calc(100vh - var(--nav-h) - 80px);
  max-height: 640px;
  overflow: hidden;
  margin-bottom: 0;
  animation: fadeSlideUp 0.7s ease both;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: #1a0a0c;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, rgba(26, 10, 12, 0.35)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 23px,
      rgba(52, 211, 153, 0.08) 23px,
      rgba(52, 211, 153, 0.08) 24px
    );
  pointer-events: none;
  animation: gridPulse 4s ease-in-out infinite;
}

.hero-copy {
  background: #1a0a0c;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 48px 40px;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(52, 211, 153, 0.25);
  pointer-events: none;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  max-width: 16ch;
}

.hero-copy p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36ch;
  margin-bottom: 24px;
}

.hero-cta {
  display: inline-flex;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background 0.2s;
}

.hero-cta:hover {
  background: var(--accent);
  color: #064e3b;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: 0;
    width: 100%;
    overflow: hidden;
  }

  .hero-media {
    max-height: 180px;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-media img {
    max-height: 180px;
    max-width: 100%;
    width: 100%;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
    padding: 32px 24px;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-media {
    max-height: 150px;
  }

  .hero-media img {
    max-height: 150px;
  }
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: #1a0a0c;
  background-image: linear-gradient(rgba(26, 10, 12, 0.82), rgba(26, 10, 12, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.offers-head {
  text-align: center;
  margin-bottom: 32px;
  color: #fff;
}

.offers-head .tactical {
  color: var(--accent);
  margin-bottom: 8px;
}

.offers-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offers-head p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

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

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.offer-card {
  background: #fff;
  border: 2px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
}

.offer-card-top {
  background: #0f172a;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.offer-logo {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  max-height: none;
}

.offer-card-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: #f8fafc;
  min-width: 0;
}

.offer-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.offer-bonus {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.offer-terms {
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .offer-logo {
    width: 160px;
    height: 80px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-bonus {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .offer-logo {
    width: 140px;
    height: 70px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-bonus {
    font-size: 12px;
  }
}

.offer-desc {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.offer-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: #16a34a;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-align: center;
}

.offer-cta:hover {
  background: #15803d;
  color: #fff;
}

.info-block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
}

.info-block + .info-block {
  border-top: 1px solid var(--border);
}

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.info-block h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.info-block p {
  font-size: 15px;
  margin-bottom: 12px;
  max-width: 68ch;
}

.info-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.info-cta:hover {
  background: var(--primary);
  color: #fff;
}

#info-1 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

#info-1 .decor-wrap {
  justify-self: end;
}

#info-1 .decor-wrap img {
  border: 1px solid var(--border);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
}

@media (max-width: 768px) {
  #info-1 {
    grid-template-columns: 1fr;
  }
}

#info-2 {
  background: var(--surface);
  border-left: 4px solid var(--secondary);
  margin-left: 24px;
  margin-right: 24px;
  max-width: none;
  padding: 40px 32px;
}

#info-2 .info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

#info-2 .info-cards article {
  padding: 14px;
  border: 1px solid var(--border);
  background: rgba(251, 113, 133, 0.04);
}

#info-2 .info-cards h3 {
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

#info-2 .info-cards p {
  font-size: 13px;
  margin: 0;
}

@media (max-width: 700px) {
  #info-2 {
    margin-left: 0;
    margin-right: 0;
  }

  #info-2 .info-cards {
    grid-template-columns: 1fr;
  }
}

#info-3 {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: flex-start;
}

#info-3 .info-text {
  flex: 1;
}

#info-3 .rank-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  flex: 0 0 220px;
}

#info-3 .rank-list li {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  display: flex;
  gap: 10px;
}

#info-3 .rank-list span {
  color: var(--primary);
}

@media (max-width: 700px) {
  #info-3 {
    flex-direction: column;
  }

  #info-3 .rank-list {
    flex: none;
    width: 100%;
  }
}

#info-4 {
  text-align: center;
  background: linear-gradient(180deg, rgba(253, 186, 116, 0.15), transparent);
}

#info-4 p {
  margin-left: auto;
  margin-right: auto;
}

#info-4 .live-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

#info-4 .live-strip span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

#info-5 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 32px;
}

#info-5 .step-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
  grid-row: span 2;
}

#info-5 .steps {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

#info-5 .steps li {
  list-style: none;
  padding: 12px 14px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  font-size: 14px;
}

@media (max-width: 600px) {
  #info-5 {
    grid-template-columns: 1fr;
  }

  #info-5 .step-num {
    grid-row: auto;
  }
}

#info-6 {
  position: relative;
  overflow: hidden;
}

#info-6::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.2), transparent 70%);
  pointer-events: none;
}

#info-6 .check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

#info-6 .check-grid div {
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

#info-6 .check-grid h3 {
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--primary);
}

#info-6 .check-grid p {
  font-size: 13px;
  margin: 0;
}

@media (max-width: 600px) {
  #info-6 .check-grid {
    grid-template-columns: 1fr;
  }
}

#info-7 {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 0 24px;
  max-width: none;
  padding: 0;
  overflow: hidden;
}

#info-7 .map-panel {
  background:
    linear-gradient(135deg, rgba(26, 10, 12, 0.92), rgba(63, 29, 34, 0.88)),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(52, 211, 153, 0.08) 12px,
      rgba(52, 211, 153, 0.08) 13px
    );
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

#info-7 .map-panel span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

#info-7 .info-text {
  padding: 36px 28px;
}

@media (max-width: 768px) {
  #info-7 {
    grid-template-columns: 1fr;
    margin: 0;
  }
}

#info-8 {
  border-top: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
}

#info-8 .wager-table {
  width: 100%;
  max-width: 560px;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 13px;
  font-family: var(--font-mono);
}

#info-8 .wager-table th,
#info-8 .wager-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

#info-8 .wager-table th {
  background: rgba(251, 113, 133, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 11px;
}

#info-9 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  max-width: 1200px;
  margin: 48px auto;
  border: 1px solid var(--border);
  overflow: hidden;
}

#info-9 .slots-visual {
  background-image: linear-gradient(rgba(26, 10, 12, 0.55), rgba(26, 10, 12, 0.7)),
    url("/images/decorative/decor_3.webp");
  background-size: cover;
  background-position: center;
  min-height: 280px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

#info-9 .slots-visual::after {
  content: "SLOTS OPS";
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
}

#info-9 .slots-copy {
  padding: 36px 28px;
  background: var(--surface);
}

@media (max-width: 768px) {
  #info-9 {
    grid-template-columns: 1fr;
  }

  #info-9 .slots-visual {
    min-height: 160px;
  }
}

#info-10 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

#info-10 .vp-quote {
  font-size: 1.15rem;
  font-style: italic;
  border-left: 4px solid var(--secondary);
  padding: 12px 18px;
  background: rgba(253, 186, 116, 0.12);
  max-width: 52ch;
  margin: 8px 0;
}

#info-10 ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#info-10 li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 0;
}
