/* ============================================
   DJ LINKTREE PREMIUM - FULLSCREEN HERO STYLE
   Cores: Base #0A0A0A | Teal #2EA6A0 | Amarelo #FFD31A
   ============================================ */

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

:root {
  --base: #0A0A0A;
  --base-light: #1C1C1C;
  --base-lighter: #2a2a2a;
  --primary: #2EA6A0;
  --primary-dark: #1d7a75;
  --primary-glow: rgba(46, 166, 160, 0.5);
  --accent: #FFD31A;
  --accent-dark: #e6bc00;
  --accent-glow: rgba(255, 211, 26, 0.5);
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --gray-dark: #444444;
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px var(--primary-glow);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50px;
  --transition-fast: 0.2s ease;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --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(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
::selection { background: var(--primary); color: var(--base); }

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

/* Font Awesome Icon Sizing */
.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.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo {
  font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 900; letter-spacing: 6px;
  color: var(--white); text-transform: uppercase;
  animation: pulse-glow 2s ease-in-out infinite;
}
.loader-bar {
  width: 200px; height: 2px; background: var(--gray-dark);
  margin: 30px auto 0; border-radius: 2px; overflow: hidden;
}
.loader-progress {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent));
  width: 0%; animation: load-progress 2s ease-out forwards;
}
@keyframes load-progress { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px var(--primary-glow); opacity: 1; }
  50% { text-shadow: 0 0 40px var(--accent-glow); opacity: 0.8; }
}

/* ============================================
   HERO - FULLSCREEN IMAGE
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

/* Hero Background Images */
.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;
  bottom: 0; left: 0; width: 100%; height: 70%;
  background: linear-gradient(to top, var(--base) 0%, transparent 100%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  padding-bottom: 120px;
  max-width: 800px;
  transition: opacity var(--transition), transform var(--transition);
}

.hero-content.fade-out {
  opacity: 0;
  transform: translateY(-30px);
}

.hero-name {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--white) 0%, var(--primary) 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: text-shine 4s linear infinite;
  text-shadow: none;
}

@keyframes text-shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-tagline {
  font-size: 1.2rem;
  color: var(--gray-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  cursor: pointer;
  opacity: 0;
  animation: fade-in 1s ease forwards 2s;
  pointer-events: auto;
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(8px) rotate(45deg); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}

.nav-logo:hover { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

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

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: var(--base-light);
  max-width: none;
  padding: 100px 20px;
}

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

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

/* ============================================
   AGENDA
   ============================================ */
.agenda-month {
  margin-bottom: 40px;
}

.agenda-month-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 3px solid var(--accent);
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 25px;
  align-items: center;
  padding: 20px;
  background: var(--base-light);
  border-radius: var(--radius-lg);
  margin-bottom: 15px;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.event-card:hover {
  border-color: var(--primary);
  transform: translateX(5px);
  box-shadow: -5px 0 30px var(--primary-glow);
}

.event-flyer {
  width: 100px;
  height: 125px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--base-lighter);
  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(--gray-dark);
  font-size: 2rem;
}

.event-info { flex: 1; }

.event-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

.event-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  transition: color var(--transition);
}

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

.event-venue {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 5px;
}

.event-flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
}

.event-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ============================================
   UPDATES (BLOG)
   ============================================ */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.update-card {
  background: var(--base-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-dark);
  transition: all var(--transition);
}

.update-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.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.05);
}

.update-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--base-lighter), var(--base));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dark);
  font-size: 3rem;
}

.update-content {
  padding: 25px;
}

.update-date {
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.update-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.update-excerpt {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.update-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.update-link:hover {
  gap: 12px;
}

/* ============================================
   RELEASES (MUSIC)
   ============================================ */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

/* Music Embeds Section */
.music-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.embed-card {
  background: var(--base-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-dark);
}

.embed-card-header {
  padding: 20px;
  background: var(--base-lighter);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-dark);
}

.embed-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.embed-card-icon.spotify {
  background: #1DB954;
  color: white;
}

.embed-card-icon.soundcloud {
  background: #FF5500;
  color: white;
}

.embed-card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.embed-card-body {
  padding: 20px;
}

.embed-card-body iframe {
  width: 100%;
  border-radius: var(--radius-md);
  border: none;
}

.release-card {
  background: var(--base-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-dark);
  transition: all var(--transition);
}

.release-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.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.05);
}

.release-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-glow), var(--accent-glow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4rem;
}

.release-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity var(--transition);
}

.release-card:hover .release-overlay { opacity: 1; }

.release-play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--transition);
}

.release-play-btn:hover { transform: scale(1.15); }

.release-info {
  padding: 20px;
}

.release-type {
  font-size: 0.7rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.release-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.release-artist {
  color: var(--gray);
  font-size: 0.85rem;
}

.release-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--gray-dark);
}

