:root {
    --pink: #ff2d78;
    --pink-dim: #c4215a;
    --pink-glow: rgba(255,45,120,0.18);
    --accent2: #6be2ff;
    --accent2-glow: rgba(107,226,255,0.18);
    --bg: #080808;
    --bg2: #111111;
    --bg3: #1a1a1a;
    --text: #f0f0f0;
    --muted: #888;
    --border: rgba(255,45,120,0.25);
  }
  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: 'Outfit', sans-serif; font-size: 16px; line-height: 1.6; }

  /* PAGES */
  .page { display: none; min-height: 100vh; }
  .page.active { display: block; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--pink);
    cursor: pointer;
    text-decoration: none;
  }
  .nav-logo img {
    height: 48px;
    width: auto;
    display: block;
  }
  .nav-links { display: flex; gap: 0.25rem; align-items: center; }
  .nav-links-social-mobile { display: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.5rem 0.9rem; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
  .nav-links a.active { color: var(--pink); }
  .nav-social { display: flex; gap: 0.75rem; align-items: center; }
  .nav-social a {
    color: var(--muted); transition: color 0.2s;
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    transition: border-color 0.2s, color 0.2s;
  }
  .nav-social a:hover { color: var(--pink); border-color: var(--pink); }
  .nav-social svg { width: 22px; height: 22px; }

  /* MOBILE NAV TOGGLE (hamburger) */
  .nav-toggle {
    display: none;
    width: 40px; height: 40px;
    border: none; background: none; cursor: pointer;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 5px; flex-shrink: 0;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MAIN CONTENT offset */
  .page-content {
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  footer {
    margin-top: auto;
  }

  /* ========================
     HOME PAGE
  ======================== */
  .hero {
    position: relative; overflow: hidden;
    min-height: calc(100vh - 64px);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255,45,120,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,45,120,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,45,120,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; max-width: 860px; }
  .hero-eyebrow {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--pink);
    margin-bottom: 1.5rem;
  }

  .hero-logo {
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .hero-logo img {
    width: min(85vw, 850px);
    height: auto;
    filter: drop-shadow(0 0 40px rgba(255,45,120,0.45));
  }

  .hero-sub {
    font-size: 1.1rem; font-weight: 300; color: var(--muted);
    max-width: 480px; margin: 0 auto 3rem;
  }
  .hero-cta {
    display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  }
  .hero-cta-secondary {
    display: flex; justify-content: center; margin-top: 2rem;
  }
  .btn {
    padding: 0.75rem 2rem; border-radius: 8px; font-size: 0.9rem;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    cursor: pointer; border: none; font-family: 'Outfit', sans-serif;
    transition: all 0.2s; text-decoration: none; display: inline-block;
  }
  .btn-primary {
    background: var(--pink); color: #fff;
  }
  .btn-primary:hover { background: #ff4d8f; transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--text);
    border: 1px solid rgba(255,255,255,0.2);
  }
  .btn-outline:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
  .hero-cta .btn, .hero-cta-secondary .btn {
    min-width: 220px; text-align: center;
  }

  .btn-remix {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  color: #ffffff;
  
  /* Vibrant 3-color gradient background */
  background: linear-gradient(135deg, #ff007f, #7928ca, #00dfd8);
  background-size: 200% 200%;
  
  /* Colorful glowing shadow */
  box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
  transition: all 0.3s ease;
}

/* Hover effect with scale, increased glow, and gradient shift */
.btn-remix:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 223, 216, 0.6);
  color: #ffffff;
}

/* Click effect */
.btn-remix:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 10px rgba(121, 40, 202, 0.5);
}

  .section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; width: 100%; }
  .section-label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--pink);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em; color: #fff;
    margin-bottom: 2.5rem;
  }

  .next-event-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .next-event-visual {
    background: linear-gradient(135deg, #1a0010 0%, #2d0020 50%, #0d0008 100%);
    position: relative; overflow: hidden;
    min-height: 340px;
    display: flex; align-items: center; justify-content: center;
  }
  .next-event-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,45,120,0.3) 0%, transparent 70%);
    pointer-events: none;
  }
  .next-event-image {
    position: relative; z-index: 2;
    width: 100%; height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
  }
  .event-date-big {
    position: relative; z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem; line-height: 1;
    color: #fff; text-align: center;
    text-shadow: 0 0 60px rgba(255,45,120,0.6);
  }
  .event-date-big small {
    display: block; font-size: 1.4rem;
    letter-spacing: 0.15em; color: var(--pink);
    margin-top: 0.5rem;
  }
  .next-event-info {
    padding: 3rem;
    display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  }
  .event-meta { display: flex; flex-direction: column; gap: 0.5rem; }
  .event-meta-row {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: var(--muted);
  }
  .event-meta-row svg { color: var(--pink); flex-shrink: 0; }
  .event-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem; letter-spacing: 0.04em;
    color: #fff; line-height: 1.1;
  }
  .event-name-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; letter-spacing: 0.04em;
    color: #fff; line-height: 1.1;
  }
  .event-desc { font-weight: 300; color: var(--muted); font-size: 0.95rem; }

  .ticket-price {
    display: flex; align-items: baseline; gap: 0.5rem;
    margin-top: 0.5rem;
  }
  .price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem; color: var(--pink);
  }
  .price-label { font-size: 0.8rem; color: var(--muted); }

  /* ========================
     EVENTS PAGE
  ======================== */
  .events-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  .event-card {
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
  }
  .event-card:hover { border-color: var(--pink); transform: translateY(-4px); }
  .event-card-thumb {
    height: 180px;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .event-card-thumb .thumb-bg {
    position: absolute; inset: 0;
    transition: transform 0.4s;
  }
  .event-card:hover .thumb-bg { transform: scale(1.05); }
  .event-card-thumb .thumb-year {
    position: relative; z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem; color: rgba(255,255,255,0.15);
    letter-spacing: 0.1em;
  }
  .event-card-body { padding: 1.25rem 1.5rem; }
  .event-card-date { font-size: 0.75rem; color: var(--pink); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.4rem; }
  .event-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.04em; color: #fff; margin-bottom: 0.5rem; }
  .event-card-loc { font-size: 0.85rem; color: var(--muted); }
  .event-card-footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; }
  .photo-count { font-size: 0.8rem; color: var(--muted); }
  .view-link { font-size: 0.8rem; color: var(--pink); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

  /* GALLERY SUBPAGE */
  .gallery-header { padding: 3rem 2rem 2rem; max-width: 1100px; margin: 0 auto; }
  .back-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--muted); font-size: 0.85rem; cursor: pointer;
    background: none; border: none; font-family: 'Outfit', sans-serif;
    transition: color 0.2s; margin-bottom: 1.5rem; padding: 0;
  }
  .back-btn:hover { color: var(--pink); }
  .gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem; padding: 0 2rem 4rem; max-width: 1100px; margin: 0 auto;
    flex: 1;
  }
  .gallery-photo {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden; position: relative;
    cursor: pointer;
  }
  .gallery-photo .photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; transition: transform 0.3s;
  }
  .gallery-photo:hover .photo-placeholder { transform: scale(1.08); }
  .gallery-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.25s;
    display: flex; align-items: flex-end;
    padding: 1rem;
  }
  .gallery-photo:hover .gallery-photo-overlay { opacity: 1; }

  /* ========================
     TEAM PAGE
  ======================== */
  .team-intro { max-width: 600px; margin-bottom: 3.5rem; }
  .team-intro p { color: var(--muted); font-weight: 300; font-size: 1.05rem; }
  .team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4rem;
  }
  .team-card {
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
  }
  .team-card:hover { border-color: var(--border); transform: translateY(-3px); }
  .team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; letter-spacing: 0.05em;
    background: linear-gradient(135deg, #2d0020, #1a000d);
    border: 2px solid var(--pink);
    color: var(--pink);
    overflow: hidden;
  }
  .team-avatar img {
    width: calc(100% + 4px); height: calc(100% + 4px);
    margin: -2px;
    object-fit: cover; display: block;
  }
  .team-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.05em; color: #fff; margin-bottom: 0.4rem; }
  .team-pronouns { font-size: 0.7rem; font-weight: 400; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 0.3rem; opacity: 0.85; }
  .team-genres { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 1.1rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3em; opacity: 0.85; }
  .team-genres span:not(:last-child)::after { content: '·'; margin-left: 0.3em; color: rgba(255,255,255,0.25); }
  .team-highlight { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.1rem; }
  .team-role { font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.7rem; text-shadow: 0 0 18px var(--pink-glow); }
  .team-bio { font-size: 0.95rem; color:  #fff; font-weight: 400; line-height: 1.65; text-shadow: 0 0 16px var(--accent2-glow); }

  /* ========================
     CONTACT PAGE
  ======================== */
  .contact-wrapper {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: 4rem; align-items: start;
  }
  .contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem; letter-spacing: 0.05em; color: #fff;
    margin-bottom: 1rem;
  }
  .contact-info p { color: var(--muted); font-weight: 300; margin-bottom: 2rem; }
  .contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
  .contact-link-row {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.9rem 1.25rem;
    background: var(--bg2); border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    text-decoration: none; color: var(--text);
    transition: border-color 0.2s;
  }
  .contact-link-row:hover { border-color: var(--pink); }
  .contact-link-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--pink-glow); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--pink); flex-shrink: 0;
  }
  .contact-link-text strong { display: block; font-size: 0.9rem; }
  .contact-link-text span { font-size: 0.8rem; color: var(--muted); }

  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.5rem; }
  .form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
  .form-group input, .form-group textarea, .form-group select {
    background: var(--bg2); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px; padding: 0.85rem 1rem;
    color: var(--text); font-family: 'Outfit', sans-serif; font-size: 0.95rem;
    transition: border-color 0.2s; outline: none; width: 100%;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--pink);
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: #444; }
  .form-group textarea { resize: vertical; min-height: 130px; }
  .form-group select option { background: var(--bg2); }
  .form-submit { text-align: right; }
  .form-success {
    display: none; background: rgba(255,45,120,0.1); border: 1px solid var(--border);
    border-radius: 8px; padding: 1rem 1.25rem;
    color: var(--pink); font-size: 0.9rem; font-weight: 500;
  }

  /* DIVIDER */
  .divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); }

  /* FOOTER */
  footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    color: var(--muted); font-size: 0.8rem;
    flex-shrink: 0;
  }
  footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: var(--pink); }

  /* COLORS per event */
  .ev-c1 { background: linear-gradient(135deg, #1a0018, #2a0035); }
  .ev-c2 { background: linear-gradient(135deg, #001a1a, #00302a); }
  .ev-c3 { background: linear-gradient(135deg, #1a1000, #2a2000); }
  .ev-c4 { background: linear-gradient(135deg, #001020, #001030); }
  .ev-c5 { background: linear-gradient(135deg, #1a0010, #2d0020); }
  .ev-c6 { background: linear-gradient(135deg, #0d0018, #1a0028); }

  /* ========================
     RESPONSIVE
  ======================== */
  @media (max-width: 900px) {
    .next-event-card { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 1.25rem; height: 60px; }
    .page-content { padding-top: 60px; }
    .nav-logo { font-size: 1.5rem; }

    /* Mobile nav layout: hamburger left, logo centered, socials right */
    nav {
      position: relative;
    }
    .nav-toggle {
      display: flex; order: 1;
      width: 36px; height: 36px;
      margin-left: -0.25rem;
      gap: 4px;
    }
    .nav-toggle span { width: 18px; height: 2px; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .nav-logo {
      order: 2;
      position: absolute;
      left: 50%;
      transform: translateX(calc(-50%));
    }
    .nav-social { order: 3; display: none; }

    .nav-links-social-mobile {
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 1.25rem 1.5rem;
    }
    .nav-links-social-mobile a {
      color: var(--muted); transition: color 0.2s, border-color 0.2s;
      display: flex; align-items: center; justify-content: center;
      width: 42px; height: 42px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .nav-links-social-mobile a:hover { color: var(--pink); border-color: var(--pink); }
    .nav-links-social-mobile svg { width: 20px; height: 20px; }

    .nav-links {
      position: fixed; top: 60px; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      background: rgba(8,8,8,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease;
      z-index: 99;
    }
    .nav-links.open { max-height: 400px; }
    .nav-links a {
      padding: 1rem 1.5rem; border-radius: 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      width: 100%;
    }
    .nav-social a { width: 38px; height: 38px; }
    .nav-social svg { width: 18px; height: 18px; }
    .nav-social { gap: 0.5rem; }

    .hero { padding: 3rem 1.25rem; min-height: calc(100vh - 60px); }
    .hero-logo img { width: min(88vw, 500px); }
    .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
    .hero-cta { width: 100%; }
    .hero-cta .btn { flex: 1 1 auto; text-align: center; }
    .hero-cta-secondary { width: 100%; }
    .hero-cta-secondary .btn { width: 100%; text-align: center; }

    .section { padding: 3rem 1.25rem; }
    .section-title { margin-bottom: 1.75rem; }

    .next-event-visual { min-height: 220px; }
    .next-event-image { min-height: 220px; }
    .next-event-info { padding: 2rem 1.5rem; gap: 1.1rem; }
    .event-name { font-size: 2rem; }
    .event-name-sub { font-size: 1.5rem; }

    .events-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.5rem; padding: 0 1.25rem 3rem; }
    .gallery-header { padding: 2rem 1.25rem 1.5rem; }

    .team-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.5rem; }
    .team-card { padding: 1.5rem 1rem; }

    .contact-link-row { padding: 0.8rem 1rem; }

    footer {
      flex-direction: column; gap: 0.75rem; align-items: flex-start;
      padding: 1.5rem 1.25rem; text-align: left;
    }
  }

  @media (max-width: 420px) {
    .hero-eyebrow { font-size: 0.65rem; }
    .section-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    .event-name { font-size: 1.6rem; }
    .event-name-sub { font-size: 1.2rem; }
    .hero-cta { flex-direction: column; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
  }