/* color variables */
    :root {
      --red:      #e8170e;
      --red-hot:  #ff3b30;
      --red-dim:  #8c1009;
      --red-deep: #1a0300;
      --burg:     #5a0a18;
      --purple:   #1a0538;
      --text:     #fff;
      --muted:    rgba(255,255,255,0.55);
      --border:   rgba(255,255,255,0.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--red-deep);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      min-height: 100vh;
    }

    /* grain texture overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 200px 200px;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.4;
    }

    /* intro overlay */
    #intro {
      position: fixed;
      inset: 0;
      z-index: 5000;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0a0000;
      transition: opacity 0.6s ease;
    }

    #intro.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    #intro-logo {
      width: 220px;
      height: 220px;
      object-fit: contain;
      opacity: 0;
      transform: scale(0.6);
      transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
      mix-blend-mode: lighten;
      filter: drop-shadow(0 0 60px rgba(232,23,14,0.7));
    }

    #intro-logo.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* nav */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: 64px;
      display: flex;
      align-items: center;
      padding: 0 2rem;
      background: rgba(10, 0, 0, 0.6);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    nav.visible { opacity: 1; }

    .nav-logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-flame {
      width: 36px;
      height: 36px;
      object-fit: contain;
      mix-blend-mode: lighten;
      filter: drop-shadow(0 0 8px rgba(232,23,14,0.7));
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      margin-left: auto;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    /* main */
    main {
      padding-top: 64px;
      opacity: 0;
      transition: opacity 0.7s ease 0.3s;
    }
    main.visible { opacity: 1; }

    /* hero */
    .hero {
      position: relative;
      min-height: calc(100vh - 64px);
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    /* background glow blobs */
    .hero::before {
      content: '';
      position: absolute;
      top: -10%; left: -5%;
      width: 70vw; height: 100vh;
      background: radial-gradient(ellipse at 30% 40%, rgba(232,23,14,0.28) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -20%; right: -10%;
      width: 50vw; height: 80vh;
      background: radial-gradient(ellipse at 70% 60%, rgba(180,10,5,0.18) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }

    .hero-text {}

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--red-hot);
      margin-bottom: 1.2rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: var(--red-hot);
    }

    .hero-desc {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.7;
      max-width: 44ch;
      margin-bottom: 2.5rem;
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .hero-flame {
      width: min(280px, 40vw);
      height: auto;
      mix-blend-mode: lighten;
      filter: drop-shadow(0 0 80px rgba(232,23,14,0.5))
              drop-shadow(0 0 30px rgba(255,80,50,0.4));
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-14px); }
    }

    /* glow ring behind the hero image */
    .hero-visual::before {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(232,23,14,0.18) 0%, transparent 70%);
    }

    /* about section */
    .about-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(255,255,255,0.025);
    }

    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 5rem 2rem;
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 4rem;
      align-items: start;
    }

    .about-label-col {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .section-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--red);
      font-weight: 500;
    }

    .about-label-col h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      line-height: 1;
      letter-spacing: 0.06em;
    }

    .about-content p {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.97rem;
      max-width: 64ch;
      margin-bottom: 1.2rem;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .chip {
      padding: 0.3rem 0.85rem;
      border: 1px solid rgba(232,23,14,0.4);
      border-radius: 999px;
      font-size: 0.73rem;
      letter-spacing: 0.07em;
      color: var(--red-hot);
      background: rgba(232,23,14,0.06);
    }

    /* carousel */
    .carousel-section {
      padding: 5rem 0;
    }

    .carousel-header {
      max-width: 1100px;
      margin: 0 auto 2rem;
      padding: 0 2rem;
    }

    .carousel-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      letter-spacing: 0.06em;
    }

    .carousel-track-wrap {
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: var(--red-dim) transparent;
      cursor: grab;
      user-select: none;
    }

    .carousel-track-wrap:active { cursor: grabbing; }
    .carousel-track-wrap::-webkit-scrollbar { height: 3px; }
    .carousel-track-wrap::-webkit-scrollbar-thumb { background: var(--red-dim); border-radius: 2px; }

    .carousel-track {
      display: flex;
      gap: 1.25rem;
      padding: 0.5rem 2rem 1.5rem;
      width: max-content;
    }

    .carousel-card {
      width: 320px;
      height: 240px;
      flex-shrink: 0;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--border);
      background: #1a0500;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .carousel-card:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 20px 60px rgba(232,23,14,0.25);
    }

    .card-art {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.1rem;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.25);
    }

    .card-art-1 { background: linear-gradient(135deg, #1a0300 0%, #3d0a05 50%, #1a0300 100%); }
    .card-art-2 { background: linear-gradient(135deg, #0d0020 0%, #2a0540 50%, #0d0020 100%); }
    .card-art-3 { background: linear-gradient(135deg, #001a0d 0%, #004020 50%, #001a0d 100%); }
    .card-art-4 { background: linear-gradient(135deg, #1a1000 0%, #403000 50%, #1a1000 100%); }
    .card-art-5 { background: linear-gradient(135deg, #00101a 0%, #003040 50%, #00101a 100%); }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
      display: flex;
      align-items: flex-end;
      padding: 1rem 1.2rem;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

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

    .card-overlay span {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }

    /* to add your own images, replace .card-art with:
       <img src="your-image.png" class="card-img" alt="description" /> */
    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* dj button */
    .dj-btn-section {
      padding: 2rem 2rem 6rem;
      display: flex;
      justify-content: center;
    }

    .dj-btn {
      position: relative;
      padding: 1rem 3rem;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.4rem;
      letter-spacing: 0.2em;
      color: var(--text);
      background: transparent;
      border: 1px solid var(--red);
      border-radius: 4px;
      cursor: pointer;
      overflow: hidden;
      transition: color 0.3s ease, box-shadow 0.3s ease;
    }

    .dj-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
      z-index: 0;
    }

    .dj-btn:hover::before { transform: scaleX(1); }
    .dj-btn:hover { box-shadow: 0 0 40px rgba(232,23,14,0.4); }
    .dj-btn span { position: relative; z-index: 1; }

    /* modal */
    #dj-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    #dj-modal.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(5, 0, 15, 0.72);
      backdrop-filter: blur(18px) saturate(0.5);
      -webkit-backdrop-filter: blur(18px) saturate(0.5);
    }

    /* burgundy/purple tint over the blurred backdrop */
    .modal-backdrop::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(90,10,24,0.45) 0%, rgba(26,5,56,0.55) 100%);
    }

    .modal-card {
      position: relative;
      z-index: 1;
      max-width: 520px;
      width: 100%;
      background: linear-gradient(145deg, rgba(60,5,18,0.9) 0%, rgba(18,3,40,0.95) 100%);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 3rem 2.5rem;
      transform: translateY(30px) scale(0.97);
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 40px 120px rgba(0,0,0,0.7),
                  0 0 0 1px rgba(90,10,24,0.4),
                  inset 0 1px 0 rgba(255,255,255,0.06);
    }

    #dj-modal.open .modal-card {
      transform: translateY(0) scale(1);
    }

    .modal-close {
      position: absolute;
      top: 1rem; right: 1.2rem;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 1.5rem;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--text); }

    .modal-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }

    .modal-flame {
      width: 48px;
      height: 48px;
      object-fit: contain;
      mix-blend-mode: lighten;
      filter: drop-shadow(0 0 14px rgba(150,20,60,0.8));
    }

    .modal-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      letter-spacing: 0.1em;
      line-height: 1;
      background: linear-gradient(to right, #c8547a, #9b59c0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .modal-dot {
      -webkit-text-fill-color: rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.3);
    }

    .modal-tag {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: rgba(200,80,120,0.8);
      margin-bottom: 1.5rem;
    }

    .modal-divider {
      height: 1px;
      background: linear-gradient(to right, rgba(150,30,60,0.5), rgba(60,10,120,0.5));
      margin-bottom: 1.5rem;
    }

    .modal-body p {
      color: rgba(255,255,255,0.6);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .modal-body p:last-of-type { margin-bottom: 2rem; }

    .spotify-link {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.9rem 1.2rem;
      background: rgba(30, 215, 96, 0.08);
      border: 1px solid rgba(30, 215, 96, 0.25);
      border-radius: 8px;
      text-decoration: none;
      color: var(--text);
      font-size: 0.9rem;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }

    .spotify-link:hover {
      background: rgba(30, 215, 96, 0.14);
      border-color: rgba(30, 215, 96, 0.5);
      transform: translateY(-2px);
    }

    .spotify-icon { flex-shrink: 0; width: 28px; height: 28px; }

    .spotify-meta { display: flex; flex-direction: column; gap: 0.1rem; }

    .spotify-meta small {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(30,215,96,0.7);
    }

    /* lightbox */
    #lightbox {
      position: fixed;
      inset: 0;
      z-index: 3000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    #lightbox.open {
      opacity: 1;
      pointer-events: all;
    }

    #lightbox-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.88);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    #lightbox-img {
      position: relative;
      z-index: 1;
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: 6px;
      transform: scale(0.95);
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 40px 120px rgba(0,0,0,0.8);
    }

    #lightbox.open #lightbox-img {
      transform: scale(1);
    }

    #lightbox-close {
      position: absolute;
      top: 1.2rem; right: 1.5rem;
      z-index: 2;
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }
    #lightbox-close:hover { color: #fff; }

    #lightbox-label {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: rgba(255,255,255,0.4);
    }

    /* make carousel cards feel clickable */
    .carousel-card { cursor: pointer; }

    /* footer */
    footer {
      border-top: 1px solid var(--border);
      padding: 2rem;
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.2);
      letter-spacing: 0.08em;
    }

    /* responsive */
    @media (max-width: 768px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }
      .hero-text { order: 2; }
      .hero-visual { order: 1; }
      .hero-desc { margin: 0 auto 2rem; }
      .about-inner { grid-template-columns: 1fr; gap: 1.5rem; }
      .about-label-col h2 { font-size: 2rem; }
      .carousel-card { width: 260px; height: 200px; }
      .nav-links { gap: 1rem; }
    }

    @media (max-width: 480px) {
      .nav-links li:not(:last-child) { display: none; }
    }



.buttonWall {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    align-content: flex-start;
}

.funnybutton{
    cursor: url("assets/cursors/hand.png") 0 0, pointer;
}

.funnybutton:hover {
    transform: translateY(-1px);
}