.release-link {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.release-link:hover {
  background: var(--primary);
  color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--base);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-dark);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--base-light);
  padding: 80px 20px 30px;
  border-top: 1px solid var(--gray-dark);
}

.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  margin-bottom: 80px;
  margin-top: -80px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--white), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-bio {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  border: 1px solid var(--gray-dark);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-section h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-link i {
  color: var(--primary);
  width: 16px;
}

.footer-contact-item {
  color: var(--gray);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--gray-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: var(--gray);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  color: var(--gray);
  font-size: 0.85rem;
  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(10, 10, 10, 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.9);
  transition: transform var(--transition);
}

.lightbox.active .lightbox-content { transform: scale(1); }

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  width: 40px; height: 40px;
  background: var(--white);
  color: var(--base);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.lightbox-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px var(--primary-glow);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #dc3545; box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4); }
.toast.success { background: var(--primary); }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

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

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: none;
    text-align: center;
  }
  
  .footer-social { justify-content: center; }
}

@media (max-width: 900px) {
  .nav { padding: 15px 20px; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    border-top: 1px solid var(--gray-dark);
  }
  
  .nav-links.active { display: flex; }
  .nav-link { padding: 15px 0; border-bottom: 1px solid var(--gray-dark); }
  .nav-toggle { display: flex; }
  
  .hero-content { padding: 40px 20px; }
  
  .event-card {
    grid-template-columns: 80px 1fr;
    gap: 15px;
  }
  
  .event-flyer { width: 80px; height: 100px; }
  .event-actions { grid-column: span 2; justify-content: flex-start; margin-top: 10px; }
  
  .updates-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 60px 15px; }
  
  .hero-name { letter-spacing: 2px; }
  .hero-tagline { letter-spacing: 3px; font-size: 1rem; }
  
  .releases-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { grid-column: span 1; }
  .footer-links { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  
  .toast { left: 15px; right: 15px; text-align: center; justify-content: center; }
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.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-light);
  padding: 50px;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--gray-dark);
}

.login-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.login-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 40px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  background: var(--base);
  border: 2px solid var(--gray-dark);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: all var(--transition);
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-textarea { min-height: 120px; resize: vertical; }
.form-error { color: #dc3545; font-size: 0.85rem; margin-top: 8px; }
.form-hint { color: var(--gray); font-size: 0.8rem; margin-top: 6px; }

.admin-header {
  background: var(--base-light);
  padding: 15px 25px;
  border-bottom: 1px solid var(--gray-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-container { padding: 30px 25px; max-width: 1100px; margin: 0 auto; }

.tabs {
  display: flex;
  gap: 3px;
  background: var(--base);
  padding: 5px;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  overflow-x: auto;
}

.tab {
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--gray);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab:hover { color: var(--white); background: var(--base-lighter); }
.tab.active { background: var(--primary); color: var(--base); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.admin-card {
  background: var(--base-light);
  border: 1px solid var(--gray-dark);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 20px;
}

.admin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-dark);
  flex-wrap: wrap;
  gap: 15px;
}

.admin-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-list { display: flex; flex-direction: column; gap: 12px; }

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--base);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-dark);
  flex-wrap: wrap;
  gap: 15px;
  transition: all var(--transition);
}

.item-row:hover { border-color: var(--primary); }

.item-info { flex: 1; min-width: 200px; }
.item-date { font-size: 0.8rem; color: var(--primary); margin-bottom: 3px; }
.item-title { font-weight: 600; margin-bottom: 3px; }
.item-meta { font-size: 0.85rem; color: var(--gray); }
.item-actions { display: flex; gap: 8px; }

.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: 30px 20px;
  border: 2px dashed var(--gray-dark);
  border-radius: var(--radius-md);
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.file-input-label i { font-size: 2rem; color: var(--primary); }

.file-input-label:hover,
.file-input-wrapper:focus-within .file-input-label {
  border-color: var(--primary);
  background: rgba(46, 166, 160, 0.05);
}

.file-preview {
  margin-top: 15px;
  max-width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.file-preview img { width: 100%; height: auto; }

/* Upload Gallery */
.upload-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.upload-item {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-dark);
  transition: all var(--transition);
}

.upload-item:hover { border-color: var(--primary); }

.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(10, 10, 10, 0.8);
  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: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition);
}

.upload-item-btn:hover { transform: scale(1.1); }
.upload-item-btn.delete { background: #dc3545; color: white; }
.upload-item-btn.copy { background: var(--primary); color: white; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.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: repeat(2, 1fr);
  gap: 20px;
}

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

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .admin-header { flex-direction: column; text-align: center; }
  .admin-nav { justify-content: center; }
  .tabs { flex-wrap: nowrap; overflow-x: auto; }
  .item-row { flex-direction: column; align-items: flex-start; }
  .item-actions { width: 100%; }
  .item-actions .btn { flex: 1; justify-content: center; }
  .login-box { padding: 35px 25px; }
}
