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

    :root {
      --bg: #06060a;
      --bg-soft: #101018;
      --text: #f5f5f7;
      --muted: #a8a8b8;
      /*--accent: #9f7aea;
      --accent-2: #ff6ec7;*/
      --accent: #ea7abf;
      --accent-2: #ed2100;
      --border: rgba(255,255,255,0.08);
      --glass: rgba(255,255,255,0.05);
    }

    body {
      /*font-family: "Space Grotesk", sans-serif;*/
      font-family: "Glacial Indifference", sans-serif;
      background: radial-gradient(circle at top, #1a1033 0%, #06060a 45%);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(255,110,199,0.15), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(159,122,234,0.18), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(120,119,198,0.12), transparent 40%);
      filter: blur(80px);
      z-index: -1;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(1150px, 92%);
      margin: auto;
    }

    /* NAV */

    nav {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 999;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      background: rgba(5,5,10,0.55);
      border-bottom: 1px solid var(--border);
    }

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

    .burger {
    display: none;
    }
    /*
    .logo {
      font-size: 1.2rem;
      letter-spacing: 0.35rem;
      font-weight: 700;
    }
    */

    .logo {
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 0.35rem;
    font-weight: 700;
    color: #fff;
    }

    /* shared layers */
    .logo::before,
    .logo::after {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      pointer-events: none;
      mix-blend-mode: screen;
    }

    /* red channel */
    .logo::before {
      color: rgba(237, 33, 0, 0.55);
      transform: translate(-4px, 0);
      filter: blur(0.8px);
    }

    /* blue/cyan channel */
    .logo::after {
      color: rgba(80, 170, 255, 0.5);
      transform: translate(4px, 0);
      filter: blur(0.8px);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-links a {
      color: var(--muted);
      transition: 0.3s;
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      color: white;
    }

    /* HERO */

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .28;
    filter:
      blur(8px)
      contrast(120%)
      saturate(130%);
    z-index: -2;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 4rem;
      align-items: center;
      padding-top: 6rem;
    }

    .eyebrow {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.25rem;
      margin-bottom: 1rem;
      font-size: 0.8rem;
    }
/*
    .hero h1 {
      font-size: clamp(3rem, 9vw, 7rem);
      line-height: 0.95;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }
*/
    .hero h1 {
    position: relative;
    display: inline-block;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #fff;

    text-shadow:
        0 0 8px rgba(255,255,255,0.08),
        0 0 20px rgba(255,255,255,0.03);
    }

    .hero h1::before,
    .hero h1::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    }

    /* pink/red channel */
    .hero h1::before {
    /*color: rgba(255, 50, 180, 0.55);*/
    color: rgba(237, 33, 0, 0.55);
    transform: translate(-7px, 0);
    filter: blur(1px);
    }

    /* cyan/blue channel */
    .hero h1::after {
    color: rgba(80, 170, 255, 0.5);
    transform: translate(7px, 0);
    filter: blur(1px);
    }



    .hero p {
      color: var(--muted);
      max-width: 600px;
      margin-bottom: 2rem;
      font-size: 1.05rem;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      transition: 0.3s;
      font-weight: 500;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: white;
      border: none;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(159,122,234,0.35);
    }

    .btn-secondary {
      background: var(--glass);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.08);
    }

    .hero-image {
      position: relative;
    }

    .hero-image img {
      border-radius: 24px;
      opacity: 0.9;
      border: 1px solid var(--border);
      filter: grayscale(30%) contrast(110%);
    }

    .floating-card {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: rgba(10,10,18,0.75);
      backdrop-filter: blur(12px);
      padding: 1rem 1.2rem;
      border-radius: 18px;
      border: 1px solid var(--border);
      width: 220px;
    }

    .floating-card small {
      color: var(--muted);
      display: block;
      margin-bottom: 0.3rem;
    }

    /* SECTION */

    section {
      padding: 7rem 0;
    }

    .section-title {
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
    }

    .section-title p {
      color: var(--muted);
      max-width: 700px;
    }

    /* MUSIC CARDS */

    .music-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .music-card {
      background: var(--glass);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      transition: 0.35s;
      backdrop-filter: blur(12px);
    }

    .music-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,255,255,0.16);
    }

    .music-card img {
      height: 260px;
      width: 100%;
      object-fit: cover;
    }

    .music-content {
      padding: 1.4rem;
    }

    .music-content h3 {
      margin-bottom: 0.5rem;
    }

    .music-content p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    /* TOUR */

    .tour-list {
      display: grid;
      gap: 1rem;
    }

    .tour-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: 1.2rem 1.4rem;
      background: var(--glass);
      border-radius: 18px;
      border: 1px solid var(--border);
      flex-wrap: wrap;
    }

    .tour-date {
      font-size: 1.3rem;
      font-weight: 700;
    }

    .tour-location {
      color: var(--muted);
    }

    .ticket-btn {
      padding: 0.7rem 1.1rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      transition: 0.3s;
    }

    .ticket-btn:hover {
      background: rgba(255,255,255,0.08);
    }

    /* ABOUT */

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .about-grid img {
      border-radius: 24px;
      border: 1px solid var(--border);
    }

    .about-text p {
      color: var(--muted);
      margin-bottom: 1rem;
    }

    /* FOOTER */

    footer {
      padding: 3rem 0;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--muted);
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 1rem;
      flex-wrap: wrap;
    }

    .socials a {
      padding: 0.8rem 1rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      transition: 0.3s;
    }

    .socials a:hover {
      background: rgba(255,255,255,0.08);
    }

    /* Banner container */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(5,5,10,0.55);
      padding: 1rem 2rem;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
      display: flex;
      justify-content: center;
      z-index: 1000;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }

  /* Show banner */
    .cookie-banner.show {
      transform: translateY(0);
   }

  /* Content wrapper */
  .cookie-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 960px;
    width: 100%;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* Text */
  .cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--muted);
  }

  .cookie-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .btn-cookie {
      background: var(--glass);
      backdrop-filter: blur(10px);
      color: var(--muted);
    }

  .btn-cookie:hover {
      background: rgba(255,255,255,0.08);
    }



    /* MOBILE */

    @media (max-width: 900px) {
      .hero-grid,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .hero-image {
        order: -1;
      }

      .hero {
        padding-top: 4rem;
      }

      .nav-links {
        gap: 1rem;
      }

      .hero h1 {
        font-size: 4rem;
      }

      .burger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      color: #fff;
      }

      .burger span {
      width: 26px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: .3s;
      }

      .nav-links {
      position: absolute;
      top: 100%;
      width: 100%;
      right: 0;
      background: rgba(5,5,10,0.55);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: none;
      flex-direction: column;
      text-align: center;
      padding: 1rem 0;
      z-index: 1000;
      }

      .nav-links a {
      margin: 1rem 0;
      color: #fff
      }

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

    @media (max-width: 600px) {
      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1rem;
        width: 100%;
      }

      .tour-item {
        align-items: flex-start;
      }

      .cookie-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-content p {
    flex: unset;
    width: 100%;
    margin-bottom: 1rem;
  }
    }