@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Inter:wght@400;600;800&display=swap');

:root{
  --bb-blue:#0046AD; --bb-blue-dark:#002C6A; --bb-yellow:#FFD200;
  --bg:#021b46; --card:#0b2a63; --text:#f8fafc; --muted:#dbe6ff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#021b46,#05245a 60%,#041a43)
}
a{color:var(--bb-yellow); text-decoration:none}
.container{max-width:1040px; margin:0 auto; padding:24px}

/* Header */
header{
  background:var(--bb-blue);
  border-bottom:6px solid var(--bb-yellow);
  position:relative; overflow:visible;
}
.nav{
  max-width:1040px; margin:0 auto;
  padding:14px 24px 14px 170px;
  display:flex; align-items:center; justify-content:space-between;
  position:relative; min-height:90px;
}
.brand{
  position:absolute; left:24px; top:50%; transform:translateY(-50%);
  z-index:10; line-height:0;
}
.brand img{
  height:200px; display:block; pointer-events:none;
  filter: drop-shadow(0 2px 0 rgba(0,0,0,.25));
}
.tagline {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: center;
  color:#fff; font-weight:800; font-size:16px;
  background:rgba(0,0,0,.25); padding:6px 14px; border-radius:6px;
  z-index:5;
}

/* Hero */
.hero{padding:56px 0 16px; text-align:center}
h1{
  font-family:'Alfa Slab One',serif; font-size:46px; line-height:1.05;
  margin:0 0 10px; color:var(--bb-yellow);
  text-shadow:3px 3px 0 var(--bb-blue-dark)
}
.lead{color:var(--muted); font-size:18px; margin:0 auto 18px; max-width:780px}

/* Buttons */
.cta{display:flex; gap:12px; justify-content:center; flex-wrap:wrap}
.btn{display:inline-block; font-weight:800; border:none; cursor:pointer; padding:12px 18px; border-radius:8px}
.btn.primary{background:var(--bb-yellow); color:var(--bb-blue-dark); box-shadow:0 3px 0 rgba(0,0,0,.3)}
.btn.secondary{background:var(--bb-blue); color:#fff; border:1px solid var(--bb-blue-dark)}
.ticket{position:relative; border:2px dashed var(--bb-yellow); background:transparent; color:var(--bb-yellow)}
.ticket::before,.ticket::after{content:""; position:absolute; width:14px; height:14px; background:transparent; border:2px solid var(--bb-yellow); border-radius:50%}
.ticket::before{left:-8px; top:50%; transform:translateY(-50%)}
.ticket::after{right:-8px; top:50%; transform:translateY(-50%)}

/* Sections */
.section{padding:38px 0}
h2{font-family:'Alfa Slab One',serif; color:var(--bb-yellow); margin:0 0 10px; text-align:center}
.grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:16px}
.card{background:var(--card); border:1px solid var(--bb-blue-dark); border-radius:12px; padding:18px; text-align:center; box-shadow:0 4px 0 rgba(0,0,0,.35); font-weight:800}
.muted{color:var(--muted)}

/* Goal Images */
.goal-images{display:flex; justify-content:center; flex-wrap:wrap; gap:20px; margin-top:20px}
.goal-images img{max-width:300px; border-radius:12px; border:3px solid var(--bb-yellow); box-shadow:0 4px 0 rgba(0,0,0,.35)}

/* Video Banner */
.video-banner{ text-align:center; padding:12px 0 0; }
.video-banner video{
  width:100%; max-width:1040px; height:auto;
  border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,.4);
  display:block; margin:0 auto;
}
.visually-hidden{
  position:absolute !important; height:1px; width:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); white-space:nowrap;
}

/* Footer */
footer{background:var(--bb-blue-dark); color:var(--bb-yellow); text-align:center; padding:18px; font-family:'Alfa Slab One',serif}

@media (max-width:720px){
  h1{font-size:36px}
  .brand img{height:70px}
  .nav{padding-left:130px; min-height:72px}
}
