* { box-sizing: border-box; }

:root{
  --green:#0a7c3a;
  --green-deep:#064f25;
  --gold:#f3c552;
  --bg:#0b1220;
  --panel:#f4f6f8;
  --text:#1a1a1a;
  --muted:#555;
  --card:#ffffff;
  --line:rgba(0,0,0,.12);
  --shadow: 0 14px 34px rgba(0,0,0,.25);
  --radius: 14px;
}

body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* HERO */
.hero{
  position: relative;
  padding: 3rem 1rem 2.6rem;
  color: white;
  background-image: url("background-v2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(rgba(6,79,37,.65), rgba(6,79,37,.88));
  pointer-events:none;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: radial-gradient(900px 500px at 20% 0%, rgba(243,197,82,.22), transparent 60%);
  pointer-events:none;
}

.hero-inner{
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.crest-wrap{
  width: 190px;
  height: 190px;
  border-radius: 34px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.15);
  box-shadow: 0 22px 60px rgba(0,0,0,.4);
}

.club-crest{
  width: 155px;
  height: auto;
  border-radius: 26px;
}


/* HERO TEXT */
.club-name{ font-size: 24px; font-weight: 900; }
.club-draw{
  font-size: 52px;
  font-weight: 1000;
  color: var(--gold);
  text-transform: uppercase;
}
.club-slogan{ font-size: 17px; font-weight: 900; }
.hero-sub{ max-width: 560px; font-weight: 600; }

/* BUTTONS */
.hero-actions{
  display:flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn{
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.35);
}

.btn-gold{ background: var(--gold); color:#1b1b1b; }
.btn-ghost{ background: rgba(255,255,255,.12); color:white; }

/* PANEL */
main{ padding: 18px 12px 78px; }

.panel{
  max-width: 1000px;
  margin: 0 auto;
  background: var(--panel);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px 16px;
}

.section-head{ max-width: 860px; margin: 0 auto 10px; }
.section-intro{ color: var(--muted); }

.divider{
  max-width: 860px;
  margin: 20px auto;
  border: none;
  border-top: 1px solid rgba(0,0,0,.14);
}

/* PAYMENTS */
.payments{
  max-width: 860px;
  margin: 0 auto;
  display:grid;
  gap: 14px;
}

@media (min-width: 800px){
  .payments{ grid-template-columns: 1fr 1fr; }
}

.pay-card{
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px;
  border: 1.5px solid var(--line);
  text-decoration:none;
  color: inherit;
}

.pay-card.highlight{
  border-color: var(--gold);
  box-shadow: 0 18px 34px rgba(243,197,82,.35);
}

.badge{
  display:inline-block;
  padding: 6px 12px;
  background: var(--gold);
  font-weight: 900;
  border-radius: 999px;
}

/* FAQ + TRUST + FOOTER */
.faq{ max-width: 860px; margin: 0 auto; }
.trust-line{
  max-width: 860px;
  margin: 18px auto 0;
  padding: 12px;
  background: #eef3ef;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.footer{ max-width: 860px; margin: 20px auto 0; font-size: 13px; }

/* STICKY HELP */
.sticky-help{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: 700;
}

.sticky-help a{
  color: white;
  font-weight: 900;
  text-decoration: underline;
}

/* --- MOBILE: PITCH IMAGE OPTIMISED --- */
@media (max-width: 768px){
  .hero{
    min-height: 480px;
    background-size: 100% auto;
    background-position: center 30%;
  }

  .hero::before{
    background: linear-gradient(rgba(6,79,37,.40), rgba(6,79,37,.65));
  }

  .hero-overlay{ opacity: 0.5; }

  .club-draw{ font-size: 42px; }
}


