
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root{
  --fcc-orange:#EC7700;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#101010;
  color:white;
}

.topbar{
  height:92px;
  display:grid;
  grid-template-columns:180px 1fr;
  align-items:center;
  padding:0 28px;
  background:#EC7700;
  position:sticky;
  top:0;
}

.logo-wrap{
  display:flex;
  align-items:center;
}

.main-logo{
  height:74px;
}

nav{
  display:flex;
  justify-content:center;
  gap:38px;
  font-weight:800;
  text-transform:uppercase;
}

nav a{
  text-decoration:none;
  color:white;
  padding:35px 0 18px;
  border-bottom:3px solid transparent;
}

nav a:hover,
nav a.active{
  border-color:white;
}

.hero{
  max-width:1280px;
  margin:40px auto;
  display:grid;
  grid-template-columns:1.35fr .85fr;
  gap:30px;
  padding:0 28px;
}

.video-frame{
  background:#EC7700;
  padding:16px;
}

.video-frame iframe{
  width:100%;
  min-height:360px;
  border:none;
}

.notes{
  display:grid;
}

.note{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:18px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  text-decoration:none;
  color:white;
}

.thumb{
  width:96px;
  height:82px;
  background:linear-gradient(135deg,#EC7700,#181818);
  color:white;
  display:grid;
  place-items:center;
  font-weight:900;
}

.note h3{
  font-size:21px;
  text-transform:uppercase;
  font-weight:900;
}

.sponsor-band{
  background:#EC7700;
  color:white;
  min-height:88px;
  display:grid;
  place-items:center;
  font-size:48px;
  font-weight:900;
}

.ticker{
  background:#111;
  color:#EC7700;
  padding:10px 0;
  font-size:42px;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
}

.section{
  max-width:1280px;
  margin:50px auto;
  padding:0 28px;
}

.section-title{
  border-bottom:2px solid #EC7700;
  margin-bottom:22px;
  padding-bottom:12px;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.quick-card{
  background:#181818;
  color:white;
  text-decoration:none;
  border-radius:18px;
  padding:24px;
  border-bottom:6px solid #EC7700;
}

.quick-card b{
  display:block;
  color:#EC7700;
  font-size:38px;
  margin-bottom:12px;
}

.quick-card span{
  font-weight:700;
  text-transform:uppercase;
}
