:root {
  --bg: #0a0a0b;
  --bg-card: #141416;
  --bg-elevated: #1c1c1f;
  --red: #e6392b;
  --red-glow: #ff3b2f;
  --orange: #ff6b35;
  --cream: #f5e6c8;
  --steel: #a8b2c1;
  --white: #f8f7f4;
  --muted: #8b8b93;
  --border: rgba(255,255,255,0.08);
  --neon: 0 0 20px rgba(230, 57, 43, 0.45), 0 0 40px rgba(230, 57, 43, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Subtle checkered texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.015) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.015) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.015) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.015) 75%);
  background-size: 24px 24px;
  background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.logo span {
  color: var(--red);
  text-shadow: var(--neon);
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-glow);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: var(--neon);
}

.nav-cta:hover {
  background: var(--red-glow) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 8.5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(230, 57, 43, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-label {
  justify-content: center;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 7vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.page-hero h1 .accent {
  color: var(--red);
  text-shadow: var(--neon);
}

.page-hero .lead {
  color: var(--steel);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========== HOME HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(230, 57, 43, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(230, 57, 43, 0.12);
  border: 1px solid rgba(230, 57, 43, 0.35);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

h1.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 9vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

h1.hero-title .accent {
  color: var(--red);
  text-shadow: var(--neon);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--steel);
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--cream);
}

.hero-meta strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.15rem;
  font-weight: 600;
}

/* ========== COUNTDOWN ========== */
.countdown-wrap {
  margin: 2rem 0 2.25rem;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.countdown-unit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 76px;
  padding: 0.85rem 0.6rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.countdown-unit .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--red);
  text-shadow: 0 0 12px rgba(230,57,43,0.4);
  display: block;
}

.countdown-unit .lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.25rem;
}

.countdown.ended .num {
  color: var(--orange);
}

/* ========== BUTTONS ========== */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: var(--neon);
}

.btn-primary:hover {
  background: var(--red-glow);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  border-color: var(--steel);
  background: rgba(255,255,255,0.04);
}

/* ========== SECTIONS ========== */
section {
  padding: 4.5rem 0;
  position: relative;
  z-index: 1;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
  display: block;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.9rem;
  line-height: 1.1;
}

.section-intro {
  color: var(--steel);
  max-width: 560px;
  margin-bottom: 2.25rem;
  font-size: 1.05rem;
}

/* ========== CARDS & GRIDS ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  color: var(--cream);
}

.card p, .card li {
  color: var(--steel);
  font-size: 0.95rem;
}

.card ul {
  list-style: none;
  margin-top: 0.9rem;
}

.card li {
  padding: 0.4rem 0;
  padding-left: 1.35rem;
  position: relative;
}

.card li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.stat {
  background: var(--bg-elevated);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 2.25rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 9px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--red);
  box-shadow: 0 0 12px rgba(230,57,43,0.5);
}

.timeline-item.highlight .timeline-dot {
  background: var(--red);
  box-shadow: var(--neon);
}

.timeline-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--cream);
}

.timeline-desc {
  color: var(--steel);
  font-size: 0.95rem;
}

.placeholder-note {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  border: 1px dashed var(--border);
}

/* ========== MAP ========== */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: var(--bg-card);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.map-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.map-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem;
}

.map-info-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.map-info-card p {
  color: var(--cream);
  font-size: 0.92rem;
}

/* ========== ORGANIZERS ========== */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.35rem;
}

.org-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.org-card:hover {
  border-color: rgba(230, 57, 43, 0.4);
  transform: translateY(-3px);
}

.org-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a2e, #1a1a1c);
  border: 2px solid var(--border);
  margin: 0 auto 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--steel);
  overflow: hidden;
}

.org-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.org-role {
  font-size: 0.82rem;
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.org-bio {
  font-size: 0.86rem;
  color: var(--steel);
  margin-bottom: 0.9rem;
}

.org-links a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
  margin: 0 0.35rem;
}

.org-links a:hover {
  color: var(--red);
}

.placeholder-card {
  border-style: dashed;
  opacity: 0.88;
}

.placeholder-card .org-avatar {
  border-style: dashed;
}

