:root {
      --fuchsia: #FF00AA;
      --cyan: #00FFFF;
      --dark: #060608;
      --card-bg: #0d0d12;
      --border: rgba(0,255,255,0.15);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Rajdhani', sans-serif;
      background: var(--dark);
      color: #fff;
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── CUSTOM CURSOR ─── */
    .cursor {
      width: 12px; height: 12px;
      background: var(--fuchsia);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s;
      box-shadow: 0 0 20px var(--fuchsia);
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid var(--cyan);
      border-radius: 50%;
      position: fixed;
      top: 0; left: 0;
      pointer-events: none;
      z-index: 9998;
      transition: all 0.15s ease;
      opacity: 0.6;
    }

    /* ─── SCANLINES OVERLAY ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0,0,0,0.07) 2px,
        rgba(0,0,0,0.07) 4px
      );
      pointer-events: none;
      z-index: 1000;
    }

    /* ─── NOISE GRAIN ─── */
    body::after {
      content: '';
      position: fixed;
      inset: -200%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.035;
      pointer-events: none;
      z-index: 999;
      animation: grain 0.4s steps(1) infinite;
    }
    @keyframes grain {
      0%,100%{transform:translate(0,0)} 10%{transform:translate(-2%,-3%)} 20%{transform:translate(3%,1%)} 30%{transform:translate(-1%,4%)} 40%{transform:translate(2%,-2%)} 50%{transform:translate(-3%,2%)} 60%{transform:translate(1%,-4%)} 70%{transform:translate(3%,3%)} 80%{transform:translate(-2%,1%)} 90%{transform:translate(2%,4%)}
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(6,6,8,0.95), transparent);
      backdrop-filter: blur(8px);
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 4px;
      color: var(--fuchsia);
      text-shadow: 0 0 20px var(--fuchsia);
    }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: 'Orbitron', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 3px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--cyan); text-shadow: 0 0 12px var(--cyan); }

    /* ─── LIVE BADGE ─── */
    .live-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,0,170,0.12);
      border: 1px solid rgba(255,0,170,0.4);
      padding: 8px 18px;
      border-radius: 100px;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 3px;
    }
    .live-dot {
      width: 8px; height: 8px;
      background: var(--fuchsia);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--fuchsia);
      animation: pulse-dot 1.2s ease-in-out infinite;
    }
    @keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.6} }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      text-align: center;
      padding: 100px 20px 60px;
    }

    /* Mesh gradient background */
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(255,0,170,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 30%, rgba(0,255,255,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 50% 90%, rgba(255,0,170,0.06) 0%, transparent 70%);
    }

    /* Grid lines */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content { position: relative; z-index: 2; }

    .hero-logo {
      width: 560px;
      height: 560px;
      object-fit: contain;
      filter: drop-shadow(0 0 40px rgba(255,0,170,0.8)) drop-shadow(0 0 80px rgba(0,255,255,0.4));
      animation: logo-float 4s ease-in-out infinite;
      border-radius: 50%;
    }
    @keyframes logo-float {
      0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-16px) rotate(1deg)}
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 12vw, 10rem);
      line-height: 0.9;
      letter-spacing: 8px;
      margin-top: 24px;
    }
    .hero-title .line1 { color: #fff; }
    .hero-title .line2 {
      color: transparent;
      -webkit-text-stroke: 2px var(--fuchsia);
      text-shadow: none;
      filter: drop-shadow(0 0 30px var(--fuchsia));
    }
    .hero-title .line3 { color: var(--cyan); text-shadow: 0 0 30px var(--cyan); }

    .hero-sub {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(0.6rem, 2vw, 0.9rem);
      letter-spacing: 6px;
      color: rgba(255,255,255,0.5);
      margin-top: 16px;
    }

    .hero-cta {
      display: inline-block;
      margin-top: 48px;
      padding: 20px 56px;
      background: var(--fuchsia);
      color: #000;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 4px;
      border-radius: 100px;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 0 40px rgba(255,0,170,0.5);
    }
    .hero-cta:hover {
      transform: scale(1.05);
      box-shadow: 0 0 80px rgba(255,0,170,0.8);
    }
    .hero-cta::before {
      content: '';
      position: absolute;
      top: -100%; left: -100%;
      width: 300%; height: 300%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent);
      transition: top 0.4s, left 0.4s;
    }
    .hero-cta:hover::before { top: 100%; left: 100%; }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0.4;
    }
    .scroll-hint span { font-family: 'Orbitron', sans-serif; font-size: 0.55rem; letter-spacing: 4px; }
    .scroll-arrow {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--cyan), transparent);
      animation: scroll-drop 2s ease-in-out infinite;
    }
    @keyframes scroll-drop { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1} 100%{opacity:0;transform:scaleY(1);transform-origin:top} }


    /* ─── CUSTOM PLAYER ─── */
    #custom-player {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      padding: 0;
    }

    /* Visualizer */
    .cp-visualizer {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 5px;
      height: 0px;
      width: 100%;
    }
    .cp-vis-bar {
      flex: 1;
      max-width: 18px;
      border-radius: 3px 3px 0 0;
      background: linear-gradient(to top, var(--fuchsia), var(--cyan));
      transform: scaleY(0.08);
      transform-origin: bottom;
      transition: transform 0.1s;
      opacity: 0.7;
    }
    .playing .cp-vis-bar {
      animation: vis-dance calc(0.4s + var(--i) * 0.04s) ease-in-out infinite alternate;
    }
    @keyframes vis-dance {
      0%   { transform: scaleY(0.08); }
      100% { transform: scaleY(calc(0.2 + (var(--i) % 7) * 0.12)); }
    }

    /* Status badge */
    .cp-status { display: flex; justify-content: center; }
    .cp-live-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,0,170,0.08);
      border: 1px solid rgba(255,0,170,0.25);
      padding: 8px 20px;
      border-radius: 100px;
      font-family: "Orbitron", sans-serif;
      font-size: 0.65rem;
      letter-spacing: 3px;
      color: rgba(255,255,255,0.7);
      transition: all 0.4s;
    }
    .cp-live-badge.on-air {
      background: rgba(255,0,170,0.15);
      border-color: var(--fuchsia);
      color: var(--fuchsia);
      box-shadow: 0 0 20px rgba(255,0,170,0.2);
    }
    .cp-live-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      transition: background 0.4s, box-shadow 0.4s;
    }
    .cp-live-badge.on-air .cp-live-dot {
      background: var(--fuchsia);
      box-shadow: 0 0 10px var(--fuchsia);
      animation: pulse-dot 1.2s ease-in-out infinite;
    }

    /* Station info */
    .cp-info { text-align: center; }
    .cp-station {
      font-family: "Bebas Neue", sans-serif;
      font-size: 3.2rem;
      letter-spacing: 8px;
      color: #fff;
      text-shadow: 0 0 30px rgba(0,255,255,0.4);
      line-height: 1;
    }
    .cp-sub {
      font-family: "Orbitron", sans-serif;
      font-size: 0.65rem;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.35);
      margin-top: 6px;
    }

    /* Controls */
    .cp-controls {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* Play button */
    .cp-play-btn {
      width: 90px; height: 90px;
      border-radius: 50%;
      border: 2px solid var(--fuchsia);
      background: rgba(255,0,170,0.1);
      color: #fff;
      cursor: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      box-shadow: 0 0 30px rgba(255,0,170,0.3);
      position: relative;
      overflow: hidden;
    }
    .cp-play-btn::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--fuchsia);
      transform: scale(0);
      transition: transform 0.3s;
    }
    .cp-play-btn:hover::before { transform: scale(1); }
    .cp-play-btn svg { position: relative; z-index: 1; }
    .cp-play-btn:hover { box-shadow: 0 0 60px rgba(255,0,170,0.6); transform: scale(1.08); }
    .cp-play-btn.spinning { animation: spin-once 0.3s ease; }
    @keyframes spin-once { 0%{transform:scale(0.9) rotate(-20deg)} 100%{transform:scale(1) rotate(0)} }

    /* Mute button */
    .cp-mute-btn {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.15);
      background: transparent;
      font-size: 1.3rem;
      cursor: none;
      transition: all 0.3s;
    }
    .cp-mute-btn:hover {
      border-color: var(--cyan);
      box-shadow: 0 0 16px rgba(0,255,255,0.3);
    }

    /* Volume slider */
    .cp-vol-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cp-vol-icon { font-size: 1.1rem; }
    .cp-volume {
      -webkit-appearance: none;
      width: 140px;
      height: 4px;
      border-radius: 2px;
      background: linear-gradient(to right, var(--fuchsia) 80%, rgba(255,255,255,0.15) 80%);
      outline: none;
      cursor: none;
    }
    .cp-volume::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 14px; height: 14px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 8px var(--fuchsia);
      cursor: none;
    }


    /* ─── NOW PLAYING ─── */
    .cp-now-playing {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
      background: rgba(0,255,255,0.05);
      border: 1px solid rgba(0,255,255,0.12);
      border-radius: 100px;
      padding: 8px 22px;
      max-width: 560px;
      width: 100%;
      overflow: hidden;
    }
    .cp-np-label {
      color: var(--cyan);
      font-size: 1rem;
      flex-shrink: 0;
      animation: pulse-np 2s ease-in-out infinite;
    }
    @keyframes pulse-np { 0%,100%{opacity:1} 50%{opacity:0.3} }
    #cp-np-text {
      font-family: "Orbitron", sans-serif;
      font-size: 0.65rem;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.8);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    #cp-np-text.scrolling {
      text-overflow: clip;
      animation: np-scroll 14s linear infinite;
    }
    @keyframes np-scroll {
      0%,10%  { transform: translateX(0); }
      90%,100%{ transform: translateX(-55%); }
    }


    /* ─── DJ ACTIVO ─── */
    .cp-dj-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,0,170,0.05);
      border: 1px solid rgba(255,0,170,0.15);
      border-radius: 100px;
      padding: 7px 20px;
      max-width: 560px;
      width: 100%;
    }
    .cp-dj-label {
      font-family: "Orbitron", sans-serif;
      font-size: 0.55rem;
      letter-spacing: 3px;
      color: var(--fuchsia);
      flex-shrink: 0;
    }
    #cp-dj-text {
      font-family: "Orbitron", sans-serif;
      font-size: 0.65rem;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.8);
      transition: opacity 0.4s;
    }

    /* ─── SECTION TITLE ─── */
    .section-label {
      font-family: 'Orbitron', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 6px;
      color: var(--cyan);
      opacity: 0.7;
      text-align: center;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 5.5rem);
      text-align: center;
      letter-spacing: 4px;
      line-height: 1;
    }
    .section-line {
      width: 80px; height: 2px;
      background: linear-gradient(to right, var(--fuchsia), var(--cyan));
      margin: 20px auto 60px;
      box-shadow: 0 0 20px var(--fuchsia);
    }

    /* ─── PLAYER SECTION ─── */
    #player {
      padding: 100px 20px;
      position: relative;
    }
    .player-wrapper {
      max-width: 900px;
      margin: 0 auto;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 32px;
      box-shadow: 0 0 60px rgba(255,0,170,0.15), 0 0 120px rgba(0,255,255,0.08);
      position: relative;
      overflow: hidden;
    }
    .player-wrapper::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, var(--fuchsia), var(--cyan), var(--fuchsia));
    }
    .player-wrapper iframe { border-radius: 16px; display: block; }
    .player-link {
      text-align: center;
      margin-top: 20px;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 2px;
      color: rgba(0,255,255,0.6);
    }
    .player-link a { color: var(--cyan); }

    /* ─── DJS SECTION ─── */
    #djs {
      padding: 100px 20px;
      background: linear-gradient(to bottom, var(--dark), #070710, var(--dark));
      position: relative;
    }

    .djs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 24px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .dj-card {
      background: var(--card-bg);
      border: 1px solid rgba(0,255,255,0.1);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
      cursor: none;
    }
    .dj-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 80px rgba(255,0,170,0.2), 0 0 40px rgba(0,255,255,0.1);
      border-color: rgba(255,0,170,0.4);
    }
    .dj-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--fuchsia), var(--cyan));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s;
    }
    .dj-card:hover::after { transform: scaleX(1); }

    .dj-photo-wrap {
      position: relative;
      width: 100%;
      padding-top: 100%;
      overflow: hidden;
    }
    .dj-photo-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
      filter: saturate(0.85);
    }
    .dj-card:hover .dj-photo-wrap img { transform: scale(1.06); filter: saturate(1.1); }

    /* overlay gradient on photo */
    .dj-photo-wrap::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 50%;
      background: linear-gradient(to top, var(--card-bg), transparent);
      z-index: 1;
    }

    .dj-country {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(6,6,8,0.75);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 6px 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      z-index: 2;
    }
    .dj-country .flag { font-size: 1.4rem; line-height: 1; }
    .dj-country .country-name {
      font-family: 'Orbitron', sans-serif;
      font-size: 0.55rem;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.8);
    }

    .dj-info {
      padding: 20px 22px 24px;
    }
    .dj-genre {
      font-family: 'Orbitron', sans-serif;
      font-size: 0.55rem;
      letter-spacing: 3px;
      color: var(--fuchsia);
      margin-bottom: 6px;
    }
    .dj-nick {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem;
      letter-spacing: 3px;
      color: #fff;
      text-shadow: 0 0 20px rgba(0,255,255,0.3);
      line-height: 1;
    }
    .dj-schedule {
      margin-top: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      font-weight: 600;
      letter-spacing: 1px;
    }
    .dj-schedule-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 8px var(--cyan);
    }
    .dj-socials {
      margin-top: 16px;
      display: flex;
      gap: 10px;
    }
    .dj-social-btn {
      padding: 6px 14px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.55rem;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: all 0.3s;
    }
    .dj-social-btn:hover {
      border-color: var(--fuchsia);
      color: var(--fuchsia);
      box-shadow: 0 0 14px rgba(255,0,170,0.3);
    }

    /* ─── SCHEDULE ─── */
    #schedule {
      padding: 100px 20px;
    }
    .schedule-table {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .schedule-row {
      display: grid;
      grid-template-columns: 1fr 2fr 2fr;
      align-items: center;
      padding: 18px 28px;
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.04);
      border-radius: 12px;
      transition: background 0.3s, border-color 0.3s;
      gap: 20px;
    }
    .schedule-row:hover {
      background: rgba(255,0,170,0.06);
      border-color: rgba(255,0,170,0.2);
    }
    .schedule-row.header {
      background: transparent;
      border-color: rgba(0,255,255,0.15);
    }
    .schedule-day {
      font-family: 'Orbitron', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 3px;
      color: var(--cyan);
    }
    .schedule-row.header .schedule-day,
    .schedule-row.header .schedule-time,
    .schedule-row.header .schedule-dj { color: rgba(255,255,255,0.3); font-size: 0.6rem; letter-spacing: 3px; }
    .schedule-time {
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255,255,255,0.7);
      letter-spacing: 1px;
    }
    .schedule-dj {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 2px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .schedule-flag { font-size: 1.1rem; }

    /* ─── CONTACT ─── */
    #contact {
      padding: 100px 20px;
      background: linear-gradient(to bottom, var(--dark), #07070f);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    .contact-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .contact-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,255,255,0.1);
    }
    .contact-icon {
      font-size: 3rem;
      display: block;
      margin-bottom: 16px;
    }
    .contact-card h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      letter-spacing: 3px;
      margin-bottom: 8px;
    }
    .contact-card p {
      color: rgba(255,255,255,0.5);
      font-size: 0.95rem;
      margin-bottom: 24px;
      line-height: 1.6;
    }
    .contact-btn {
      display: inline-block;
      padding: 12px 30px;
      background: transparent;
      border: 1px solid;
      border-radius: 100px;
      font-family: 'Orbitron', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-decoration: none;
      transition: all 0.3s;
    }
    .contact-btn.teams {
      border-color: #5865F2;
      color: #5865F2;
    }
    .contact-btn.teams:hover {
      background: #5865F2;
      color: #fff;
      box-shadow: 0 0 30px rgba(88,101,242,0.5);
    }
    .contact-btn.telegram {
      border-color: #26A5E4;
      color: #26A5E4;
    }
    .contact-btn.telegram:hover {
      background: #26A5E4;
      color: #fff;
      box-shadow: 0 0 30px rgba(38,165,228,0.5);
    }
    .contact-btn.tiktok {
      border-color: var(--cyan);
      color: var(--cyan);
    }
    .contact-btn.tiktok:hover {
      background: var(--cyan);
      color: #000;
      box-shadow: 0 0 30px rgba(0,255,255,0.4);
    }

    /* ─── FOOTER ─── */
    footer {
      padding: 48px 20px;
      border-top: 1px solid rgba(255,0,170,0.15);
      text-align: center;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      letter-spacing: 6px;
      color: var(--fuchsia);
      text-shadow: 0 0 20px var(--fuchsia);
      margin-bottom: 12px;
    }
    footer p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 2px;
      line-height: 2;
    }

    /* ─── GLITCH EFFECT (hero title) ─── */
    @keyframes glitch1 {
      0%,94%,100%{transform:none;opacity:1}
      95%{transform:skewX(-10deg) translateX(2px);opacity:0.7}
      97%{transform:skewX(4deg) translateX(-2px);opacity:0.9}
    }
    @keyframes glitch2 {
      0%,96%,100%{transform:none;clip-path:none}
      97%{clip-path:polygon(0 20%, 100% 20%, 100% 40%, 0 40%);transform:translateX(-4px)}
      99%{clip-path:polygon(0 60%, 100% 60%, 100% 80%, 0 80%);transform:translateX(4px)}
    }
    .glitch { animation: glitch1 6s infinite; position: relative; }
    .glitch::before {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      color: var(--cyan);
      animation: glitch2 6s infinite;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    /* ─── WAVEFORM DECORATION ─── */
    .wave-bars {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 4px;
      height: 40px;
      margin: 24px auto 0;
    }
    .wave-bar {
      width: 15px;
      background: linear-gradient(to top, var(--fuchsia), var(--cyan));
      border-radius: 2px;
      animation: wave 1.2s ease-in-out infinite;
    }
    @keyframes wave {
      0%,100%{transform:scaleY(0.2)} 50%{transform:scaleY(1)}
    }
    .wave-bar:nth-child(1){animation-delay:0s;height:60%}
    .wave-bar:nth-child(2){animation-delay:.1s;height:90%}
    .wave-bar:nth-child(3){animation-delay:.2s;height:100%}
    .wave-bar:nth-child(4){animation-delay:.15s;height:75%}
    .wave-bar:nth-child(5){animation-delay:.05s;height:100%}
    .wave-bar:nth-child(6){animation-delay:.2s;height:80%}
    .wave-bar:nth-child(7){animation-delay:.1s;height:60%}
    .wave-bar:nth-child(8){animation-delay:0s;height:40%}

    /* ─── RESPONSIVE ─── */
    @media (max-width: 640px) {
      nav { padding: 16px 20px; }
      .nav-links { display: none; }
      .schedule-row { grid-template-columns: 1fr; gap: 4px; }
      .schedule-row.header { display: none; }
    }