@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');

:root {
  --pink: #f951a2;
  --blue: #60afff;
  --lime: #b9ef25;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #f5f5f5;
  --gray: #888888;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Afacad Flux', sans-serif;
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease, background 0.2s ease;
  mix-blend-mode: screen;
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s ease, left 0.12s ease, top 0.12s ease;
  mix-blend-mode: screen;
}

/* NOISE TEXTURE OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185,239,37,0.15);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.6rem 2.5rem;
  border-bottom-color: rgba(249,81,162,0.3);
}

.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(96,175,255,0.5));
  transition: filter 0.3s ease;
}

.nav-logo img:hover {
  filter: drop-shadow(0 0 14px var(--pink));
}

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

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--pink);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV OVERLAY */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.mobile-nav a:hover { color: var(--pink); }

/* PAGE CONTENT */
.page-content {
  padding-top: 80px;
  min-height: 100vh;
}

/* SECTION TITLES */
.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}

.title-pink { color: var(--pink); }
.title-blue { color: var(--blue); }
.title-lime { color: var(--lime); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: 'Afacad Flux', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-pink {
  background: var(--pink);
  color: var(--dark);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-pink:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249,81,162,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border: 2px solid var(--lime);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-outline:hover {
  background: var(--lime);
  color: var(--dark);
  transform: translateY(-2px);
}

/* DECORATIVE STAR */
.deco-star {
  display: inline-block;
  color: var(--lime);
  font-size: 1.2em;
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(185,239,37,0.15);
  padding: 3rem 2.5rem 2rem;
  text-align: center;
}

footer .footer-logo img {
  height: 60px;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(185,239,37,0.3);
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

footer .social-links a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--dark);
  transform: translateY(-3px);
}

footer p {
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

footer p span { color: var(--pink); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(249,81,162,0.3); }
  50% { box-shadow: 0 0 30px rgba(249,81,162,0.7); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HALFTONE BACKGROUND DECO */
.halftone-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  background-image: radial-gradient(circle, var(--blue) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* GRID PATTERN */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(185,239,37,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,239,37,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  nav {
    padding: 1rem 1.5rem;
  }
  
  footer {
    padding: 2rem 1.5rem 1.5rem;
  }
}
