:root {
  --gold:        #FFD700;
  --gold-light:  #FFE55C;
  --gold-dark:   #C9A000;
  --red:         #CC0000;
  --red-bright:  #FF1A1A;
  --navy:        #001D4A;
  --navy-mid:    #002966;
  --navy-light:  #003580;
  --dark:        #050D1A;
  --darker:      #020810;
  --white:       #FFFFFF;
  --off-white:   #F0F4FF;
  --text-muted:  #8899BB;
  --card-bg:     rgba(0, 30, 80, 0.6);
  --card-border: rgba(255, 215, 0, 0.15);
  --glass:       rgba(0, 20, 60, 0.7);

  --page-padding:   clamp(10px, 4vw, 5%);
  --body-min-margin: 5px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--darker);
  color: var(--white);
  overflow-x: hidden;
  padding: 0 var(--body-min-margin);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button { cursor: pointer; }

p { line-height: 1.8; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--gold-light); }

/* ============================================================
   PARTICLES
   ============================================================ */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ============================================================
   NAVBAR  (identical to aboutus.css)
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--page-padding);
  background: rgba(2, 8, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px !important;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.3));
  transition: filter 0.2s;
}

.nav-logo-img:hover {
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold), var(--white), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--off-white);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.05);
}

.nav-links a.active {
  color: var(--gold);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.08);
}

.blog-nav-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 229, 92, 0.08));
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
    animation: blog-glow-pulse 1.8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
  }

  .blog-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s;
  }

  .blog-nav-btn:hover::before {
    left: 100%;
  }

  .blog-nav-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.7);
    transform: scale(1.02);
  }

  @keyframes blog-glow-pulse {
    0% {
      box-shadow: 0 0 4px rgba(255, 215, 0, 0.4);
      border-color: rgba(255, 215, 0, 0.6);
    }
    50% {
      box-shadow: 0 0 14px rgba(255, 215, 0, 0.8);
      border-color: var(--gold);
    }
    100% {
      box-shadow: 0 0 4px rgba(255, 215, 0, 0.4);
      border-color: rgba(255, 215, 0, 0.6);
    }
  }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SHARED SECTION LAYOUT
   ============================================================ */
section {
  position: relative;
  z-index: 5;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--page-padding);
}

/* ============================================================
   LEGAL HERO  (compact version of about-hero)
   ============================================================ */
#legal-hero {
  min-height: 56vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 130px clamp(10px, 4vw, 40px) 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,  rgba(0, 50, 150, 0.6)  0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 100%, rgba(204, 0, 0, 0.25)  0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(0, 100, 200, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #020810 0%, #001230 40%, #020810 100%);
  z-index: 1;
}

.hero-pitch-lines {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(0deg,  transparent, transparent 59px, rgba(255,255,255,0.5) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.5) 60px);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  animation: fadeUp 0.9s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.6rem, 2vw, 0.78rem);
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.92;
  letter-spacing: 4px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.legal-word {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--text-muted);
  letter-spacing: 10px;
  text-transform: uppercase;
}

.site-name {
  font-size: clamp(2.6rem, 8vw, 6rem);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 3s linear infinite, fadeUp 0.8s ease forwards 0.4s;
  letter-spacing: 2px;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.55s;
}

.hero-subtitle strong { color: var(--gold); }

.hero-meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.68rem, 2vw, 0.85rem);
  letter-spacing: 2px;
  color: var(--off-white);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-meta-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 20px;
  padding: 8px 18px;
}

.hero-meta-strip i {
  color: var(--gold);
}

/* ============================================================
   LEGAL CONTENT
   ============================================================ */
#legal-content {
  background: linear-gradient(180deg, #020810 0%, #001230 50%, #020810 100%);
}

.legal-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 64px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
}

.legal-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.legal-intro {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--off-white);
  line-height: 1.85;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.legal-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-top: clamp(36px, 5vw, 52px);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.legal-wrap h2:first-of-type {
  margin-top: 0;
}

.legal-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--off-white);
  margin-top: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
}

.legal-wrap h3::before {
  content: '◆ ';
  color: var(--gold);
  font-size: 0.7em;
}

.legal-wrap p {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-wrap p:last-child {
  margin-bottom: 0;
}

.legal-wrap strong {
  color: var(--off-white);
  font-weight: 600;
}

.legal-wrap a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-word;
}

.legal-wrap a:hover {
  color: var(--gold-light);
}

.legal-wrap ul {
  list-style: none;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-wrap ul li {
  position: relative;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.85;
  padding: 12px 16px 12px 38px;
  background: rgba(0, 20, 60, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.legal-wrap ul li:hover {
  border-color: rgba(255, 215, 0, 0.25);
  background: rgba(0, 30, 90, 0.6);
}

.legal-wrap ul li::before {
  content: '⚽';
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ============================================================
   CONTACT CTA  (identical to aboutus.css)
   ============================================================ */
#contact-cta {
  background: linear-gradient(180deg, #020810 0%, #001230 60%, #020810 100%);
}

.cta-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.62rem, 2vw, 0.72rem);
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.cta-body {
  font-size: clamp(0.86rem, 2vw, 1rem);
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 580px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.25);
}

.cta-btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 12px 36px rgba(255, 215, 0, 0.35);
  transform: translateY(-2px);
  color: var(--dark);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.4);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER  (identical to aboutus.css)
   ============================================================ */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  position: relative;
  z-index: 5;
  padding: clamp(36px, 6vw, 60px) var(--page-padding) 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-col {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-nav-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.63rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  display: block;
}

.footer-nav a:hover { color: var(--gold); }

.footer-nav a.active { color: var(--gold); }

.footer-brand-col {
  flex: 0 0 auto;
  align-items: flex-start;
  text-align: left;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.3));
}

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.9;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: rgba(136, 153, 187, 0.5);
  letter-spacing: 0.5px;
  text-align: center;
}

.footer-bottom-sep { opacity: 0.3; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablets portrait (768px and below) */
@media (max-width: 768px) {
  :root {
    --page-padding: clamp(10px, 4vw, 24px);
  }

  /* Hamburger nav */
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(2, 8, 16, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    flex-direction: column;
    padding: 14px var(--page-padding);
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-nav-col { align-items: flex-start; }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
  }

  .footer-bottom-sep { display: none; }

  .legal-wrap {
    padding: clamp(24px, 6vw, 40px);
  }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
  :root {
    --page-padding: 12px;
  }

  /* CTA buttons: stack */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .legal-wrap h2 {
    letter-spacing: 1.5px;
  }
}

/* Very small phones (380px and below) */
@media (max-width: 380px) {
  .legal-wrap {
    padding: 20px;
  }

  .legal-wrap h2 {
    font-size: 1.35rem;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Touch devices: minimum tap targets */
@media (hover: none) and (pointer: coarse) {
  .cta-btn,
  .nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}