:root {
  --bg-dark: #0a0a0f;
  --bg-gradient: radial-gradient(circle at 10% 20%, rgba(20, 20, 30, 1) 0%, rgba(5, 5, 10, 1) 100%);
  --card-bg: rgba(20, 20, 28, 0.75);
  --card-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(12px);
  --neon-glow: 0 0 10px rgba(255, 255, 255, 0.05), 0 0 20px rgba(0, 200, 255, 0.1);
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b8;
  --accent: #3b82f6;
  --accent-glow: 0 0 12px rgba(59,130,246,0.3);
}

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

body {
  background: var(--bg-dark);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  scroll-behavior: smooth;
  min-height: 100vh;
}

/* Header épico */
.hero-header {
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hero-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.15), transparent 70%);
  pointer-events: none;
}

.avatar-frame {
  width: 128px;
  height: 128px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.5), 0 0 0 4px rgba(59,130,246,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-frame img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px -5px black, 0 0 0 6px rgba(59,130,246,0.3);
}

.hero-header h1 {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, #a0c0ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(4px);
}

/* Tarjetas Glassmorphism */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.4), var(--neon-glow);
}

/* Filtros (chips) */
.filter-tag {
  background: rgba(30,30,38,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
  cursor: pointer;
}
.filter-tag:hover {
  background: rgba(59,130,246,0.2);
  border-color: var(--accent);
  color: white;
  transform: scale(1.02);
}
.filter-tag.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  box-shadow: var(--accent-glow);
}

/* Botón principal (ver video) */
.btn-black {
  background: linear-gradient(135deg, #1e1e24, #121217);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 0.75rem 1.2rem;
  font-weight: 600;
  transition: all 0.2s;
  color: white;
  text-align: center;
  display: inline-block;
  backdrop-filter: blur(4px);
}
.btn-black:hover {
  background: linear-gradient(135deg, #2a2a32, #18181e);
  border-color: var(--accent);
  box-shadow: 0 5px 12px rgba(0,0,0,0.3);
  transform: scale(0.98);
}

/* Enlaces de redes sociales */
.social-link {
  background: rgba(20,20,28,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1.5rem;
  transition: all 0.2s;
}
.social-link:hover {
  background: rgba(30,30,40,0.9);
  transform: translateX(8px);
  border-color: var(--accent);
}
.social-link i {
  transition: transform 0.2s;
}
.social-link:hover i {
  transform: scale(1.1);
  color: var(--accent);
}

/* Video clandestino (miniatura con overlay) */
.clan-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
}
.clan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.clan-card:hover .clan-overlay {
  opacity: 1;
}
.play-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 1.6rem;
  transition: transform 0.2s;
}
.clan-card:hover .play-icon {
  transform: scale(1.1);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 4rem;
}

/* Animaciones de entrada */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }