/* ============================================
   CTA Sections — Glow Effects
   ============================================ */
.cta-section {
  border-top: 1px solid var(--color-outline-variant);
  position: relative;
  overflow: hidden;
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .cta-section__inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}

.cta-section__content {
  flex: 1;
}

.cta-section__content .section-subtitle {
  margin-bottom: 24px;
}

.cta-section__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary-container);
}

.cta-section__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.3));
}

.cta-section__action {
  flex-shrink: 0;
}

/* Store section — background glow */
.store-section {
  background: linear-gradient(180deg, var(--color-surface-container-lowest) 0%, var(--color-background) 100%);
}

.store-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Discord section — background glow */
.discord-section {
  background: var(--color-background);
}

.discord-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(88, 101, 242, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
