@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,400;1,700&display=swap');

:root {
  --green: #22cc00;
  --green-dark: #1aaa00;
  --bg: #3d3d3d;
  --bg-dark: #111;
  --white: #ffffff;
  --gray: #cccccc;
  --input-bg: #b8b8b8;
  --card-bg: #474747;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);
  border-bottom: 1px solid #2e2e2e;
}

.nav-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.nav-left a {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.83rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-left a:hover,
.nav-left a.active { text-decoration: underline; }

.site-logo {
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
  padding: 0 16px;
  letter-spacing: 0.05em;
}

.site-logo:hover { text-decoration: none; }

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav-right a {
  color: var(--green);
  font-size: 1rem;
  text-decoration: none;
}

.nav-right a:hover { opacity: 0.75; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  background-color: #2d2d2d;
  padding: 16px 30px;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #3a3a3a;
  display: block;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 38px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn:hover { background-color: var(--green-dark); text-decoration: none; color: var(--white); }
.btn-wide { display: block; width: 100%; text-align: center; padding: 16px 20px; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===== HOME HERO ===== */
.home-hero {
  background-color: var(--bg);
  text-align: center;
  padding: 90px 20px 70px;
}

.home-hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: 2.3rem;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 22px;
  line-height: 1.4;
}

.home-hero p {
  color: var(--gray);
  max-width: 740px;
  margin: 0 auto 44px;
  font-size: 0.95rem;
}

/* ===== OVAL BADGE ===== */
.oval-badge {
  background: var(--white);
  border: 5px solid var(--green);
  border-radius: 50%;
  width: 192px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  padding: 14px 18px;
  text-align: center;
  flex-shrink: 0;
}

.badge-brand {
  font-family: 'Orbitron', sans-serif;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 3px;
}

.badge-leaf { font-size: 0.85rem; }

.badge-division {
  font-family: 'Exo 2', sans-serif;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 600;
  font-style: italic;
  margin-top: 5px;
  letter-spacing: 0.02em;
}

/* ===== CARD GRID ===== */
.cards-section {
  background-color: var(--bg);
  padding: 20px 20px 70px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1040px;
  margin: 0 auto;
}

.card { text-align: center; }

.card h3 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.card p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== FUTURE SECTION ===== */
.future-section {
  background-color: var(--bg);
  padding: 30px 20px 70px;
}

.section-title {
  text-align: center;
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 44px;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  max-width: 1040px;
  margin: 0 auto;
}

.future-card { text-align: center; }

.future-card h3 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.future-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 6px;
}

.future-card .future-label {
  color: #888;
  font-style: italic;
  font-size: 0.82rem;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  background-color: #0a0a0a;
  padding: 60px 20px 52px;
  text-align: center;
}

.page-hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 0 18px;
  font-family: 'Exo 2', sans-serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.1;
}

.ph-white {
  color: var(--white);
  border-bottom: 2px solid var(--white);
  padding-bottom: 8px;
}

.ph-green {
  color: var(--white);
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
}

.ph-green em {
  color: var(--green);
  font-style: italic;
}

/* Sports hero */
.sports-hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    radial-gradient(ellipse at 50% 60%, #0d2d0d 0%, #0a1a08 60%, #050f05 100%);
  padding: 80px 20px 60px;
  text-align: center;
}

.sports-hero-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--white);
}

.sports-hero-title em {
  color: var(--green);
  font-style: italic;
}

/* Gaming hero */
.gaming-hero {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    linear-gradient(135deg, #000d00 0%, #001408 40%, #000a05 100%);
  padding: 80px 20px 60px;
  text-align: center;
}

/* ===== GENERIC CONTENT ===== */
.content-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.content-section h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 1.85rem;
  margin-bottom: 22px;
}

.content-section p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.85;
}

.content-section .btn { margin-top: 22px; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 50px 20px 70px;
  max-width: 760px;
  margin: 0 auto;
}

.newsletter-section h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.newsletter-section > p {
  text-align: center;
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-label .req {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 11px 14px;
  background: var(--input-bg);
  border: none;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  color: #222;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--green);
}

textarea { min-height: 115px; resize: vertical; }

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  flex-shrink: 0;
}

.checkbox-row label {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 60px 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: 2.2rem;
  margin-bottom: 26px;
}

.contact-info p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.contact-info strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-icons {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.contact-icons a {
  color: var(--gray);
  font-size: 1.2rem;
  text-decoration: none;
}

.contact-icons a:hover { color: var(--green); }

/* ===== CAREERS ===== */
.careers-header {
  text-align: center;
  padding: 50px 20px 10px;
}

.careers-header h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.career-col h3 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-align: center;
}

.career-col p {
  color: var(--gray);
  font-size: 0.83rem;
  margin-bottom: 10px;
  line-height: 1.6;
}

.career-col p strong { color: var(--white); }

.career-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.career-col ul li {
  color: var(--gray);
  font-size: 0.8rem;
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.5;
}

.career-col ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.vol-only {
  color: var(--green);
  font-style: italic;
  font-size: 0.8rem;
}

/* ===== STORE ===== */
.store-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 20px 40px;
}

.product-card {
  background: var(--card-bg);
  text-align: center;
}

.product-img {
  width: 100%;
  height: 170px;
  background: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin-bottom: 14px;
}

.product-card h3 {
  color: var(--gray);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0 16px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-price {
  color: var(--gray);
  font-size: 0.84rem;
  margin-bottom: 14px;
  padding: 0 16px;
}

.product-price .old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 6px;
}

.product-card .btn { margin: 0 16px 16px; width: calc(100% - 32px); }

