
    :root {
      --bg: #080808;
      --gold: #c9a84c;
      --gold-light: #f1d17b;
      --white: #ffffff;
      --muted: #bdbdbd;
      --border: rgba(255,255,255,0.08);
    }

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

    body {
      font-family: 'Heebo', sans-serif;
      background: var(--bg);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.7;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(201,168,76,.15), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255,255,255,.03), transparent 30%);
      pointer-events: none;
      z-index: -1;
    }

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

    /* HEADER - slim, premium glass */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 999;
      backdrop-filter: blur(20px) saturate(140%);
      -webkit-backdrop-filter: blur(20px) saturate(140%);
      background: rgba(8,8,8,.28);
      border-bottom: 1px solid rgba(255,255,255,.04);
      transition: background .4s, padding .4s;
    }
    header.scrolled { background: rgba(8,8,8,.72); border-bottom-color: rgba(255,255,255,.07); }
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px 5vw;
      background: rgba(8,8,8,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .logo {
      font-size: .82rem; letter-spacing: 3.5px; font-weight: 700; color: #fff; opacity: .95;
      transition: .35s cubic-bezier(.2,.8,.2,1);
      cursor: pointer;
      display: inline-block;
    }
    .logo:hover { transform: scale(1.06); opacity: 1; }
    .logo:active { transform: scale(.97); }
    .logo:hover b { text-shadow: 0 0 18px rgba(201,168,76,.6); }
    .logo b { color: var(--gold); font-weight: 700; transition: .35s; }
    .nav-links { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
    .nav-links a { font-size: .82rem; transition: .3s; opacity: .65; letter-spacing: .5px; font-weight: 300; }
    .nav-links a:hover { opacity: 1; color: var(--gold); }
    .nav-cta {
      background: transparent;
      color: var(--gold) !important;
      padding: 8px 20px;
      border-radius: 40px;
      font-weight: 400 !important;
      font-size: .8rem;
      opacity: 1 !important;
      border: 1px solid rgba(201,168,76,.45);
      transition: .35s;
    }
    .nav-cta:hover { background: rgba(201,168,76,.12); box-shadow: 0 0 24px rgba(201,168,76,.25); }
    .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

    section { padding: 110px 6vw; position: relative; z-index: 2; }

    /* HERO - cinematic DJ scene, split layout */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
      background: #050505;
    }
    /* RIGHT SIDE - DJ cinematic image */
    .hero-scene {
      position: relative;
      overflow: hidden;
      grid-column: 2;
    }
    .hero-scene-img {
      position: absolute;
      inset: -6%;
      background:
        url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?q=80&w=1600&auto=format&fit=crop') center/cover,
        url('images/artists-collage.webp') center/cover,
        #0d0d0d;
      animation: slowzoom 26s ease-in-out infinite alternate;
    }
    @keyframes slowzoom {
      from { transform: scale(1.08); }
      to { transform: scale(1.22); }
    }
    /* fade the scene into the black left side */
    .hero-scene::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, #050505 2%, rgba(5,5,5,.2) 40%, transparent 70%),
        linear-gradient(to top, rgba(5,5,5,.85), transparent 55%),
        radial-gradient(ellipse at 60% 40%, rgba(201,168,76,.18), transparent 60%);
      z-index: 2;
    }
    /* fog layers */
    .fog {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
      opacity: .5;
      pointer-events: none;
    }
    .fog-glow {
      position: absolute;
      width: 80%; height: 60%;
      top: 20%; right: 0;
      background: radial-gradient(ellipse, rgba(201,168,76,.22), transparent 70%);
      filter: blur(60px);
      z-index: 1;
      animation: pulse 9s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: .4; transform: scale(1); }
      50% { opacity: .85; transform: scale(1.15); }
    }
    /* LEFT SIDE - typography */
    .hero-content {
      grid-column: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 6vw;
      position: relative;
      z-index: 5;
    }
    .hero-eyebrow {
      font-size: .65rem;
      letter-spacing: 7px;
      color: var(--gold);
      opacity: .85;
      margin-bottom: 28px;
      font-weight: 300;
    }
    .hero h1 {
      font-size: clamp(3.5rem, 9vw, 9rem);
      line-height: .88;
      font-weight: 900;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .hero h1 .miki {
      display: block;
      background: linear-gradient(135deg, #f5d987 0%, var(--gold) 40%, #9c7d34 70%, #f0e0b0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 20px rgba(201,168,76,.3));
    }
    .hero h1 .haim {
      display: block;
      background: linear-gradient(135deg, #e8e8e8 0%, #9a9a9a 30%, #fff 50%, #707070 75%, #c0c0c0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 2px 14px rgba(255,255,255,.12));
    }
    .hero p {
      margin-top: 26px;
      color: #c8c8c8;
      font-size: clamp(.95rem, 2vw, 1.25rem);
      font-weight: 200;
      letter-spacing: 1px;
      max-width: 440px;
    }
    .hero-buttons { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
    /* play pill */
    .play-pill {
      margin-top: 30px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 10px 22px 10px 12px;
      border-radius: 60px;
      width: fit-content;
      cursor: pointer;
      transition: .4s;
    }
    .play-pill:hover { background: rgba(201,168,76,.1); border-color: rgba(201,168,76,.4); }
    .play-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex; align-items: center; justify-content: center;
      color: #000; font-size: .9rem;
      flex-shrink: 0;
    }
    .play-text { text-align: right; }
    .play-text small { display: block; font-size: .62rem; color: #999; letter-spacing: 2px; }
    .play-text b { font-size: .82rem; font-weight: 500; letter-spacing: 1px; }
    /* floating particles */
    .particles { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
    .particles i {
      position: absolute;
      width: 3px; height: 3px;
      background: rgba(201,168,76,.6);
      border-radius: 50%;
      bottom: -10px;
      animation: float linear infinite;
    }
    @keyframes float { to { transform: translateY(-110vh); opacity: 0; } }
    .scroll-hint {
      position: absolute;
      bottom: 30px; right: 6vw;
      z-index: 5;
      color: rgba(255,255,255,.4);
      font-size: .62rem;
      letter-spacing: 4px;
      animation: bob 2.5s ease-in-out infinite;
    }
    @keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(8px);} }

    /* ===== OZEN SECTION - the flagship ===== */
    .ozen-section {
      position: relative;
      padding: 160px 6vw;
      background: radial-gradient(ellipse at center, #0e0e0e, #050505 70%);
      overflow: hidden;
      text-align: center;
    }
    .ozen-ambient {
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 45%, rgba(201,168,76,.12), transparent 55%);
      animation: pulse 8s ease-in-out infinite;
      pointer-events: none;
    }
    .ozen-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
    .ozen-label { font-size: .68rem; letter-spacing: 6px; color: var(--gold); opacity: .8; margin-bottom: 18px; }
    .ozen-title {
      font-size: clamp(2.5rem, 7vw, 5.5rem);
      font-weight: 900;
      background: linear-gradient(135deg, #f5d987, var(--gold) 50%, #f0e0b0);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .ozen-sub {
      color: #b0b0b0; font-weight: 200; font-size: clamp(.95rem,2vw,1.15rem);
      max-width: 560px; margin: 0 auto 70px; line-height: 1.9;
    }
    .ozen-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 50px; }
    .turntable { position: relative; width: 380px; height: 380px; max-width: 82vw; max-height: 82vw; }
    .tt-platter {
      position: absolute; inset: 0; border-radius: 50%;
      background: radial-gradient(circle, #1a1a1a, #0a0a0a);
      box-shadow: 0 0 120px rgba(201,168,76,.2), inset 0 0 60px rgba(0,0,0,.8), 0 30px 80px rgba(0,0,0,.6);
      display: flex; align-items: center; justify-content: center;
    }
    .tt-vinyl {
      position: relative; width: 92%; height: 92%; border-radius: 50%;
      background: repeating-radial-gradient(circle at center, #0c0c0c 0px, #0c0c0c 2px, #161616 3px, #0c0c0c 4px);
      animation: rotate 6s linear infinite;
      display: flex; align-items: center; justify-content: center;
      box-shadow: inset 0 0 40px rgba(0,0,0,.9);
    }
    .tt-groove { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.03); }
    .tt-groove:nth-child(1){ inset: 12%; }
    .tt-groove:nth-child(2){ inset: 22%; }
    .tt-groove:nth-child(3){ inset: 32%; }
    .tt-label {
      width: 38%; height: 38%; border-radius: 50%;
      background: radial-gradient(circle, #c9a84c, #8a7235);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 30px rgba(201,168,76,.4); overflow: hidden;
    }
    .tt-label img { width: 64%; height: 64%; object-fit: contain; }
    @keyframes rotate { from{transform:rotate(0);} to{transform:rotate(360deg);} }
    .tt-arm {
      position: absolute; top: 8%; left: 6%; width: 42%; height: 6px;
      background: linear-gradient(to left, #2a2a2a, #4a4a4a);
      border-radius: 4px; transform-origin: left center; transform: rotate(28deg);
      box-shadow: 0 2px 8px rgba(0,0,0,.5); z-index: 3;
    }
    .tt-arm::after {
      content: ""; position: absolute; right: -6px; top: -4px;
      width: 16px; height: 14px; background: #c9a84c; border-radius: 2px;
    }
    .waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 70px; width: 100%; max-width: 480px; }
    .waveform span { flex: 1; background: linear-gradient(to top, var(--gold), rgba(201,168,76,.3)); border-radius: 4px; animation: wave 1.2s ease-in-out infinite; }
    @keyframes wave { 0%,100%{height:20%;} 50%{height:100%;} }
    #music-playlist { padding: 0 6vw 140px; }
    .playlist-inner { max-width: 680px; margin: 0 auto; text-align: center; }
    .pl-label { font-size: .68rem; letter-spacing: 5px; color: var(--gold); opacity: .8; margin-bottom: 14px; }
    .pl-title { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800; color: #fff; margin-bottom: 36px; }

    @media(max-width: 850px){
      .hero { grid-template-columns: 1fr; }
      .hero-scene { grid-column: 1; grid-row: 1; position: absolute; inset: 0; }
      .hero-scene::after {
        background:
          linear-gradient(to top, #050505 8%, rgba(5,5,5,.5) 50%, rgba(5,5,5,.6)),
          radial-gradient(ellipse at 50% 35%, rgba(201,168,76,.2), transparent 60%);
      }
      .hero-content { grid-column: 1; grid-row: 1; text-align: center; align-items: center; padding: 0 8vw; }
      .hero p { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .scroll-hint { right: 50%; transform: translateX(50%); }
    }

    .btn {
      padding: 15px 36px;
      border-radius: 60px;
      transition: .4s cubic-bezier(.2,.8,.2,1);
      font-weight: 400;
      letter-spacing: 1px;
      border: 1px solid rgba(255,255,255,.12);
      font-family: inherit;
      font-size: .9rem;
      cursor: pointer;
      display: inline-block;
      position: relative;
    }
    .btn-gold {
      background: linear-gradient(135deg, rgba(201,168,76,.95), rgba(241,209,123,.9));
      color: #000;
      font-weight: 600;
      box-shadow: 0 0 30px rgba(201,168,76,.25), inset 0 0 0 1px rgba(255,255,255,.1);
    }
    .btn-gold:hover { box-shadow: 0 0 50px rgba(201,168,76,.5), inset 0 0 0 1px rgba(255,255,255,.2); }
    .btn-dark {
      background: rgba(255,255,255,.04);
      color: #fff;
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
    .btn-dark:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); }
    .btn:hover { transform: translateY(-4px); }
    .btn-sm { padding: 11px 22px; font-size: .82rem; }

    .section-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; }
    .section-title { font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.05; font-weight: 900; }
    .section-link { color: var(--gold); font-size: .9rem; letter-spacing: 1px; }
    .section-subtitle { color: #b7b7b7; max-width: 700px; margin-bottom: 50px; }

    /* EVENTS */
    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
      gap: 28px;
      align-items: stretch;
    }
    .event-card {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background: rgba(255,255,255,.03);
      border: 1px solid var(--border);
      transition: .5s;
      display: flex;
      flex-direction: column;
    }
    .event-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.6); border-color: rgba(201,168,76,.35); }
    .event-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: #050505; flex-shrink: 0; }
    .event-thumb img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
    .event-card:hover .event-thumb img { transform: scale(1.06); }
    .event-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
    .event-body h3 { font-size: 1.4rem; margin-bottom: 8px; line-height: 1.2; overflow-wrap: break-word; }
    .event-meta { color: var(--gold); font-size: .92rem; margin-bottom: 6px; font-weight: 500; }
    .event-artists { color: #9a9a9a; font-size: .82rem; line-height: 1.6; margin-bottom: 18px; flex: 1; }
    .event-card .btn { width: 100%; text-align: center; margin-top: auto; }
    .event-soon { background: rgba(255,255,255,.05); color: #888; border: 1px solid rgba(255,255,255,.1); cursor: default; }
    .event-soon:hover { transform: none; }

    /* slider dots */
    .slide-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 3; }
    .slide-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,168,76,.4); cursor: pointer; display: block; transition: .3s; }
    .slide-dots i.on { background: var(--gold); }

    /* LINES */
    .lines-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(230px,1fr)); gap: 22px; }
    .line-box { aspect-ratio: 1/1; position: relative; overflow: hidden; border-radius: 24px; border: 1px solid var(--border); }
    .line-box img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
    .line-box:hover img { transform: scale(1.08); }
    .line-cap {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 40px 16px 18px;
      background: linear-gradient(to top, rgba(0,0,0,.95) 30%, transparent);
      text-align: center; transition: .4s;
    }
    .line-cap b { display: block; font-size: .95rem; font-weight: 700; color: #fff; letter-spacing: .3px; margin-bottom: 5px; }
    .line-cap i { display: block; font-size: .72rem; font-style: normal; color: #a0a0a0; line-height: 1.5; }
    .line-box:hover .line-cap b { color: var(--gold); }

    /* MUSIC */
    .music-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .vinyl-wrap { display: flex; align-items: center; justify-content: center; }
    .vinyl {
      width: 340px; height: 340px; max-width: 80vw; max-height: 80vw;
      border-radius: 50%;
      background: radial-gradient(circle at center, #111 8%, #000 14%, #222 16%, #000 30%, #111 40%, #000 60%);
      border: 12px solid #141414;
      box-shadow: 0 0 100px rgba(201,168,76,.15);
      animation: rotate 12s linear infinite;
      position: relative;
    }
    .vinyl::after { content: ""; position: absolute; inset: 42%; background: var(--gold); border-radius: 50%; }
    @keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
    .spotify-embed { margin-top: 28px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }

    /* ARTISTS */
    /* Intro SEO section */
    .intro-section { padding: 90px 6vw 40px; }
    .intro-inner { max-width: 860px; margin: 0 auto; text-align: center; }
    .intro-lead { font-size: clamp(1.2rem, 3vw, 1.7rem); color: #e8e8e8; font-weight: 300; line-height: 1.7; margin-bottom: 22px; }
    .intro-lead b { color: var(--gold); font-weight: 600; }
    .intro-text { font-size: clamp(.95rem, 2vw, 1.1rem); color: #989898; font-weight: 300; line-height: 1.9; }

    /* International roster - elegant name list */
    .intl-roster {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }
    .intl-name {
      padding: 32px 20px;
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 800;
      color: #6a6a6a;
      border-bottom: 1px solid rgba(255,255,255,.08);
      border-left: 1px solid rgba(255,255,255,.05);
      transition: .4s;
      letter-spacing: .5px;
      text-align: center;
      cursor: default;
      position: relative;
    }
    .intl-name:hover {
      color: var(--gold);
      background: rgba(201,168,76,.04);
      text-shadow: 0 0 30px rgba(201,168,76,.4);
    }

    /* Poster gallery - international artists */
    .poster-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 18px;
    }
    .poster {
      position: relative;
      aspect-ratio: 1/1;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid var(--border);
      cursor: pointer;
    }
    .poster img {
      width: 100%; height: 100%; object-fit: cover;
      filter: grayscale(40%) brightness(.85);
      transition: .6s;
    }
    .poster:hover img { filter: grayscale(0%) brightness(1); transform: scale(1.08); }
    .poster span {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 30px 14px 14px;
      background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
      font-size: .82rem; font-weight: 600; color: #fff;
      transform: translateY(4px); opacity: .9; transition: .4s;
    }
    .poster:hover span { transform: translateY(0); opacity: 1; color: var(--gold); }

    /* Collab + archive gallery */
    .collab-gallery, .archive-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
    }
    .archive-grid { margin-top: 40px; }
    .collab-item {
      aspect-ratio: 1/1;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      display: block;
    }
    .collab-item img { width: 100%; height: 100%; object-fit: cover; transition: .6s; }
    .collab-item:hover img { transform: scale(1.06); }
    .archive-link-wrap { text-align: center; margin-top: 50px; }


    /* TIMELINE */
    .story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .story-text { display: flex; flex-direction: column; gap: 18px; }
    .story-text p { color: #b8b8b8; font-size: 1rem; line-height: 1.9; font-weight: 300; }
    .story-text a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.4); transition: .3s; }
    .story-text a:hover { border-bottom-color: var(--gold); text-shadow: 0 0 12px rgba(201,168,76,.4); }
    .timeline { display: flex; flex-direction: column; gap: 40px; position: relative; padding-right: 40px; }
    .timeline::before { content: ""; position: absolute; top: 0; bottom: 0; right: 8px; width: 2px; background: rgba(255,255,255,.1); }
    .timeline-item { position: relative; background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 24px; padding: 28px; }
    .timeline-item::before { content: ""; position: absolute; right: -39px; top: 34px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,.6); }
    .timeline-item h3 { color: var(--gold); font-size: 1.8rem; margin-bottom: 8px; }
    .timeline-item p { color: #cfcfcf; }

    /* CONTACT */
    .contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: rgba(255,255,255,.03); border-radius: 36px; border: 1px solid var(--border); padding: 48px; }
    .contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
    .contact-links a { transition: .3s; opacity: .85; }
    .contact-links a:hover { opacity: 1; color: var(--gold); }
    form { display: flex; flex-direction: column; gap: 16px; }
    input { background: rgba(255,255,255,.06); border: 1px solid var(--border); color: #fff; padding: 16px; border-radius: 14px; font-family: inherit; font-size: .95rem; }
    input:focus { outline: none; border-color: var(--gold); }
    input::placeholder { color: #888; }
    .form-msg { color: var(--gold); font-size: .9rem; display: none; }

    /* Social section */
    .social-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }
    .social-chip {
      padding: 13px 26px; border-radius: 50px;
      border: 1px solid rgba(201,168,76,.35); color: var(--gold);
      font-size: .9rem; font-weight: 500; transition: .35s;
    }
    .social-chip:hover { background: rgba(201,168,76,.12); box-shadow: 0 0 24px rgba(201,168,76,.25); transform: translateY(-3px); }
    .social-sub { font-size: 1.1rem; color: #fff; font-weight: 600; margin-bottom: 24px; opacity: .8; }
    .groups-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
    .group-card {
      display: flex; align-items: center; gap: 12px;
      padding: 18px 22px; border-radius: 16px;
      background: rgba(255,255,255,.03); border: 1px solid var(--border);
      color: #d0d0d0; font-size: .92rem; font-weight: 500; transition: .35s;
    }
    .group-card span { font-size: 1.3rem; }
    .group-card:hover { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.05); color: #fff; transform: translateY(-3px); }

    /* Line Modal */
    .line-modal {
      display: none;
      position: fixed; inset: 0; z-index: 2000;
      background: rgba(0,0,0,.85);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      align-items: center; justify-content: center;
      padding: 20px;
    }
    .line-modal.open { display: flex; animation: fadeModal .3s ease; }
    @keyframes fadeModal { from{opacity:0;} to{opacity:1;} }
    .line-modal-box {
      background: #0e0e0e;
      border: 1px solid rgba(201,168,76,.25);
      border-radius: 28px;
      max-width: 560px; width: 100%;
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(0,0,0,.7), 0 0 60px rgba(201,168,76,.1);
      position: relative;
      animation: popModal .35s cubic-bezier(.2,.8,.2,1);
    }
    @keyframes popModal { from{transform:scale(.9);opacity:0;} to{transform:scale(1);opacity:1;} }
    .line-modal-close {
      position: absolute; top: 14px; left: 14px; z-index: 3;
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.15);
      color: #fff; font-size: 1rem; cursor: pointer; transition: .3s;
      backdrop-filter: blur(8px);
    }
    .line-modal-close:hover { background: rgba(201,168,76,.3); border-color: var(--gold); }
    .line-modal-img { width: 100%; aspect-ratio: 1/1; max-height: 360px; overflow: hidden; background: #050505; }
    .line-modal-img img { width: 100%; height: 100%; object-fit: cover; }
    .line-modal-body { padding: 30px 32px 34px; }
    .line-modal-body h3 {
      font-size: 1.8rem; font-weight: 900; margin-bottom: 14px;
      background: linear-gradient(135deg, #f5d987, var(--gold) 60%, #f0e0b0);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .line-modal-body p { color: #c0c0c0; font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 18px; }
    .lm-genres { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
    .lm-genres span {
      font-size: .75rem; color: var(--gold);
      border: 1px solid rgba(201,168,76,.3); border-radius: 40px;
      padding: 6px 14px;
    }
    .line-box { cursor: pointer; }

    footer { padding: 40px; text-align: center; color: #8d8d8d; border-top: 1px solid var(--border); font-size: .85rem; letter-spacing: 1px; }
    footer .footer-links { margin-bottom: 14px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
    footer .footer-links a:hover { color: var(--gold); }

    .reveal { opacity: 0; transform: translateY(50px); transition: 1s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }

    @media(max-width: 900px){
      .music-layout, .contact-box { grid-template-columns: 1fr; }
      .story-layout { grid-template-columns: 1fr; gap: 40px; }
      .contact-box { padding: 32px; }
      .nav-links {
        display: none;
        position: absolute; top: 100%; right: 0; left: 0;
        flex-direction: column;
        background: rgba(8,8,8,.97);
        padding: 20px;
        gap: 18px;
        border-bottom: 1px solid var(--border);
      }
      .nav-links.open { display: flex; }
      .menu-toggle { display: block; }
      nav { position: relative; }
      section { padding: 80px 6vw; }
    }
  
/* ===== INTERNAL PAGES ===== */
.inner-hero { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 120px 6vw 60px; }
.inner-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,.12), transparent 60%), #080808; z-index: 0; }
.inner-hero-content { position: relative; z-index: 1; max-width: 800px; }
.inner-hero-logo { width: 180px; height: 180px; object-fit: cover; border-radius: 28px; margin: 0 auto 30px; border: 1px solid rgba(201,168,76,.3); box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.inner-hero-title { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; background: linear-gradient(135deg,#f5d987,var(--gold) 55%,#f0e0b0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.inner-hero-sub { font-size: clamp(1rem, 2.5vw, 1.3rem); color: #b0b0b0; font-weight: 300; line-height: 1.7; }
.inner-body { padding: 40px 6vw 100px; }
.inner-wrap { max-width: 820px; margin: 0 auto; }
.inner-wrap h2 { font-size: clamp(1.5rem,3.5vw,2.2rem); color: var(--gold); font-weight: 800; margin: 40px 0 18px; }
.inner-wrap h3 { font-size: 1.2rem; color: #fff; font-weight: 700; margin: 28px 0 12px; }
.inner-wrap p { color: #c0c0c0; font-size: 1.05rem; line-height: 1.95; font-weight: 300; margin-bottom: 18px; }
.inner-wrap p a { color: var(--gold); border-bottom: 1px solid rgba(201,168,76,.4); }
.inner-wrap ul { list-style: none; margin: 18px 0; padding: 0; }
.inner-wrap li { color: #c0c0c0; font-size: 1.02rem; line-height: 1.9; padding-right: 26px; position: relative; }
.inner-wrap li::before { content: '▸'; color: var(--gold); position: absolute; right: 0; }
.genre-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.genre-tags span { font-size: .82rem; color: var(--gold); border: 1px solid rgba(201,168,76,.3); border-radius: 40px; padding: 8px 18px; }
.inner-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 50px; }
@media (max-width:768px){ .inner-hero{min-height:50vh;} .inner-hero-logo{width:140px;height:140px;} .inner-cta{flex-direction:column;} .inner-cta .btn{width:100%;text-align:center;} }

/* ===== EVENTS ECOSYSTEM ===== */
/* Filters bar */
.events-toolbar { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 40px; align-items: center; justify-content: center; }
.events-search { flex: 1; min-width: 250px; max-width: 400px; padding: 12px 22px; border-radius: 50px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); color: #fff; font-size: .95rem; font-family: inherit; }
.events-search:focus { outline: none; border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.05); }
.events-search::placeholder { color: #777; }
.events-filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 36px; }
.filter-chip { padding: 9px 18px; border-radius: 40px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.03); color: #b0b0b0; font-size: .85rem; font-weight: 500; cursor: pointer; transition: .3s; }
.filter-chip:hover { border-color: rgba(201,168,76,.35); color: var(--gold); }
.filter-chip.active { background: rgba(201,168,76,.12); border-color: var(--gold); color: var(--gold); box-shadow: 0 0 18px rgba(201,168,76,.15); }
.events-empty { text-align: center; color: #777; padding: 60px 20px; font-size: 1rem; }

/* Event detail page */
.event-hero { padding: 110px 6vw 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden; }
.event-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(201,168,76,.1), transparent 60%); z-index: 0; }
.event-hero-poster { position: relative; z-index: 1; aspect-ratio: 1/1; border-radius: 28px; overflow: hidden; border: 1px solid rgba(201,168,76,.2); box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(201,168,76,.08); }
.event-hero-poster img { width: 100%; height: 100%; object-fit: cover; }
.event-hero-info { position: relative; z-index: 1; }
.event-hero-date { display: inline-block; font-size: .68rem; letter-spacing: 5px; color: var(--gold); border: 1px solid rgba(201,168,76,.3); padding: 6px 16px; border-radius: 40px; margin-bottom: 22px; }
.event-hero-info h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; margin-bottom: 18px; background: linear-gradient(135deg, #f5d987, var(--gold) 55%, #f0e0b0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.event-hero-meta { display: flex; flex-direction: column; gap: 14px; margin: 26px 0; padding: 22px 24px; border-radius: 18px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
.event-meta-row { display: flex; align-items: center; gap: 12px; color: #d0d0d0; font-size: .95rem; }
.event-meta-row b { color: var(--gold); font-weight: 600; font-size: .75rem; letter-spacing: 2px; min-width: 70px; }
.event-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.event-body-content { padding: 50px 6vw 90px; max-width: 920px; margin: 0 auto; }
.event-body-content h2 { font-size: clamp(1.5rem,3vw,2.1rem); color: var(--gold); font-weight: 800; margin: 40px 0 18px; }
.event-body-content p { color: #c0c0c0; font-size: 1.02rem; line-height: 1.95; font-weight: 300; margin-bottom: 16px; }
.event-lineup { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; margin: 26px 0; }
.event-lineup-item { padding: 18px 20px; border-radius: 16px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
.event-lineup-item b { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.event-lineup-item span { color: var(--gold); font-size: .78rem; }
.related-events { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 20px; margin-top: 30px; }
@media (max-width:768px) {
  .event-hero { grid-template-columns: 1fr; padding: 100px 5vw 40px; gap: 30px; }
  .event-hero-poster { max-width: 320px; margin: 0 auto; }
  .event-cta-row { flex-direction: column; }
  .event-cta-row .btn { width: 100%; text-align: center; }
}

/* Archive years */
.archive-year-section { margin-bottom: 60px; }
.archive-year-head { font-size: clamp(1.8rem,4vw,2.6rem); color: var(--gold); font-weight: 900; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 1px solid rgba(201,168,76,.2); display: flex; align-items: center; justify-content: space-between; }
.archive-year-head span { font-size: .85rem; color: #888; font-weight: 400; letter-spacing: 1px; }

/* SEO landing pages */
.seo-section { padding: 50px 0; }
.seo-section h2 { font-size: clamp(1.6rem,3.5vw,2.4rem); color: var(--gold); font-weight: 800; margin-bottom: 18px; }
.seo-section h3 { font-size: 1.25rem; color: #fff; font-weight: 700; margin: 28px 0 14px; }
.seo-section p { color: #c0c0c0; font-size: 1.05rem; line-height: 1.95; font-weight: 300; margin-bottom: 16px; }
.seo-section ul { list-style: none; padding: 0; margin: 16px 0; }
.seo-section li { color: #c0c0c0; padding-right: 24px; position: relative; line-height: 1.9; margin-bottom: 8px; }
.seo-section li::before { content: '▸'; color: var(--gold); position: absolute; right: 0; }
.seo-history-box { padding: 30px 32px; border-radius: 22px; background: linear-gradient(135deg, rgba(201,168,76,.06), rgba(255,255,255,.02)); border: 1px solid rgba(201,168,76,.18); margin: 30px 0; }
.seo-history-box h3 { margin-top: 0; }

/* ============================================================
   LINE PAGES & LINES HUB  (added — dedicated line worlds)
   ============================================================ */
.line-social { display:flex; flex-wrap:wrap; gap:12px; margin:26px 0 8px; align-items:center; }
.line-social a { display:inline-flex; align-items:center; gap:8px; font-size:.85rem; font-weight:500; padding:10px 18px; border-radius:40px; border:1px solid rgba(201,168,76,.3); color:var(--gold); transition:.3s; }
.line-social a:hover { background:rgba(201,168,76,.12); border-color:var(--gold); box-shadow:0 0 30px rgba(201,168,76,.2); }
.line-social a svg { width:16px; height:16px; fill:currentColor; }
.line-social .ls-note { font-size:.72rem; color:#888; font-weight:300; }

/* upcoming events on a line page */
.line-events { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:18px; margin:22px 0 10px; }
.le-card { display:block; border-radius:20px; overflow:hidden; background:rgba(255,255,255,.03); border:1px solid var(--border); transition:.4s; cursor:pointer; text-decoration:none; }
.le-card:hover { transform:translateY(-6px); border-color:rgba(201,168,76,.35); box-shadow:0 16px 44px rgba(0,0,0,.5); }
.le-thumb { aspect-ratio:1/1; overflow:hidden; background:#050505; }
.le-thumb img { width:100%; height:100%; object-fit:cover; transition:1s; }
.le-card:hover .le-thumb img { transform:scale(1.06); }
.le-body { padding:16px 18px 18px; }
.le-body h4 { font-size:1.05rem; color:#fff; font-weight:700; margin-bottom:6px; overflow-wrap:break-word; }
.le-meta { color:var(--gold); font-size:.82rem; font-weight:500; }
.line-events-empty { color:#8a8a8a; font-size:.98rem; font-weight:300; margin:14px 0; }

/* history timeline */
.line-history { border-right:2px solid rgba(201,168,76,.25); padding-right:24px; margin:24px 0 10px; }
.lh-item { position:relative; margin-bottom:26px; }
.lh-item::before { content:''; position:absolute; right:-31px; top:4px; width:12px; height:12px; border-radius:50%; background:var(--gold); box-shadow:0 0 14px rgba(201,168,76,.6); }
.lh-date { font-size:.8rem; color:var(--gold); font-weight:600; letter-spacing:.5px; margin-bottom:4px; }
.lh-title { font-size:1.05rem; color:#fff; font-weight:700; margin-bottom:4px; }
.lh-desc { font-size:.92rem; color:#9a9a9a; font-weight:300; line-height:1.7; }
.lh-placeholder { color:#7e7e7e; font-size:.92rem; font-weight:300; line-height:1.85; border:1px dashed rgba(201,168,76,.25); border-radius:16px; padding:22px 24px; background:rgba(201,168,76,.03); }

/* lines hub */
.hub-intro { max-width:780px; margin:0 auto 10px; text-align:center; }
.hub-label { font-size:.7rem; letter-spacing:5px; color:var(--gold); opacity:.85; text-align:center; margin:64px 0 26px; }
.hub-general { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; max-width:780px; margin:0 auto; }
.hub-general a { display:inline-flex; align-items:center; gap:8px; font-size:.9rem; font-weight:500; padding:14px 26px; border-radius:14px; border:1px solid var(--border); color:#ddd; background:rgba(255,255,255,.03); transition:.35s; }
.hub-general a:hover { border-color:rgba(201,168,76,.4); color:var(--gold); background:rgba(201,168,76,.06); }
.line-box a, a.line-box { text-decoration:none; display:block; height:100%; }

/* ============================================================
   TEAM PAGE  (added — DJ roster by line)
   ============================================================ */
.team-wrap { padding:30px 6vw 90px; max-width:1080px; margin:0 auto; }
.team-line { margin-bottom:56px; }
.team-line-head { display:flex; align-items:center; gap:14px; margin-bottom:6px; padding-bottom:14px; border-bottom:1px solid rgba(201,168,76,.18); }
.team-line-head img { width:50px; height:50px; border-radius:12px; object-fit:cover; border:1px solid rgba(201,168,76,.25); flex-shrink:0; }
.team-line-head h2 { font-size:clamp(1.3rem,3vw,1.9rem); color:var(--gold); font-weight:800; margin:0; }
.team-line-head a { color:inherit; text-decoration:none; }
.team-line-head a:hover { text-decoration:underline; }
.team-line-desc { font-size:.9rem; color:#9a9a9a; font-weight:300; margin:12px 0 18px; line-height:1.7; }
.team-sub { font-size:.72rem; color:#8a8a8a; font-weight:600; letter-spacing:1.5px; margin:22px 0 12px; text-transform:uppercase; }
.dj-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(190px,1fr)); gap:14px; }
.dj-card { background:rgba(255,255,255,.03); border:1px solid var(--border); border-radius:16px; padding:18px; transition:.35s; }
.dj-card:hover { border-color:rgba(201,168,76,.35); background:rgba(201,168,76,.05); transform:translateY(-3px); }
.dj-role { display:inline-block; font-size:.6rem; letter-spacing:1px; padding:3px 11px; border-radius:30px; margin-bottom:10px; font-weight:700; }
.dj-role.res { background:linear-gradient(135deg,#f5d987,#c9a84c); color:#080808; }
.dj-role.guest { background:rgba(255,255,255,.06); color:#bdbdbd; border:1px solid rgba(255,255,255,.12); }
.dj-name-he { font-size:1.08rem; color:#fff; font-weight:700; line-height:1.3; }
.dj-name-en { font-size:.8rem; color:var(--gold); font-weight:400; margin-top:3px; letter-spacing:.3px; }
.dj-note { font-size:.72rem; color:#8a8a8a; margin-top:7px; line-height:1.5; }
