/* Import Modern Font */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
  --blue: #00d2ff;
  --glass: rgba(15, 20, 35, 0.85);
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #cbd5e1;
  --bg-image: url('https://raw.githubusercontent.com/code-andrewy/jumpman64beta/refs/heads/main/charlie-brown-snoopy-stargazing-desktop-wallpaper-preview.jpg');
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body { 
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--bg-image);
  background-size: cover; background-position: center; background-attachment: fixed;
  color: var(--text); overflow-x: hidden; min-height: 100vh;
}

/* --- Header & Navigation --- */
header {
  width: 100%; position: fixed; top: 0; left: 0;
  background: transparent; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 1000; transition: all 0.4s ease; border-bottom: 1px solid transparent;
}

/* Bug Fix: Add solid background on scroll */
header.scrolled { 
  background: var(--glass); 
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 5%; }

.logo { 
  font-size: 1.5rem; color: #fff; font-weight: 800; 
  display: flex; align-items: center; gap: 0.6rem; letter-spacing: -0.5px;
}
.logo span { color: var(--blue); }

.nav-links { list-style: none; display: flex; gap: 0.8rem; }

.nav-links li a {
  color: var(--muted); text-decoration: none; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem;
  padding: 0.6rem 1.2rem; border-radius: 999px; transition: all 0.3s ease;
  border: 1px solid transparent;
}

.nav-links li a:hover { 
  background: rgba(0, 210, 255, 0.1); 
  color: var(--blue); 
  border-color: rgba(0, 210, 255, 0.2);
}

.nav-links li a.active {
  background: var(--blue); color: #0f1423; 
  box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3);
}

/* --- Hero Section --- */
.hero { 
  height: 100vh; display: flex; justify-content: center; 
  align-items: center; text-align: center; padding: 0 10%; 
}

.hero-content { 
  animation: fadeIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; 
  max-width: 800px; background: var(--glass); padding: 50px;
  border-radius: 40px; border: 1px solid var(--border);
  backdrop-filter: blur(20px);
}

.pill-status {
  display: inline-block; background: rgba(0, 210, 255, 0.1); color: var(--blue);
  padding: 6px 16px; border-radius: 9999px; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; border: 1px solid rgba(0, 210, 255, 0.2); margin-bottom: 20px;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; font-weight: 800; letter-spacing: -2px; line-height: 1.1; }
.hero h1 span { color: var(--blue); text-shadow: 0 0 20px rgba(0, 210, 255, 0.4); }
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; font-weight: 500; }

/* --- Buttons --- */
.btn {
  background: var(--blue); color: #0f1423; padding: 1rem 2.5rem; border-radius: 999px;
  text-decoration: none; font-weight: 800; box-shadow: 0 10px 25px rgba(0, 210, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); 
  display: inline-flex; align-items: center; gap: 0.8rem; font-size: 1rem;
}

.btn:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 15px 30px rgba(0, 210, 255, 0.5); }

/* --- Iframe container --- */
#iframe-container { width: 100%; height: 100vh; display: none; padding-top: 80px; }
iframe { width: 100%; height: 100%; border: none; border-radius: 20px; }

/* --- Footer --- */
footer { 
  text-align: center; padding: 40px; 
  background: transparent; color: var(--muted); 
}

.footer-pill {
  display: inline-block; background: var(--glass); backdrop-filter: blur(10px);
  padding: 12px 24px; border-radius: 9999px; border: 1px solid var(--border);
  font-weight: 600; font-size: 0.9rem;
}

.footer-pill a { color: var(--blue); text-decoration: none; font-weight: 800; }
.footer-pill a:hover { text-decoration: underline; }

/* --- Animations --- */
@keyframes fadeIn { 
  from { opacity: 0; transform: translateY(30px); } 
  to { opacity: 1; transform: translateY(0); } 
}
