@font-face {
  font-family: "DreamMMA";
  src:
    url("/fonts/DreamMMA.woff2") format("woff2"),
    url("/fonts/DreamMMA.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #070707;
  --bg-soft: #0e0e0e;
  --panel: rgba(16, 16, 16, 0.92);
  --panel-2: rgba(20, 20, 20, 0.95);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --muted-2: #8d8d8d;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, #151515 0%, #090909 34%, #050505 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
}

.home-page {
  width: 100%;
}

.home-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.home-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 44px 20px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.35), rgba(5, 5, 5, 0.82)),
    radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 55%),
    url("/images/eclipticbackground.png") center center / cover no-repeat;
  transform: scale(1.02);
}

.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.72), rgba(5,5,5,0.38), rgba(5,5,5,0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55), rgba(10,10,10,0.72));
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  text-align: center;
  align-items: center;
  margin: 0 auto;
}

.hero-eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #d7d7d7;
  font-weight: 700;
}

.hero-content h1 {
  font-family: "DreamMMA", Arial, sans-serif;
  letter-spacing: 3px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 0 auto;
  max-width: 760px;
  line-height: 0.98;
  font-weight: normal;
}

.hero-subtext {
  margin: 16px auto 0;
  text-align: center;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

.hero-button:hover {
  transform: translateY(-1px);
}

.hero-button-primary {
  background: linear-gradient(to bottom, #f3f3f3, #d8d8d8);
  color: #090909;
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #f1f1f1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.intro-section {
  padding-top: 56px;
}

.section-heading {
  max-width: 760px;
}

.section-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #d6d6d6;
  font-weight: 700;
}

.section-heading h2,
.closing-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.section-text,
.closing-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.actions-section {
  padding-top: 34px;
  padding-bottom: 10px;
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.action-card {
  display: block;
  padding: 22px;
  border-radius: 20px;
  text-decoration: none;
  background: linear-gradient(to bottom, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  text-align: center;
}

.action-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: #f1f1f1;
  font-weight: 800;
  font-size: 0.92rem;
}

.action-card h3 {
  margin: 18px 0 10px;
  font-size: 1.35rem;
}

.action-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.action-link {
  color: #f3f3f3;
  font-weight: 700;
  font-size: 0.95rem;
}

.closing-section {
  padding-top: 34px;
  padding-bottom: 64px;
}

.closing-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(to bottom, rgba(18,18,18,0.95), rgba(10,10,10,0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.closing-copy {
  max-width: 680px;
}

.closing-actions {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 34px 24px;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .closing-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: auto;
    padding: 22px 14px 34px;
  }

  .home-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .hero-content h1 {
    line-height: 1.02;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .intro-section {
    padding-top: 38px;
  }

  .closing-section {
    padding-bottom: 40px;
  }

  .closing-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
}