:root {
      --bg: #e8dcc9;
      --primary: #2d267d;
      --accent: #efb4b5;
      --overlay: rgba(232, 220, 201, 0.22);
    }

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

    html,
    body {
      width: 100%;
      min-height: 100%;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Bricolage Grotesque', sans-serif;
      background: var(--bg);
      color: var(--primary);
      overflow-x: hidden;

      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      width: 100%;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 60px 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;

      background-image:
        linear-gradient(var(--overlay), var(--overlay)),
        url('fondo-jaiak2026.jpg');

      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;

      z-index: 1;
      transform: scale(1.01);
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;

      background: linear-gradient(
        to bottom,
        rgba(232,220,201,0.10) 0%,
        rgba(232,220,201,0.16) 45%,
        rgba(232,220,201,0.26) 100%
      );
    }

    .container {
      position: relative;
      z-index: 2;

      width: 100%;
      max-width: 1280px;

      margin: 0 auto;
      padding: 0 60px;
    }

    .left-column {
      position: relative;
      max-width: 920px;
    }

    .title-wrap {
      position: relative;
      display: inline-block;
    }

    .title {
      font-size: clamp(4rem, 9vw, 8rem);
      line-height: 0.9;
      font-weight: 900;
      letter-spacing: -4px;
      margin-bottom: 24px;
    }

    .title-ray {
      position: absolute;

      top: -40px;
      right: -250px;

      width: clamp(140px, 18vw, 320px);

      z-index: 3;

      animation: floatBolt 7s cubic-bezier(.45,.05,.55,.95) infinite;

      pointer-events: none;
    }

    .title-ray img {
      width: 100%;
      height: auto;
      display: block;
    }

    @keyframes floatBolt {

      0% {
        transform: translate3d(0px, 0px, 0) rotate(0deg) scale(1);
      }

      20% {
        transform: translate3d(8px, -14px, 0) rotate(4deg) scale(1.03);
      }

      40% {
        transform: translate3d(-6px, -28px, 0) rotate(-3deg) scale(1.06);
      }

      60% {
        transform: translate3d(10px, -18px, 0) rotate(5deg) scale(1.04);
      }

      80% {
        transform: translate3d(-4px, -8px, 0) rotate(-2deg) scale(1.02);
      }

      100% {
        transform: translate3d(0px, 0px, 0) rotate(0deg) scale(1);
      }

    }

    .dates {
      font-size: clamp(1.2rem, 2vw, 2.1rem);
      font-weight: 700;
      margin-bottom: 28px;
    }

    .cta-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 55px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      padding: 14px 22px;

      border-radius: 999px;

      background: var(--primary);
      color: white;
      border: 0;
      cursor: pointer;
      font-family: inherit;

      font-weight: 800;
      font-size: 1.2rem;

      transition:
        transform 0.25s ease,
        opacity 0.25s ease,
        box-shadow 0.25s ease;

      box-shadow:
        0 10px 30px rgba(45,38,125,0.18);
    }

    .cta-button:hover {
      transform: translateY(-3px) scale(1.03);

      opacity: 0.95;

      box-shadow:
        0 14px 34px rgba(45,38,125,0.28);
    }

    .cta-button.volunteer {
      background: #efb4b5;
      color: #2d267d;
    }

    .cta-button.shirt {
      background: var(--primary);
      color: #fff;
    }

    .shirt-modal {
      position: fixed;
      inset: 0;
      z-index: 20;

      display: none;
      align-items: center;
      justify-content: center;

      padding: 24px;
      background: rgba(16, 14, 48, 0.74);
    }

    .shirt-modal.is-visible {
      display: flex;
    }

    .shirt-modal__dialog {
      position: relative;
      width: min(92vw, 720px);
      max-height: 92svh;

      border-radius: 8px;
      overflow: hidden;
      background: var(--bg);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    }

    .shirt-modal__image {
      display: block;
      width: 100%;
      max-height: 92svh;
      object-fit: contain;
    }

    .shirt-modal__close {
      position: absolute;
      top: 12px;
      right: 12px;

      display: inline-flex;
      align-items: center;
      justify-content: center;

      width: 42px;
      height: 42px;

      border: 0;
      border-radius: 50%;
      background: rgba(45, 38, 125, 0.94);
      color: #fff;
      cursor: pointer;
      font-size: 1.7rem;
      line-height: 1;
    }

    .shirt-modal__close:hover {
      opacity: 0.88;
    }

    .share-wrapper {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .share-title {
      font-size: 0.95rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .share-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .share-button {
      width: 42px;
      height: 42px;

      border-radius: 50%;

      display: inline-flex;
      align-items: center;
      justify-content: center;

      text-decoration: none;

      color: var(--primary);

      backdrop-filter: blur(4px);

      transition:
        transform 0.22s ease,
        opacity 0.22s ease;
    }

    .share-button:hover {
      transform: translateY(-5px);
      opacity: 1;
    }

    .share-button i {
      font-size: 1.8rem;
      font-weight: 400;
    }

    .artists {
      max-width: 850px;

      display: flex;
      flex-direction: column;
      gap: 42px;
    }

    .day {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .day-label {
      font-size: 1.1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .artist-line {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .artist-main {
      font-size: clamp(2.5rem, 5vw, 5.5rem);
      line-height: 0.92;
      font-weight: 900;
      letter-spacing: -2px;
    }

    .artist-secondary {
      font-size: clamp(2.35rem, 4.7vw, 5.3rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .artist-dj {
      font-size: clamp(1.4rem, 2vw, 2.3rem);
      font-weight: 700;
    }

    .spotify-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;

      width: 38px;
      height: 38px;

      border-radius: 50%;

      background: #1DB954;
      color: white;

      text-decoration: none;

      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    }

    .spotify-link:hover {
      transform: scale(1.12) rotate(6deg);

      box-shadow:
        0 8px 20px rgba(29,185,84,0.35);
    }

    .spotify-link i {
      font-size: 1rem;
    }

    .footer-info {
      margin-top: 70px;

      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1.6;
    }

    .footer-info a {
      color: var(--primary);

      text-decoration: underline;

      transition:
        opacity 0.2s ease,
        transform 0.2s ease;

      display: inline-block;
    }

    .footer-info a:hover {
      opacity: 0.75;
      transform: translateY(-2px);
    }

    .bottom-share {
      margin-top: 50px;
    }

    @media (max-width: 980px) {

      .hero {
        align-items: flex-start;
        padding: 40px 0 60px;
      }

      .hero-bg {
        background-size: cover;
        background-position: center center;
      }

      .container {
        padding: 0 28px;
      }

      .title {
        font-size: 45px;  
        letter-spacing: -2px;
      }

      .title-ray {
        width: 150px;

        top: -20px;
        right: -140px;

        opacity: 0.92;
      }

      .dates {
        margin-bottom: 24px;
      }

      .cta-actions {
        align-items: stretch;
      }

      .cta-button {
        width: 100%;
        text-align: center;
      }

      .shirt-modal {
        padding: 14px;
      }

      .shirt-modal__close {
        top: 8px;
        right: 8px;
      }

      .artists {
        gap: 28px;
      }

      .footer-info {
        margin-top: 50px;
        font-size: 1.2rem;
    
      }

    }