.coming-soon-banner {
  text-align: center;
  padding: 20px;
  color: var(--gray);
  font-style: italic;
  font-size: 1rem;
  border-top: 1px solid #4a4a4a;
  margin: 10px 20px 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SOCIAL FEED ===== */
.social-intro {
  text-align: center;
  padding: 30px 20px 10px;
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}

.social-links-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  flex-wrap: wrap;
}

.social-link-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #333;
  padding: 12px 22px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.social-link-pill:hover { background: var(--green); text-decoration: none; color: white; }
.social-link-pill i { font-size: 1.1rem; color: var(--green); }
.social-link-pill:hover i { color: white; }

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px 50px;
}

.social-post {
  background: #444;
  padding: 12px;
}

.social-post .sp-platform {
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-post .sp-img {
  width: 100%;
  height: 130px;
  background: #5a5a5a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.social-post .sp-title {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.social-post .sp-body {
  color: var(--gray);
  font-size: 0.78rem;
  line-height: 1.5;
}

.social-post .sp-date {
  color: #888;
  font-size: 0.72rem;
  margin-top: 8px;
}

/* ===== ADULT SPORTS ===== */
.league-info {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px 20px;
  text-align: center;
}

.league-info h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 22px;
}

.league-info p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.reg-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 30px auto;
}

.reg-card {
  background: var(--bg);
  padding: 20px;
  text-align: center;
  border: 1px solid #4a4a4a;
}

.reg-card h3 {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.reg-card .reg-price {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.reg-card .reg-price .old { text-decoration: line-through; color: #888; margin-left: 6px; }

.standings-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 60px;
  overflow-x: auto;
}

.standings-section h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 6px;
}

.standings-section .season-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

table { width: 100%; border-collapse: collapse; font-size: 0.83rem; }

th {
  background: #222;
  color: var(--green);
  padding: 10px 12px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #444;
}

td {
  padding: 8px 12px;
  border: 1px solid #444;
  text-align: center;
  color: var(--gray);
}

tr:nth-child(even) td { background: #383838; }
tr:nth-child(odd) td { background: #313131; }
td.td-name { text-align: left; font-weight: 600; color: var(--white); }
td.td-hl { background: #eecc00 !important; color: #000 !important; font-weight: 700; }

/* ===== GAMING ===== */
.services-section {
  padding: 60px 20px;
  max-width: 960px;
  margin: 0 auto;
}

.services-section h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 1.85rem;
  text-align: center;
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: #333;
  padding: 28px;
  border-left: 4px solid var(--green);
}

.service-card h3 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.87rem;
  line-height: 1.7;
}

.gaming-mission {
  background: #2e2e2e;
  padding: 60px 20px;
  text-align: center;
}

.gaming-mission h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.gaming-mission p {
  color: var(--gray);
  max-width: 780px;
  margin: 0 auto 14px;
  font-size: 0.93rem;
  line-height: 1.85;
}

/* ===== DONATE BUTTONS ===== */
.donate-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
}

.donate-btn:hover { opacity: 0.82; text-decoration: none; }
.donate-btn i { font-size: 1.15rem; }
.donate-paypal  { background: #003087; color: #fff; }
.donate-cashapp { background: #00d64f; color: #000; }
.form-success { color: var(--green); font-family: 'Exo 2', sans-serif; font-size: 1rem; padding: 20px 0; line-height: 1.6; }

/* ===== BOTTOM FORMS (contact + newsletter) ===== */
.bottom-forms-section {
  background: #2a2a2a;
  padding: 70px 20px 80px;
  border-top: 3px solid var(--green);
}

.bottom-forms-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.bottom-forms-label {
  text-align: center;
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.bottom-forms-label::before,
.bottom-forms-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #4a4a4a;
}

.bottom-forms-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 60px;
  align-items: start;
}

.bottom-forms-vdivider {
  background: #4a4a4a;
  align-self: stretch;
}

.bottom-form-col h2 {
  color: var(--green);
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.bottom-form-col > p {
  color: #999;
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

@media (max-width: 920px) {
  .bottom-forms-grid { grid-template-columns: 1fr; gap: 40px 0; }
  .bottom-forms-vdivider { height: 1px; width: 100%; }
}

/* ===== DIVIDER ===== */
hr.divider {
  border: none;
  border-top: 1px solid #4a4a4a;
}

/* ===== FOOTER ===== */
footer {
  background: #252525;
  padding: 36px 20px 24px;
  text-align: center;
  color: #777;
  font-size: 0.82rem;
  border-top: 1px solid #3a3a3a;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 14px;
}

.footer-links a { color: var(--green); font-size: 0.83rem; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-social a { color: var(--gray); text-decoration: none; }
.footer-social a:hover { color: var(--green); }

.footer-copy { color: #555; font-size: 0.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 920px) {
  .nav-left { display: none; }
  .hamburger { display: flex; }
  .site-logo { font-size: 1.4rem; }
  .cards-grid, .future-grid { grid-template-columns: 1fr 1fr; }
  .careers-grid { grid-template-columns: 1fr 1fr; }
  .store-products { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .social-feed-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 2.2rem; }
  .sports-hero-title { font-size: 2.4rem; }
}

@media (max-width: 600px) {
  .cards-grid, .future-grid { grid-template-columns: 1fr; max-width: 380px; }
  .careers-grid { grid-template-columns: 1fr; }
  .store-products { grid-template-columns: 1fr; max-width: 340px; }
  .form-row { grid-template-columns: 1fr; }
  .social-feed-grid { grid-template-columns: 1fr; max-width: 340px; }
  .page-hero-title { font-size: 1.7rem; flex-direction: column; gap: 4px; align-items: center; }
  .home-hero h1 { font-size: 1.65rem; }
  .sports-hero-title { font-size: 1.8rem; }
  .reg-cards { padding: 0; }
}