/* ========== GALLERY ========== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  justify-content: center;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--steel);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(230, 57, 43, 0.15);
  border-color: rgba(230, 57, 43, 0.45);
  color: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(230,57,43,0.3);
}

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

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

.gallery-item .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s;
}

.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  font-size: 0.9rem;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1a1a1e, #121214);
}

.gallery-placeholder .icon {
  font-size: 2.2rem;
  opacity: 0.5;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(960px, 94vw);
  max-height: 88vh;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, rgba(230,57,43,0.15), rgba(255,107,53,0.08));
  border: 1px solid rgba(230,57,43,0.3);
  border-radius: 20px;
  padding: 2.75rem 1.75rem;
  text-align: center;
  margin: 1rem 0 2rem;
}

.cta-banner h2 {
  margin-bottom: 0.65rem;
}

.cta-banner p {
  color: var(--steel);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--border);
  padding: 2.75rem 0 1.75rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.footer-brand span {
  color: var(--red);
}

.footer-desc {
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 270px;
}

.footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 0.9rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}

/* ========== FEATURE CARDS (home) ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.feature-card:hover {
  border-color: rgba(230,57,43,0.35);
}

.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--cream);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--steel);
}

.feature-card a {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.feature-card a:hover {
  color: var(--red-glow);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 4%;
    background: rgba(10,10,11,0.98);
    padding: 1rem 1.35rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    gap: 0.85rem;
    min-width: 180px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 520px) {
  .btn-row {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .map-wrapper iframe {
    height: 280px;
  }

  .countdown-unit {
    min-width: 64px;
    padding: 0.7rem 0.4rem;
  }

  .countdown-unit .num {
    font-size: 1.7rem;
  }

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

/* ========== PHOTO UPLOAD MOCK ========== */
.upload-section {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.upload-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: start;
}

@media (max-width: 800px) {
  .upload-grid {
    grid-template-columns: 1fr;
  }
}

.upload-dropzone {
  border: 2px dashed rgba(230, 57, 43, 0.35);
  border-radius: 16px;
  background: var(--bg-card);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
  border-color: var(--red);
  background: rgba(230, 57, 43, 0.06);
}

.upload-dropzone .dz-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.upload-dropzone h3 {
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.upload-dropzone p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-list {
  margin-top: 1rem;
  text-align: left;
}

.file-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  background: var(--bg-elevated);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--steel);
  margin-bottom: 0.4rem;
}

.file-list-item .remove-file {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 0.25rem;
}

.file-list-item .remove-file:hover {
  color: var(--red);
}

.upload-form .form-row {
  margin-bottom: 1rem;
}

.upload-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.upload-form input[type="text"],
.upload-form input[type="email"],
.upload-form textarea,
.upload-form select {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.upload-form input:focus,
.upload-form textarea:focus,
.upload-form select:focus {
  outline: none;
  border-color: rgba(230, 57, 43, 0.55);
}

.upload-form textarea {
  min-height: 90px;
  resize: vertical;
}

.upload-form .form-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.upload-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.1rem 0;
  font-size: 0.88rem;
  color: var(--steel);
}

.upload-form .checkbox-row input {
  margin-top: 0.2rem;
  accent-color: var(--red);
}

.mock-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 107, 53, 0.15);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.35);
  padding:  0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg-elevated);
  border: 1px solid rgba(230, 57, 43, 0.4);
  color: var(--cream);
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--neon);
  z-index: 300;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.35s ease;
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ========== SPOTIFY / MUSIC EMBED ========== */
.music-section {
  margin: 2rem 0;
}

.spotify-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.spotify-card-header {
  padding: 1.35rem 1.5rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.spotify-card-header h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.spotify-card-header p {
  color: var(--steel);
  font-size: 0.9rem;
  max-width: 480px;
}

.spotify-embed-wrap {
  padding: 0 1.25rem 1.25rem;
  min-height: 152px;
}

.spotify-embed-wrap iframe {
  width: 100%;
  border-radius: 12px;
  display: block;
  min-height: 152px;
  border: 0;
}

.spotify-fallback {
  background: linear-gradient(135deg, #1a1a1e 0%, #121214 100%);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  color: var(--muted);
}

.spotify-fallback .sp-logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.spotify-fallback a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.spotify-fallback a:hover {
  color: var(--red-glow);
}

.spotify-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0 1.5rem 1.35rem;
}

.spotify-links a {
  font-size: 0.82rem;
  color: var(--steel);
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.spotify-links a:hover {
  border-color: rgba(230, 57, 43, 0.4);
  color: var(--orange);
}

.music-inline {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 800px) {
  .music-inline {
    grid-template-columns: 1fr;
  }
}
