/* ============================================
   MINIMAL DARK DJ — style.css
   Ultra-clean, typographic, no glow effects
   Base #111111 | Primary #FFFFFF | Accent #888888
   ============================================ */

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

:root {
  --base: #111111;
  --base-secondary: #161616;
  --base-card: #1A1A1A;
  --base-footer: #0D0D0D;
  --base-alt: #141414;
  --primary: #FFFFFF;
  --accent: #888888;
  --text: #EEEEEE;
  --text-muted: #666666;
  --border: #222222;
  --border-hover: #444444;
  --white: #FFFFFF;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.4);
  --radius-sm: 4px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-xl: 4px;
  --radius-full: 0px;
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--base);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: var(--white); color: var(--base); }

a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }

.fa-fw { width: 1.25em; text-align: center; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: var(--base); display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--white);
  text-transform: uppercase;
}
.loader-bar {
  width: 160px; height: 1px; background: var(--border);
  margin: 24px auto 0; overflow: hidden;
}
.loader-progress {
  height: 100%; background: var(--white);
  width: 0%; animation: load-progress 2s ease-out forwards;
}
@keyframes load-progress { 0% { width: 0%; } 100% { width: 100%; } }

/* ============================================
   NAVIGATION — mobile first (hamburger default)
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--accent); }

/* Hidden on mobile, shown on desktop */
.nav-links {
  display: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--white); }

/* Hamburger — visible on mobile */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  width: 22px; height: 1px;
  background: var(--white);
  transition: all var(--transition);
}
.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); }

/* Mobile dropdown nav */
.nav-links.active {
  display: flex;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 24px 20px;
  gap: 0;
  border-top: 1px solid var(--border);
}
.nav-links.active .nav-link {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.nav-links.active .nav-link:hover { color: var(--white); }

/* ============================================
   HERO — fullscreen, single image, dark overlay
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center top;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.95) 0%,
    rgba(17, 17, 17, 0.4) 50%,
    rgba(17, 17, 17, 0.2) 100%
  );
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 24px;
  padding-bottom: 80px;
  max-width: 900px;
  transition: opacity var(--transition);
}

.hero-name {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-tagline {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* No scroll indicator in minimal — class exists for JS compatibility */
.scroll-indicator { display: none; }

/* ============================================
   SECTIONS — generous padding
   ============================================ */
.section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: var(--base-alt);
  max-width: none;
  padding: 80px 24px;
}

.section-alt .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 2px solid var(--white);
  padding-bottom: 12px;
}

/* No decorative pseudo-element underline in minimal */
.section-title::after { display: none; }

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ============================================
   AGENDA — event cards
   ============================================ */
.agenda-month { margin-bottom: 24px; }

.agenda-month-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-left: 0;
  border-left: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

/* Mobile: 2-column grid (flyer | info), actions span 2 cols */
.event-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: var(--base-card);
  border-radius: 0;
  margin-bottom: 1px;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.event-card:hover {
  border-color: var(--border-hover);
}

.event-flyer {
  width: 80px;
  height: 100px;
  border-radius: 0;
  overflow: hidden;
  background: var(--base-secondary);
  flex-shrink: 0;
}
.event-flyer img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.event-flyer-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-hover);
  font-size: 1.2rem;
}

.event-info { flex: 1; }

