/* Make WhatsApp icon larger and adjust envelope icon if needed */
.whatsapp-icon {
  width: 28px !important;
  height: 28px !important;
}
.envelope-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 480px) {
  .btn {
    padding: 0.6rem 0.85rem;
    font-size: 0.98rem;
  }
  .btn-icon {
    width: 1rem;
    height: 1rem;
  }
}
/* Anton font for h1 */
.anton {
  font-family: 'Anton', Arial, sans-serif;
  letter-spacing: 0.02em;
}
:root {
  --sand: #f6efe2;
  --clay: #d56f3e;
  --sun: #f7b534;
  --ink: #121212;
  --teal: #0f766e;
  --mist: #fefcf7;
  --card: rgba(255, 255, 255, 0.84);
  --shadow: 0 18px 50px rgba(23, 18, 12, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #0f1b10;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image: url("your-home-of-football-YbNDe8XOo7iggjQq.png");
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: blur(2.2px) saturate(1.06);
  will-change: transform;
}

body::after {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.1), transparent 35%),
    linear-gradient(155deg, rgba(4, 11, 10, 0.5), rgba(2, 8, 6, 0.62));
}

.page {
  width: min(92vw, 920px);
  min-height: 88vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 2rem 0;
  z-index: 1;
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(rgba(0, 0, 0, 0.2) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

.card {
  position: relative;
  width: min(96%, 760px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
  background: rgba(252, 251, 247, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal);
}

h1 {
  margin: 0.45rem 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 4rem);
  line-height: 1.02;
  max-width: 18ch;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  max-width: 56ch;
  line-height: 1.5;
  margin: 1rem 0 0;
}

.small {
  margin: 0.7rem 0 0;
  font-size: 0.97rem;
  opacity: 0.86;
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: linear-gradient(90deg, #25d366, #1ebc57);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.42);
}

.ghost {
  color: var(--ink);
  border: 1px solid rgba(18, 18, 18, 0.2);
  background: #ffffff;
}

.status {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.05);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 0 rgba(213, 111, 62, 0.8);
  animation: pulse 1.6s infinite;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 0 1rem 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 700ms ease forwards;
}

.delay {
  animation-delay: 220ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(213, 111, 62, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(213, 111, 62, 0);
  }
}

@media (max-width: 640px) {
  body::before {
    background-position: 68% center;
    background-size: auto 118vh;
    transform: scale(1.03);
    filter: blur(1.6px) saturate(1.04);
  }

  body::after {
    background:
      linear-gradient(160deg, rgba(5, 14, 10, 0.52), rgba(3, 9, 7, 0.66));
  }

  .page {
    min-height: 84vh;
    width: 94vw;
  }

  .card {
    border-radius: 22px;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
    width: 100%;
  }
}
