:root {
  --void: #050505;
  --acid: #39ff14;
  --neon-yellow: #d4ff00;
  --text-primary: #e8e8e8;
  --text-dim: #666666;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --acid-glow: 0 0 40px rgba(57, 255, 20, 0.6), 0 0 80px rgba(57, 255, 20, 0.3);
}

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

html, body {
  height: 100%;
  width: 100%;
}

body {
  background-color: var(--void);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

.loader {
  position: fixed;
  inset: 0;
  background: var(--void);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(3rem, 10vw, 4rem);
  font-weight: 900;
  color: var(--acid);
  text-shadow: var(--acid-glow);
  animation: pulse 1s ease-in-out infinite;
  letter-spacing: 0.2em;
}

.loader-bar {
  width: min(200px, 60vw);
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--neon-yellow), var(--acid));
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 100;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(10px);
}

.nav-logo {
  font-family: 'Syncopate', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--acid);
  text-decoration: none;
  letter-spacing: 0.15em;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--acid);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--acid);
  transition: all 0.3s;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1.5rem;
  width: 100%;
  max-width: 100vw;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.5vw, 1rem);
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-lily,
.title-st,
.title-drake {
  font-family: 'Syncopate', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 10vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.title-lily { color: var(--acid); text-shadow: var(--acid-glow); }
.title-st { color: var(--neon-yellow); }
.title-drake { color: var(--acid); text-shadow: var(--acid-glow); }

.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 2.5vw, 0.9rem);
  letter-spacing: 0.25em;
  color: var(--acid);
  margin-top: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}

.hero-social-btn {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.3rem;
  transition: color 0.3s, border-color 0.3s, text-shadow 0.3s, transform 0.2s;
  z-index: 10;
  position: relative;
}

.hero-social-btn:hover {
  color: var(--acid);
  border-color: var(--acid);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
  transform: translateY(-2px);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  200% { background-position: 200% 0; }
}

/* Section Styles */
.section {
  padding: 6rem 2rem;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--acid);
  text-shadow: var(--acid-glow);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}

.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 2rem;
}

/* Gallery Section */
.gallery-section {
  background: var(--void);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(57, 255, 20, 0.1);
  transition: border-color 0.3s, transform 0.3s;
}

.gallery-item:hover {
  border-color: var(--acid);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Videos Section */
.videos-section {
  background: linear-gradient(180deg, var(--void) 0%, rgba(57, 255, 20, 0.02) 50%, var(--void) 100%);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.video-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: filter 0.3s;
}

.video-item:hover img {
  filter: grayscale(0%);
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.7);
}

.video-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--acid);
  animation: pulse 2s ease-in-out infinite;
}

/* About Section */
.about-section {
  background: var(--void);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text h3 {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--acid);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, var(--void) 0%, rgba(57, 255, 20, 0.02) 50%, var(--void) 100%);
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-info h3 {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--acid);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.contact-email {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--acid);
  text-decoration: none;
  border-bottom: 2px solid var(--acid);
  padding-bottom: 0.3rem;
  transition: all 0.3s;
  display: inline-block;
  margin-bottom: 2rem;
}

.contact-email:hover {
  color: var(--neon-yellow);
  border-color: var(--neon-yellow);
  text-shadow: 0 0 10px rgba(212, 255, 0, 0.5);
}

.contact-social {
  margin-top: 2rem;
}

.social-link {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  transition: all 0.3s;
  display: inline-block;
}

.social-link:hover {
  color: var(--acid);
  border-color: var(--acid);
  background: rgba(57, 255, 20, 0.1);
}

/* Footer */
.footer {
  background: rgba(5, 5, 5, 0.95);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Syncopate', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--acid);
  letter-spacing: 0.15em;
}

.footer-social-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-social-link:hover {
  color: var(--acid);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 2px solid var(--acid);
  box-shadow: var(--acid-glow);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--acid);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.3s, transform 0.3s;
  z-index: 10001;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--neon-yellow);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }


  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
}
