* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-blue: #00f3ff;
  --neon-purple: #bd00ff;
  --dark-bg: #0a0a0f;
  --text-light: #f0f0f5;
  --gradient: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  min-height: 100vh;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.95);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 243, 255, 0.3);
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 3rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.page {
  min-height: 100vh;
  padding: 120px 2rem 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--neon-blue);
  text-shadow: 0 0 20px var(--neon-blue);
}

.home {
  background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1), transparent);
  width: 100%;
  max-width: 100%;
}

.home-content {
  text-align: center;
}

.logo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--neon-blue);
  box-shadow: 0 0 40px var(--neon-blue);
  margin-bottom: 2rem;
}

.nick {
  font-family: 'Orbitron', sans-serif;
  font-size: 5rem;
  color: var(--neon-purple);
  text-shadow: 0 0 30px var(--neon-purple);
  margin-bottom: 1rem;
}

.iconic-quote {
  font-size: 1.8rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.4;
  margin: 0 auto;
}

.about-content {
  max-width: 800px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.youtube-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.youtube-header p {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(240, 240, 245, 0.85);
}

.video-feed {
  width: 100%;
  max-width: 1100px;
}

.video-feed.three-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: rgba(20, 20, 30, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 243, 255, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 243, 255, 0.25);
}

.video-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #111;
}

.video-body {
  padding: 1rem;
}

.video-body h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 0.45rem;
  color: #f3f7ff;
}

.video-body p {
  font-size: 0.92rem;
  color: rgba(240, 240, 245, 0.72);
}

.youtube-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 10px 40px rgba(0, 243, 255, 0.18);
}

.empty-state,
.loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 2rem;
  border-radius: 18px;
  background: rgba(20, 20, 30, 0.45);
  color: rgba(240, 240, 245, 0.85);
}

.empty-state {
  border: 1px dashed rgba(0, 243, 255, 0.35);
}

.contact-content {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  background: rgba(20, 20, 30, 0.8);
  border-radius: 20px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  border: 2px solid var(--neon-blue);
  transition: all 0.3s;
}

.contact-link:hover {
  background: var(--gradient);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0, 243, 255, 0.5);
}

.icon {
  width: 50px;
  height: 50px;
}

footer {
  background: rgba(10, 10, 15, 0.95);
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  color: rgba(240, 240, 245, 0.7);
  width: 100%;
}

@media (max-width: 900px) {
  .video-feed.three-videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1.2rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .page {
    padding: 100px 1rem 40px;
  }

  .page h2 {
    font-size: 2rem;
  }

  .nick {
    font-size: 3.5rem;
  }

  .iconic-quote {
    font-size: 1.35rem;
  }

  .contact-content {
    gap: 1.5rem;
  }

  .contact-link {
    padding: 1.2rem 1.8rem;
    font-size: 1.1rem;
  }
}