.event-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.event-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.event-venue {
  color: var(--text-muted);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

.event-flag {
  width: 18px; height: 13px;
  border-radius: 0;
  object-fit: cover;
}

/* Actions span both columns on mobile */
.event-actions {
  grid-column: span 2;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

/* ============================================
   UPDATES — cards
   ============================================ */
.updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

.update-card {
  background: var(--base-card);
  border-radius: 0;
  overflow: hidden;
  border: none;
  transition: background var(--transition);
}
.update-card:hover {
  background: var(--base-secondary);
}

.update-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.update-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.update-card:hover .update-image img { transform: scale(1.03); }
.update-image-placeholder {
  width: 100%; height: 100%;
  background: var(--base-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-hover);
  font-size: 2.5rem;
}

.update-content { padding: 24px; }

.update-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.update-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.update-excerpt {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.update-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition), gap var(--transition);
}
.update-link:hover { color: var(--white); gap: 12px; }

/* ============================================
   MUSIC SECTION — embeds + releases
   ============================================ */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

/* Music Embeds — mobile: single column */
.music-embeds {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 56px;
}

.embed-card {
  background: var(--base-card);
  border-radius: 0;
  overflow: hidden;
  border: none;
}
.embed-card-header {
  padding: 16px 20px;
  background: var(--base-secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.embed-card-icon {
  width: 36px; height: 36px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.embed-card-icon.spotify { background: #1DB954; color: white; }
.embed-card-icon.soundcloud { background: #FF5500; color: white; }
.embed-card-icon.youtube { background: #FF0000; color: #fff; }

/* Set section — YouTube player */
.yt-set-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.yt-set-frame {
  background: var(--base-secondary);
  border: 1px solid var(--border);
}

.yt-player-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}
.yt-player-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  outline: none;
  display: block;
}

.yt-set-info {
  padding: 20px;
  background: var(--base-card);
  border: 1px solid var(--border);
  border-top: none;
}
.yt-set-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.yt-set-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.yt-set-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.embed-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}
.embed-card-body { padding: 16px 20px; }
.embed-card-body iframe {
  width: 100%;
  border-radius: 0;
  border: none;
}

/* Release cards */
.release-card {
  background: var(--base-card);
  border-radius: 0;
  overflow: hidden;
  border: none;
  transition: background var(--transition);
}
.release-card:hover {
  background: var(--base-secondary);
}

.release-cover {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.release-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.release-card:hover .release-cover img { transform: scale(1.04); }
.release-cover-placeholder {
  width: 100%; height: 100%;
  background: var(--base-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-hover);
  font-size: 2.5rem;
}

.release-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(17, 17, 17, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.release-card:hover .release-overlay { opacity: 1; }

.release-play-btn {
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--white);
  color: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}
.release-play-btn:hover { background: var(--accent); color: var(--white); }

.release-info { padding: 16px; }
.release-type {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.release-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.release-artist { color: var(--text-muted); font-size: 0.82rem; }
.release-links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.release-link {
  width: 28px; height: 28px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.release-link:hover { color: var(--white); }

/* ============================================
   BUTTONS — sharp corners, no glows
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--white);
  color: #000000;
  border: 1px solid var(--white);
}
.btn-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
}
.btn-accent:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--white);
  background: transparent;
}

.btn-sm { padding: 8px 18px; font-size: 0.68rem; }
.btn-lg { padding: 16px 36px; font-size: 0.78rem; }
.btn-icon { padding: 12px; min-width: 44px; }

/* ============================================
   BIO SECTION
   ============================================ */
.bio-section-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 2;
  color: var(--text-muted);
  text-align: center;
  white-space: pre-line;
}

/* ============================================
   FOOTER — very minimal, dark
   ============================================ */
.footer {
  background: var(--base-footer);
  padding: 72px 24px 36px;
  border-top: 1px solid var(--border);
}

/* No gradient line in minimal */
.footer::before { display: none; }

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  text-align: center;
}

.footer-brand { max-width: none; }

.footer-logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Social icons — no circles, just icons */
.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer-social a {
  width: auto; height: auto;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  border: none;
  transition: color var(--transition);
}
.footer-social a:hover {
  color: var(--white);
  background: transparent;
  transform: none;
}

.footer-section h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-link i { color: var(--text-muted); width: 14px; }

.footer-contact-item {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-contact-item i { color: var(--text-muted); margin-top: 3px; }

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-copy { color: var(--text-muted); font-size: 0.78rem; }
.footer-legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 0.78rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(17, 17, 17, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition);
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 0;
}
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--base);
  border: none;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--accent); color: var(--white); }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 20px;
  left: 15px; right: 15px;
  background: var(--white);
  color: var(--base);
  padding: 14px 24px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #dc3545; color: #fff; }
.toast.success { background: var(--white); color: var(--base); }

/* ============================================
   REVEAL ANIMATIONS — opacity only, no translate
   ============================================ */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.reveal.active { opacity: 1; }

.reveal-stagger > * {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.active > * { opacity: 1; }

/* ============================================
   ADMIN STYLES (kept for compatibility)
   ============================================ */
.admin-body { background: var(--base); min-height: 100vh; }

.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.login-box {
  background: var(--base-card);
  padding: 40px 28px;
  border-radius: 0;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
}
.login-title { text-align: center; font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; letter-spacing: 2px; text-transform: uppercase; }
.login-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 32px; font-size: 0.85rem; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  background: var(--base);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--white);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-error { color: #dc3545; font-size: 0.82rem; margin-top: 6px; }
.form-hint { color: var(--text-muted); font-size: 0.78rem; margin-top: 6px; }

.admin-header {
  background: var(--base-card);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-logo {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-nav { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.admin-container { padding: 20px 15px; max-width: 1100px; margin: 0 auto; }

.tabs {
  display: flex;
  gap: 1px;
  background: var(--border);
  margin-bottom: 24px;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.tab {
  padding: 10px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  border: none;
  background: var(--base-card);
  color: var(--text-muted);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tab:hover { color: var(--white); background: var(--base-secondary); }
.tab.active { background: var(--white); color: var(--base); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.admin-card {
  background: var(--base-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 20px;
  margin-bottom: 20px;
}
.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.admin-card-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.item-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px;
  background: var(--base-card);
  border-radius: 0;
  border: none;
  gap: 10px;
  transition: background var(--transition);
}
.item-row:hover { background: var(--base-secondary); }
.item-info { flex: 1; min-width: 0; width: 100%; }
.item-date { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 3px; letter-spacing: 1px; text-transform: uppercase; }
.item-title { font-weight: 700; margin-bottom: 3px; font-size: 0.9rem; }
.item-meta { font-size: 0.82rem; color: var(--text-muted); }
.item-actions { display: flex; gap: 8px; width: 100%; }
.item-actions .btn { flex: 1; justify-content: center; }

.file-input-wrapper { position: relative; }
.file-input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  cursor: pointer;
  top: 0; left: 0;
}
.file-input-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 20px;
  border: 1px dashed var(--border-hover);
  border-radius: 0;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.file-input-label i { font-size: 1.8rem; color: var(--text-muted); }
.file-input-label:hover,
.file-input-wrapper:focus-within .file-input-label {
  border-color: var(--white);
  color: var(--white);
}
.file-input-label:hover i,
.file-input-wrapper:focus-within .file-input-label i { color: var(--white); }
.file-preview { margin-top: 15px; max-width: 200px; border-radius: 0; overflow: hidden; }
.file-preview img { width: 100%; height: auto; }

.upload-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 16px;
}
.upload-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 0;
  overflow: hidden;
  border: none;
  transition: opacity var(--transition);
}
.upload-item:hover { opacity: 0.85; }
.upload-item img { width: 100%; height: 100%; object-fit: cover; }
.upload-item-actions {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(17, 17, 17, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}
.upload-item:hover .upload-item-actions { opacity: 1; }
.upload-item-btn {
  width: 34px; height: 34px;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity var(--transition);
}
.upload-item-btn:hover { opacity: 0.8; }
.upload-item-btn.delete { background: #dc3545; color: white; }
.upload-item-btn.copy { background: var(--white); color: var(--base); }

.text-center { text-align: center; }
.text-primary { color: var(--white); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--text-muted); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none !important; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 15px; }

/* ============================================
   FOOTER CREDITS
   ============================================ */
.footer-credits {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-credits a { transition: all 0.3s ease; }
.footer-credits a:hover { opacity: 1 !important; color: var(--white) !important; }
.footer-credits i { font-size: 10px; }

/* ============================================
   RESPONSIVE — small tablet (>= 600px)
   ============================================ */
@media (min-width: 600px) {
  .section { padding: 100px 32px; }
  .section-alt { padding: 100px 32px; }
  .section-header { margin-bottom: 64px; }

  .hero-name { letter-spacing: -2px; }
  .hero-tagline { letter-spacing: 5px; }

  .releases-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1px;
  }

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

  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .footer-brand {
    grid-column: span 2;
    text-align: center;
  }
  .footer-social { justify-content: center; }
  .footer-links { align-items: flex-start; }
  .footer-contact-item { justify-content: flex-start; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer-legal { justify-content: flex-end; }

  .toast {
    left: auto;
    right: 20px;
    max-width: 360px;
    text-align: left;
    justify-content: flex-start;
  }

  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — desktop nav (>= 900px)
   ============================================ */
@media (min-width: 900px) {
  .nav { padding: 20px 48px; }
  .nav.scrolled { padding: 14px 48px; }

  /* Show horizontal nav, hide hamburger */
  .nav-links {
    display: flex;
    position: static;
    background: none;
    flex-direction: row;
    padding: 0;
    border: none;
    width: auto;
  }
  .nav-links .nav-link { padding: 0; border: none; }
  .nav-toggle { display: none; }

  .hero { min-height: 600px; }
  .hero-content { padding: 60px 48px; padding-bottom: 120px; }

  /* Event card: 3-column desktop layout */
  .event-card {
    grid-template-columns: 100px 1fr auto;
    gap: 28px;
    padding: 24px;
    margin-bottom: 1px;
  }
  .event-flyer { width: 100px; height: 125px; }
  .event-flyer-placeholder { font-size: 1.5rem; }
  .event-title { font-size: 1.1rem; }
  .event-actions {
    grid-column: auto;
    margin-top: 0;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }

  /* Updates: auto-fill columns */
  .updates-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1px;
  }
  .update-image { height: 220px; }

  /* Music embeds: 2 columns */
  .music-embeds {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 1px;
    margin-bottom: 72px;
  }

  .section { padding: 120px 32px; }
  .section-alt { padding: 120px 32px; }
  .section-header { margin-bottom: 72px; }
  .agenda-month { margin-bottom: 48px; }
  .agenda-month-title { margin-bottom: 20px; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }

  /* Admin: horizontal layout */
  .admin-header {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 14px 28px;
  }
  .admin-nav { justify-content: flex-end; }
  .admin-container { padding: 28px; }
  .item-row {
    flex-direction: row;
    align-items: center;
  }
  .item-actions { width: auto; }
  .item-actions .btn { flex: none; }

  .login-box { padding: 50px; }
  .footer { padding: 96px 32px 40px; }
  .footer-bottom { margin-top: 64px; padding-top: 28px; }
}

/* ============================================
   RESPONSIVE — large desktop (>= 1024px)
   ============================================ */
@media (min-width: 1024px) {
  /* Footer: 4-column layout */
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    text-align: left;
  }
  .footer-brand {
    grid-column: auto;
    max-width: 280px;
    text-align: left;
  }
  .footer-social { justify-content: flex-start; }
  .footer-links { align-items: flex-start; }
  .footer-contact-item { justify-content: flex-start; }

  .releases-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1px;
  }

  .updates-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1px;
  }
}

/* ===== Capas por dispositivo ===== */
@media (max-width: 899px) {
    .hero-slide--desktop { display: none !important; }
}
@media (min-width: 900px) {
    .hero-slide--mobile  { display: none !important; }
}
