/* ========================================
   Support Us — HoHeTo Kyle
   ======================================== */

/* -- Page Base -- */
html {
  scroll-behavior: smooth;
  overflow: auto !important;
  height: auto !important;
}

body {
  font-family: 'Instrument Sans', sans-serif !important;
  background: #ffffff !important;
  color: #111111 !important;
  overflow: auto !important;
  height: auto !important;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit !important;
  text-decoration: none !important;
}

:root {
  --color-primary: #08D2C1;
  --color-primary-dark: #06b5a6;
  --color-primary-glow: rgba(8, 210, 193, 0.35);
  --color-text-dark: #111111;
  --color-text-body: #333333;
  --color-text-muted: #6D6D6D;
  --font-display: 'Exo 2', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --nav-height: 76px;
  --max-width: 1200px;
  --transition-normal: 0.25s ease;
  --transition-fast: 0.15s ease;
}

/* ========================================
   PAGE HERO BANNER
   ======================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 351px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  background: #041a18;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 20, 18, 0.35);
}

.page-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: var(--max-width);
  padding: 0 40px;
}

.page-hero__title {
  font-family: var(--font-display) !important;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0;
}

.page-hero__subtitle {
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
  background: #ffffff !important;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.breadcrumb__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.breadcrumb__link {
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 500;
  color: #4B4B4B !important;
  text-decoration: none !important;
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--color-primary) !important;
}

.breadcrumb__sep {
  display: flex !important;
  align-items: center !important;
  color: #4B4B4B !important;
}

.breadcrumb__current {
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 500;
  color: #4B4B4B !important;
}

/* ========================================
   SECTION 1: WHY SUPPORT MATTERS
   ======================================== */
.why-support {
  padding: 80px 0;
  text-align: center;
}

.why-support__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-support__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #021129;
  margin-bottom: 32px;
}

.why-support__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #6D6D6D;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ========================================
   SECTION 2: WAYS YOU CAN SUPPORT
   ======================================== */
.ways-support {
  background: #020C1A;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.ways-support__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ways-support__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ways-support__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.ways-support__heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.ways-support__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.support-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
}

.support-card__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.support-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.support-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  flex: 1;
}

.support-card__btn {
  padding: 12px 24px;
  background: var(--color-primary);
  color: #ffffff !important;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition-normal), transform var(--transition-fast);
}

.support-card__btn:hover {
  background: var(--color-primary-dark);
}

/* ========================================
   SECTION 3: BUILT WITH CREATORS
   ======================================== */
.creators-banner {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}

.creators-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.creators-banner__heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #021129;
  margin-bottom: 32px;
}

.creators-banner__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: #6D6D6D;
  line-height: 1.7;
  margin-bottom: 12px;
}

.creators-banner__link {
  display: inline-block;
  color: var(--color-primary) !important;
  font-weight: 600;
  font-size: 18px;
  margin-top: 24px;
  text-decoration: underline !important;
  text-underline-offset: 6px;
}

/* -- Responsive -- */
@media (max-width: 1100px) {
  .ways-support__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 260px;
  }

  .page-hero__title {
    font-size: 32px;
  }

  .why-support,
  .ways-support,
  .creators-banner {
    padding: 60px 0;
  }

  .why-support__heading,
  .ways-support__heading {
    font-size: 28px;
  }

  .ways-support__grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    padding: 32px 20px;
  }
}