
    /* ── TRYOUTS SECTION ─────────────────────────────────────────── */
    .tryouts {
      padding: 100px 5vw 80px;
      background: var(--dark, #0d1220);
      text-align: center;
    }
    .tryouts-header {
      margin-bottom: 48px;
    }
    .tryouts-carousel {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }
    .tryout-track-wrap {
      flex: 1;
      overflow: hidden;
      border-radius: 16px;
      /* box-shadow: 0 8px 40px rgba(0,0,0,0.45); */
    }
    .tryout-track {
      display: flex;
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }
    .tryout-slide {
      min-width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      /* background: #111827; */
    }
    .tryout-slide img {
      width: 100%;
      height: auto;
      max-height: 78vh;
      object-fit: contain;
      display: block;
      user-select: none;
    }
    .tryout-arrow {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.07);
      color: #fff;
      font-size: 1.4rem;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.15s;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
    }
    .tryout-arrow:hover {
      background: var(--pink, #e91e8c);
      border-color: var(--pink, #e91e8c);
      transform: scale(1.1);
    }
    .tryout-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }
    .tryout-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.25);
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      padding: 0;
    }
    .tryout-dot.active {
      background: var(--pink, #e91e8c);
      transform: scale(1.3);
    }
    @media (max-width: 600px) {
      .tryout-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }
      .tryouts-carousel {
        gap: 10px;
      }
    }
    /* ── END TRYOUTS SECTION ──────────────────────────────────────── */
  