:root {
  --primary: #050505;
  --secondary: #0f0f0f;
  --accent: #00ff88;
  --accent-blue: #00ccff;
  --text: #ffffff;
  --text-dim: #999999;
  --gradient: linear-gradient(135deg, #00ff88 0%, #00ccff 100%);
  --glow: 0 0 20px rgba(0, 255, 136, 0.3);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Page-specific backgrounds - Photos more visible */
.press-page {
  background: linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.6)), url('/images/lasers-blue.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.events-page-body {
  background: linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.6)), url('/images/crowd-august.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.newsletter-page-body {
  background: linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.6)), url('/images/crowd-glow.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Animated background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 204, 255, 0.03) 0%, transparent 50%);
  animation: backgroundPulse 20s ease-in-out infinite;
  z-index: -1;
}

@keyframes backgroundPulse {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 5%) scale(1.1); }
}

/* Header & Navigation */
header {
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  text-shadow: var(--glow);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4)); }
  50% { filter: drop-shadow(0 0 16px rgba(0, 255, 136, 0.6)); }
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

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

/* Footer */
footer {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 5rem;
  background: linear-gradient(to top, rgba(0, 255, 136, 0.02), transparent);
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* Links Page (Homepage) */
.links-page {
  background: linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.6)), url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  animation: heroPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  animation: titleFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.4));
}

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

.tagline {
  font-size: 1.4rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.links-container {
  max-width: 650px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.link-button {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.link-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
  transition: left 0.5s ease;
}

.link-button:hover::before {
  left: 100%;
}

.link-button:hover {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 204, 255, 0.15) 100%);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3),
              0 0 20px rgba(0, 255, 136, 0.2);
}

.link-button.secondary {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(15, 15, 15, 0.8);
}

.link-button.secondary:hover {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
}

.link-button i {
  font-size: 1.75rem;
  min-width: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

/* Social Media Brand Colors */
.fa-youtube {
  color: #FF0000;
  filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

.fa-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(253, 89, 73, 0.6));
}

.fa-tiktok {
  color: #000000;
  filter: drop-shadow(0 0 8px rgba(0, 243, 255, 0.6)) drop-shadow(0 0 8px rgba(254, 44, 85, 0.6));
}

.fa-facebook {
  color: #1877F2;
  filter: drop-shadow(0 0 8px rgba(24, 119, 242, 0.6));
}

.fa-envelope {
  color: var(--accent);
  filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.5));
}

.fa-file-lines,
.fa-calendar-days {
  color: var(--accent-blue);
  filter: drop-shadow(0 0 5px rgba(0, 204, 255, 0.5));
}

.link-button:hover .fa-youtube {
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
}

.link-button:hover .fa-instagram {
  filter: drop-shadow(0 0 15px rgba(253, 89, 73, 0.8));
}

.link-button:hover .fa-tiktok {
  filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.8)) drop-shadow(0 0 15px rgba(254, 44, 85, 0.8));
}

.link-button:hover .fa-facebook {
  filter: drop-shadow(0 0 15px rgba(24, 119, 242, 0.8));
}

.link-button:hover .fa-envelope {
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.8));
}

.link-button:hover .fa-file-lines,
.link-button:hover .fa-calendar-days {
  filter: drop-shadow(0 0 12px rgba(0, 204, 255, 0.8));
}

/* Press Kit Page */
.press-kit {
  padding: 3rem 0;
}

.press-kit h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
  animation: fadeInUp 0.8s ease;
}

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

.press-kit section {
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.press-kit section:nth-child(2) { animation-delay: 0.1s; }
.press-kit section:nth-child(3) { animation-delay: 0.2s; }
.press-kit section:nth-child(4) { animation-delay: 0.3s; }
.press-kit section:nth-child(5) { animation-delay: 0.4s; }

.press-kit section:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 48px rgba(0, 255, 136, 0.2);
  transform: translateY(-4px);
}

.press-kit h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.press-kit h3 {
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.bio-content p {
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.bio-content strong {
  color: var(--accent);
  font-weight: 700;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fact {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 204, 255, 0.08) 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
}

.fact:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.2);
  border-color: var(--accent);
}

.fact h3 {
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent-blue);
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.press-kit ul {
  list-style: none;
  padding-left: 1rem;
}

