:root{
  --ff-blue:#00b7ff;
  --ff-blue-soft:#40a0ff;
  --bg-dark:#020311;
  --panel-bg:#050513;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  background:#000;
  color:#e8ecff;
  font-family: "Times New Roman", Georgia, serif;
}

body{
  background-image:url('flashforce_tile.png');
  background-size:256px 256px;
  background-repeat:repeat;
  background-attachment:fixed;
}

.page-wrap{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:1.5rem 0 3rem;
}

.site-header{
  text-align:center;
  margin-bottom:1.5rem;
}

.logo{
  margin:0 0 0.75rem;
  font-size:3.2rem;
  font-weight:900;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--ff-blue-soft);
  text-shadow:0 0 12px var(--ff-blue-soft), 0 0 28px #000;
}

.main-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.75rem;
}

.nav-link{
  padding:0.4rem 0.9rem;
  border:2px solid var(--ff-blue);
  border-radius:4px;
  background:rgba(0,0,0,0.85);
  color:var(--ff-blue-soft);
  text-decoration:none;
  font-weight:bold;
  box-shadow:0 0 10px rgba(0,0,0,0.8), 0 0 12px rgba(0,150,255,0.5);
}

.nav-link:hover{
  background:rgba(0,40,80,0.95);
  text-shadow:0 0 6px var(--ff-blue-soft);
}

.content-frame{
  margin-top:1.5rem;
  width: min(960px, 90vw);
  background:radial-gradient(circle at top, #151533 0, #050512 55%, #000 100%);
  border:2px solid var(--ff-blue-soft);
  box-shadow:0 0 35px rgba(0,0,0,0.9), 0 0 20px rgba(0,180,255,0.7);
}

.inner{
  padding:1.75rem 2.25rem 2rem;
  background:radial-gradient(circle at top, #09091b 0, #050512 55%, #020309 100%);
}

.tagline{
  margin-top:0;
  font-style:italic;
  color:#f4e9ff;
  text-shadow:0 0 4px #000;
}

h2{
  margin-top:0;
  letter-spacing:0.18em;
  font-size:1.1rem;
}

p, li{
  font-size:0.98rem;
  line-height:1.6;
}

hr{
  border:0;
  border-top:2px dotted rgba(100,100,255,0.6);
  margin:1.5rem 0;
}

a{
  color:var(--ff-blue-soft);
}

a:hover{
  color:#fff;
}

.live-button{
  display:inline-block;
  padding:0.45rem 1.2rem;
  border-radius:999px;
  border:2px solid #ff3b3b;
  background:linear-gradient(90deg,#4a0000,#ff3b3b);
  color:#fff;
  text-decoration:none;
  font-weight:bold;
  text-shadow:0 0 5px #000;
  box-shadow:0 0 16px rgba(255,0,0,0.7);
}

.live-button:hover{
  filter:brightness(1.1);
}

.warning{
  font-size:0.9rem;
  color:#f4e9ff;
  opacity:0.9;
}

.thanks{
  margin-top:2rem;
  text-align:center;
}

.thanks-bar{
  height:4px;
  width:60%;
  margin:0 auto 0.5rem;
  background:linear-gradient(90deg, transparent, var(--ff-blue-soft), transparent);
  box-shadow:0 0 16px rgba(0,180,255,0.9);
}

.thanks p{
  margin:0;
  font-weight:bold;
}

/* Mobile tweaks */
@media (max-width:700px){
  .logo{
    font-size:2.4rem;
  }
  .inner{
    padding:1.25rem 1.1rem 1.6rem;
  }
  .main-nav{
    gap:0.5rem;
  }
}

/* Custom 90s cursor */
body{
  cursor:url('cursor-90s.png') 0 0, auto;
}

/* Sticky header so navigation is always reachable */
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  padding-bottom:0.75rem;
  margin-bottom:1.25rem;
  background:radial-gradient(circle at top, rgba(5,5,25,0.92) 0, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0)) ;
  backdrop-filter:blur(4px);
}

/* Neon blue section headers */
h2{
  margin-top:0;
  letter-spacing:0.18em;
  font-size:1.1rem;
  color:var(--ff-blue-soft);
  text-shadow:0 0 6px rgba(64,160,255,0.9), 0 0 14px rgba(64,160,255,0.7);
  text-transform:uppercase;
}

/* Make links also use the custom cursor */
a, .nav-link, .live-button{
  cursor:url('cursor-90s.png') 0 0, pointer;
}

/* Simple responsive embeds */
.embed-wrapper{
  position:relative;
  width:100%;
  padding-top:56.25%; /* 16:9 */
  margin:0.75rem 0 0.5rem;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 0 18px rgba(0,0,0,0.8);
}

.embed-wrapper iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Merch grid */
.merch-grid{
  display:flex;
  flex-wrap:wrap;
  gap:1.25rem;
  margin-top:0.75rem;
}

.merch-item{
  flex:1 1 220px;
  text-align:center;
}

.merch-item img{
  max-width:100%;
  border-radius:6px;
  box-shadow:0 0 18px rgba(0,0,0,0.75);
  display:block;
  margin:0 auto 0.35rem;
}

.merch-item a{
  display:inline-block;
  margin-top:0.1rem;
  font-weight:bold;
}
