#offers .content-area {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  align-items: stretch;
}

#offers .card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

#offers .card-inner {
  background: #ffffff;
  padding: 1.125rem 1.375rem 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

#offers .logo-rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

#offers .logo-placeholder {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

#offers .logo-placeholder img,
#offers .offer-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

#offers .rating {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
}

#offers .rating-value {
  font-weight: 700;
  font-size: 1.125rem;
  color: #1e293b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .rating-max {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

#offers .rating .rating-value,
#offers .rating .rating-max {
  display: inline;
}

#offers .stars {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
}

#offers .star {
  width: 14px;
  height: 12px;
  color: #f59e0b;
}

#offers .star-empty {
  color: #cbd5e1;
}

#offers .domain {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .divider {
  margin: 0.25rem 0 0;
  border: none;
  border-top: 1px solid #e2e8f0;
}

#offers .bonus-info {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

#offers .bonus-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .bonus-text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .bonus-terms {
  margin: 0;
  font-size: 0.6875rem;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .offer-desc {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
  letter-spacing: normal;
}

#offers .action-area {
  margin-top: 0.375rem;
}

#offers .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8125rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: #4f46e5;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

#offers .btn:hover {
  background: #4338ca;
  color: #fff;
}

#offers .rank-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: #4f46e5;
  border-radius: 0 14px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

#offers .rank-num {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-variant: normal;
}

@media (min-width: 380px) {
  #offers .content-area {
    padding: 0 0.5rem;
    gap: 1.25rem;
  }

  #offers .card-inner {
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.9375rem;
  }

  #offers .logo-rating-row {
    gap: 1.125rem;
  }

  #offers .divider {
    margin: 0.3125rem 0 0;
  }

  #offers .action-area {
    margin-top: 0.5rem;
  }
}

@media (max-width: 767px) {
  #offers .logo-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  #offers .bonus-text {
    font-size: 0.875rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
.hero {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 56px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(33, 33, 33, 0.55) 0%, rgba(33, 33, 33, 0.72) 55%, rgba(33, 33, 33, 0.9) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(128, 203, 196, 0.18), transparent 60%);
}

.hero-clouds {
  position: absolute;
  inset: -20% -10%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 28% at 20% 40%, rgba(245, 245, 245, 0.12), transparent 70%),
    radial-gradient(ellipse 35% 24% at 75% 55%, rgba(128, 203, 196, 0.14), transparent 70%);
  filter: blur(40px);
  animation: clouds-float 16s ease-in-out infinite;
}

.hero-ribbon {
  position: relative;
  z-index: 3;
  width: min(920px, 96%);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: linear-gradient(90deg, rgba(128, 203, 196, 0.92), rgba(128, 203, 196, 0.75));
  transform: rotate(-2deg);
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero-ribbon h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-sub {
  position: relative;
  z-index: 3;
  margin-top: 28px;
  max-width: 560px;
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
  font-style: italic;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.hero-cta {
  position: relative;
  z-index: 3;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: rgba(245, 245, 245, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.hero-cta:hover {
  background: rgba(128, 203, 196, 0.25);
  color: #fff;
  opacity: 1;
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(33, 33, 33, 0.88), rgba(45, 45, 45, 0.9)),
    radial-gradient(ellipse at 50% 0%, rgba(128, 203, 196, 0.12), transparent 55%);
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
  font-style: italic;
}

.info-section {
  position: relative;
  padding: 56px 24px;
  overflow: hidden;
}

.info-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(128, 203, 196, 0.08);
  filter: blur(60px);
  top: -40px;
  right: -60px;
  pointer-events: none;
  animation: soft-breathing 7s ease-in-out infinite;
}

.info-section:nth-child(even)::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(189, 189, 189, 0.06);
  filter: blur(50px);
  bottom: -30px;
  left: -40px;
  pointer-events: none;
  animation: meditative-drift 11s ease-in-out infinite;
}

.info-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-bottom: 12px;
  font-weight: 600;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 70ch;
}

.info-section ul,
.info-section ol {
  padding-left: 1.2rem;
  margin: 12px 0 16px;
  color: var(--muted);
}

.info-section li {
  margin-bottom: 6px;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.layout-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.layout-center p,
.layout-center ul {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.layout-band {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.band-visual {
  min-height: 220px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  filter: blur(0.3px);
  opacity: 0.9;
}

.layout-steps {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.layout-steps li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px;
}

.layout-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(128, 203, 196, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-style: italic;
}

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

.mini-card {
  background: rgba(45, 45, 45, 0.55);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(14px);
}

.mini-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
  font-style: italic;
}

.mini-card p {
  font-size: 0.9rem;
  margin: 0;
}

.layout-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid rgba(128, 203, 196, 0.5);
  padding-left: 16px;
  margin: 16px 0;
  max-width: 60ch;
}

.topic-cta {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-style: italic;
  border-bottom: 1px solid rgba(128, 203, 196, 0.35);
  padding-bottom: 2px;
}

.topic-cta:hover {
  color: var(--text);
}

.layout-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
  font-size: 0.9rem;
}

.layout-table th,
.layout-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.layout-table th {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}

.misty-panel {
  background: rgba(45, 45, 45, 0.45);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .layout-split,
  .layout-band,
  .layout-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 220px;
    padding: 36px 16px 44px;
  }

  .hero-ribbon {
    transform: none;
    min-height: 52px;
    padding: 12px 16px;
  }

  .hero-sub {
    margin-top: 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .info-section,
  .offers-section {
    padding: 40px 16px;
  }

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

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .band-visual {
    max-width: 100%;
    width: 100%;
  }

  .hero-clouds {
    inset: 0;
  }
}

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

  .decor-wrap,
  .decor-img,
  .band-visual {
    max-width: 100%;
  }
}