.press-kit ul li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
}

.press-kit ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.9rem;
}

/* Events Page */
.events-page h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
  animation: fadeInUp 0.8s ease;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.event-card {
  display: flex;
  gap: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease;
}

.event-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 255, 136, 0.3);
}

.event-card.featured {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
  box-shadow: 0 12px 48px rgba(0, 255, 136, 0.2),
              0 0 60px rgba(0, 255, 136, 0.1);
  animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
  0%, 100% {
    box-shadow: 0 12px 48px rgba(0, 255, 136, 0.2), 0 0 60px rgba(0, 255, 136, 0.1);
  }
  50% {
    box-shadow: 0 16px 64px rgba(0, 255, 136, 0.3), 0 0 80px rgba(0, 255, 136, 0.15);
  }
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.event-date .month {
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
}

.event-date .day {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin: 0.25rem 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-date .year {
  color: var(--text-dim);
  font-size: 1rem;
  font-weight: 600;
}

.event-details h2 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.venue {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.description {
  line-height: 1.7;
  font-size: 1.05rem;
}

.event-meta {
  margin-top: 1.5rem;
}

.event-type {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 255, 136, 0.2);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 255, 136, 0.4);
}

.no-events-message {
  text-align: center;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.no-events-message p {
  font-size: 1.2rem;
  color: var(--text-dim);
}

.social-quick-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-quick-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.social-quick-links a:hover {
  color: var(--accent-blue);
  background: rgba(0, 255, 136, 0.1);
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Newsletter Page */
.newsletter-page h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
  animation: fadeInUp 0.8s ease;
}

.intro {
  font-size: 1.3rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.newsletter-form-container {
  max-width: 750px;
  margin: 0 auto;
}

.setup-instructions {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
  border-radius: 20px;
  border: 2px dashed rgba(0, 255, 136, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.8s ease;
}

.setup-instructions h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.setup-instructions ol {
  margin-left: 1.5rem;
  margin-top: 1.5rem;
}

.setup-instructions li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.setup-instructions ul {
  margin-left: 1.5rem;
  margin-top: 0.75rem;
  list-style-type: circle;
}

.setup-instructions a {
  color: var(--accent);
  font-weight: 600;
  transition: all 0.3s ease;
}

.setup-instructions a:hover {
  color: var(--accent-blue);
  text-shadow: 0 0 8px rgba(0, 204, 255, 0.5);
}

.alternate-signup {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 204, 255, 0.08) 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.alternate-signup a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.alternate-signup a:hover {
  color: var(--accent-blue);
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Gallery Page */
.gallery-page-body {
  background: linear-gradient(rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.6)), url('/images/venue.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.gallery-page h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.3));
  animation: fadeInUp 0.8s ease;
}

.gallery-intro {
  font-size: 1.2rem;
  color: var(--text-dim);
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(0, 255, 136, 0.2);
  transition: all 0.4s ease;
  background: rgba(15, 15, 15, 0.8);
}

.gallery-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0, 255, 136, 0.4);
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: all 0.4s ease;
}

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

.gallery-caption {
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7));
  position: absolute;
  bottom: 0;
  width: 100%;
}

.gallery-caption h3 {
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.gallery-caption p {
  color: var(--text);
  font-size: 0.95rem;
}

.gallery-footer {
  text-align: center;
  padding: 2rem;
  background: rgba(15, 15, 15, 0.8);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.gallery-footer p {
  margin-bottom: 0.5rem;
  color: var(--text-dim);
}

.gallery-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.gallery-footer a:hover {
  color: var(--accent-blue);
  text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  nav {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem 2rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .press-kit h1,
  .events-page h1,
  .newsletter-page h1 {
    font-size: 2.5rem;
  }

  .press-kit section {
    padding: 2rem;
  }

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

  .event-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }

  .event-date {
    flex-direction: row;
    gap: 1.5rem;
    min-width: auto;
    width: 100%;
    padding: 1rem;
  }

  .event-date .day {
    font-size: 2.5rem;
  }

  .social-quick-links {
    flex-direction: column;
    gap: 1rem;
  }

  .link-button {
    padding: 1.25rem 1.5rem;
  }

  .setup-instructions {
    padding: 2rem;
  }
}
