.main-layout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 6vw 1.25rem;
  position: relative;
  z-index: 1;
}

.hero-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 0.85rem 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.05),
    transparent 60%
  );
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
}

.footer-right {
  justify-content: flex-end;
  text-align: right;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(220, 220, 255, 0.8);
}

.footer-geo {
  display: none;
}

@media (max-width: 960px) {
  .main-layout {
    padding: 2.1rem 6vw 1.25rem;
  }
}

@media (max-width: 720px) {
  .main-layout {
    padding: 1.75rem 5vw 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }

  .footer-right {
    text-align: center;
  }
}
