.hero-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: url('/images/decorative/decor_1.webp') center/cover no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.82) 100%);
  z-index: 0;
}

.hero-glass {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero-glass h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  color: var(--secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.hero-telemetry {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.telemetry-readout {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.75rem;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(15, 23, 42, 0.5);
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.92) 0%, rgba(15, 23, 42, 0.95) 100%),
    url('/images/offers_bg/offers_bg.webp') center/cover no-repeat;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(20, 184, 166, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.offers-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-inner h2 {
  font-size: 2rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}

.offers-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease;
}

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

.offer-logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-card h3 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-bonus {
  display: block;
  font-size: clamp(0.78rem, 2.5vw, 0.95rem);
  color: #333;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  display: block;
  font-size: 0.72rem;
  color: #888;
  margin-top: 4px;
}

.offer-desc {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}

.offer-cta {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background 0.35s ease;
  text-decoration: none;
  text-align: center;
  display: block;
  box-sizing: border-box;
}

.offer-cta:hover {
  background: #1d4ed8;
  color: #fff;
}

.info-section {
  padding: 64px 24px;
  position: relative;
}

.info-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.35), transparent);
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-inner h2 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 16px;
}

.info-inner p {
  color: var(--secondary);
  margin-bottom: 14px;
  font-size: 0.96rem;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.4);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.info-cta-link:hover {
  background: rgba(20, 184, 166, 0.28);
  color: var(--text);
}

.layout-gauge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.nasa-gauge-panel {
  padding: 20px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
}

.nasa-gauge-panel span {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 700;
}

.nasa-gauge-panel p {
  font-size: 0.72rem;
  margin: 4px 0 0;
  color: var(--muted);
}

.layout-guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border-left: 2px solid rgba(20, 184, 166, 0.4);
  padding-left: 28px;
}

.guide-step {
  position: relative;
  padding-bottom: 28px;
}

.guide-step::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.guide-step h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.guide-step p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.side-image-wrap {
  border-radius: 8px;
  overflow: hidden;
  max-width: 500px;
  border: 1px solid var(--border);
}

.side-image-wrap img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.layout-radar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.radar-cell {
  padding: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.radar-cell::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.radar-cell h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.radar-cell p {
  font-size: 0.85rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.layout-scientific-band {
  padding: 36px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 20px;
}

.scientific-data-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.data-chip {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  padding: 10px 16px;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid var(--border);
  color: var(--muted);
}

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

.mosaic-cell {
  padding: 20px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.mosaic-cell.wide {
  grid-column: span 2;
}

.mosaic-cell h3 {
  font-size: 0.92rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.mosaic-cell p {
  font-size: 0.84rem;
  margin-bottom: 0;
}

.layout-live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.live-panel {
  padding: 20px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.live-panel h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}

.live-panel p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.layout-ranking {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.rank-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.rank-num {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.rank-row h3 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.rank-row p {
  font-size: 0.84rem;
  margin-bottom: 0;
}

.layout-checklist {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.layout-checklist li {
  padding: 12px 16px 12px 40px;
  position: relative;
  color: var(--secondary);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.layout-checklist li::before {
  content: "▸";
  position: absolute;
  left: 14px;
  color: var(--accent);
  font-weight: 700;
}

.layout-orbit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.orbit-card {
  padding: 22px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.orbit-card h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.orbit-card p {
  font-size: 0.84rem;
  margin-bottom: 0;
}

.space-tag {
  display: inline-flex;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

#info-1 {
  background: rgba(15, 23, 42, 0.35);
}

#info-2 {
  background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.04));
}

#info-3 {
  background: rgba(2, 6, 23, 0.45);
}

#info-4 {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.06) 0%, transparent 60%);
}

#info-5 {
  background: rgba(15, 23, 42, 0.4);
}

#info-6 {
  background: rgba(2, 6, 23, 0.5);
}

#info-7 {
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.04) 0%, transparent 100%);
}

#info-8 {
  background: rgba(15, 23, 42, 0.45);
}

#info-9 {
  background: linear-gradient(135deg, rgba(103, 232, 249, 0.05) 0%, transparent 55%);
}

#info-10 {
  background: rgba(2, 6, 23, 0.55);
}

@media (max-width: 768px) {
  .hero-glass {
    max-width: 90%;
    padding: 24px;
  }

  .layout-split {
    grid-template-columns: 1fr;
  }

  .layout-gauge-grid {
    grid-template-columns: 1fr;
  }

  .layout-radar {
    grid-template-columns: 1fr;
  }

  .layout-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-cell.wide {
    grid-column: span 1;
  }

  .layout-live-grid {
    grid-template-columns: 1fr;
  }

  .layout-orbit-cards {
    grid-template-columns: 1fr;
  }

  .side-image-wrap {
    max-width: 100%;
  }

  .side-image-wrap img {
    max-width: 100%;
  }

  .offer-logo {
    width: 100px;
    height: 50px;
  }

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

@media (max-width: 375px) {
  .hero-section {
    overflow: hidden;
  }

  .side-image-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .side-image-wrap img {
    max-width: 100%;
    width: 100%;
  }
}
