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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #070707;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
#cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 18px;
  color: #FF0055;
  transform: translate(-50%, -50%);
  transition: left 0.05s, top 0.05s;
  filter: drop-shadow(0 0 6px #FF0055);
  line-height: 1;
}

:root {
  --pink: #FF0055;
  --pink-dim: rgba(255,0,85,0.12);
  --cyan: #00FFD1;
  --dark: #070707;
  --card: #0f0f0f;
  --card2: #141414;
  --border: rgba(255,0,85,0.18);
  --border-w: rgba(255,255,255,0.06);
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--pink); }

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(7,7,7,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  transition: all 0.3s;
}
#navbar.scrolled { height: 58px; background: rgba(4,4,4,0.98); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-sym {
  width: 42px; height: 42px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--pink);
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  filter: drop-shadow(0 0 8px rgba(255,0,85,0.5));
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--pink);
  letter-spacing: 4px;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255,0,85,0.4));
}
.nav-logo-year {
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  color: #555;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
}
.nav-links li a {
  display: block;
  padding: 8px 18px;
  color: #777;
  text-decoration: none;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links li a:hover, .nav-links li a.active { color: #fff; }
.nav-links li a:hover::after, .nav-links li a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--pink);
  color: white;
  border: none;
  padding: 10px 24px;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  white-space: nowrap;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 15px rgba(255,0,85,0.3); }
  50% { box-shadow: 0 0 30px rgba(255,0,85,0.6); }
}
.nav-cta:hover { background: #cc0044; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span { width: 22px; height: 2px; background: var(--pink); transition: all 0.3s; display: block; }

#mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(5,5,5,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  color: #666;
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--pink); }

/* PAGE HEADER (inner pages) */
.page-header {
  padding: 140px 3rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(255,0,85,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,0,85,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,0,85,0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}
.page-tag {
  display: inline-block;
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  color: var(--pink);
  letter-spacing: 5px;
  border: 1px solid rgba(255,0,85,0.3);
  padding: 5px 16px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.page-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}
.page-title span { color: var(--pink); }
.page-sub {
  font-size: 1rem;
  color: #555;
  margin-top: 1rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* SECTION UTILS */
.wrap { max-width: 1200px; margin: 0 auto; padding: 5rem 3rem; }
.wrap-sm { max-width: 860px; margin: 0 auto; padding: 5rem 3rem; }

.sec-eye {
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  color: var(--pink);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-eye::before { content: ''; width: 18px; height: 1px; background: var(--pink); }
.sec-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.sec-title .accent { color: var(--pink); }
.sec-desc { color: #666; font-size: 1rem; line-height: 1.8; max-width: 580px; }

/* BUTTONS */
.btn-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: white;
  border: none;
  padding: 13px 32px;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-pink:hover { background: #cc0044; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 13px 32px;
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }

/* DIVIDER */
.sym-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 3rem;
}
.sym-divider-line { flex: 1; height: 1px; background: var(--border); }
.sym-divider-icons { display: flex; gap: 14px; font-size: 1rem; color: rgba(255,0,85,0.25); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* FOOTER */
footer {
  background: #030303;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--pink);
  letter-spacing: 5px;
  display: block;
  margin-bottom: 4px;
}
.footer-year {
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  color: #333;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.2rem;
}
.footer-about { font-size: 0.88rem; color: #3a3a3a; line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.soc-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,0,85,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #444; font-size: 0.75rem; text-decoration: none;
  transition: all 0.2s;
  font-family: 'Orbitron', monospace;
}
.soc-btn:hover { border-color: var(--pink); color: var(--pink); }
.footer-col h5 {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  color: var(--pink);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: #3a3a3a;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 1.2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.75rem; color: #252525; letter-spacing: 1px; }
.footer-sym { font-family: 'Orbitron', monospace; font-size: 0.58rem; color: rgba(255,0,85,0.2); letter-spacing: 4px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wrap, .wrap-sm { padding: 4rem 1.5rem; }
  body { cursor: auto; }
  #cursor { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
}
