:root{
      --bg:#080a0e;
      --bg-2:#0c1016;
      --panel:#11161e;
      --panel-2:#151b24;
      --line:rgba(255,255,255,.075);
      --text:#f7f8fa;
      --muted:#9ba5b2;
      --muted-2:#6f7986;
      --orange:#ff7a1a;
      --orange-2:#ff9a52;
      --orange-soft:rgba(255,122,26,.12);
      --green:#40d487;
      --shadow:0 28px 80px rgba(0,0,0,.36);
      --container:min(1180px,calc(100% - 38px));
      --radius:24px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:
        radial-gradient(circle at 85% -10%,rgba(255,122,26,.12),transparent 30%),
        linear-gradient(180deg,#090b10 0%,#080a0e 100%);
      color:var(--text);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
      overflow-x:hidden;
    }

    body.menu-open{overflow:hidden}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{color:inherit}
    img{display:block;max-width:100%}
    .container{width:var(--container);margin-inline:auto}

    .header{
      position:fixed;
      inset:0 0 auto 0;
      z-index:50;
      height:82px;
      border-bottom:1px solid rgba(255,255,255,.06);
      background:rgba(8,10,14,.76);
      backdrop-filter:blur(18px);
    }

    .nav{
      height:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:26px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:230px;
    }

    .brand img{
      width:48px;
      height:48px;
      object-fit:contain;
      filter:drop-shadow(0 8px 24px rgba(255,122,26,.12));
    }

    .brand-copy{display:grid;gap:3px}
    .brand-copy strong{
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
      font-size:.88rem;
      letter-spacing:-.02em;
    }
    .brand-copy span{
      color:var(--muted);
      font-size:.62rem;
      font-weight:600;
    }

    .menu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1;
    }

    .menu a{
      padding:10px 12px;
      border-radius:10px;
      color:#c5ccd5;
      font-size:.75rem;
      font-weight:700;
      transition:.18s ease;
    }
    .menu a:hover,.menu a.active{
      color:#fff;
      background:rgba(255,255,255,.055);
    }
    .menu a.active{box-shadow:inset 0 -2px 0 var(--orange)}

    .nav-actions{
      display:flex;
      align-items:center;
      gap:9px;
    }

    .btn,.nav-live,.account-btn{
      min-height:44px;
      border-radius:12px;
      border:1px solid var(--line);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      padding:0 16px;
      font-size:.72rem;
      font-weight:850;
      cursor:pointer;
      transition:.2s ease;
    }

    .nav-live,.btn-primary{
      border-color:rgba(255,122,26,.35);
      background:linear-gradient(135deg,var(--orange-2),var(--orange));
      color:#18100a;
      box-shadow:0 11px 26px rgba(255,122,26,.16);
    }
    .nav-live:hover,.btn-primary:hover{transform:translateY(-1px);filter:brightness(1.04)}
    .account-btn,.btn-secondary{
      background:rgba(255,255,255,.035);
      color:#e6eaf0;
    }
    .account-btn:hover,.btn-secondary:hover{background:rgba(255,255,255,.07)}

    .live-dot,.dot{
      width:7px;height:7px;border-radius:50%;
      background:#f44343;
      box-shadow:0 0 0 5px rgba(244,67,67,.09);
      flex:none;
      animation:pulse 1.6s infinite;
    }
    @keyframes pulse{50%{box-shadow:0 0 0 8px rgba(244,67,67,0)}}

    .burger{
      width:44px;height:44px;
      display:none;
      border:1px solid var(--line);
      border-radius:12px;
      background:rgba(255,255,255,.035);
      place-items:center;
      cursor:pointer;
      padding:0;
    }
    .burger span,
    .burger::before,
    .burger::after{
      content:"";
      display:block;
      width:18px;height:2px;
      background:#fff;
      border-radius:99px;
      transition:.2s ease;
    }
    .burger{gap:4px}

    main{padding-top:82px}

    .hero{
      position:relative;
      min-height:760px;
      display:flex;
      align-items:center;
      isolation:isolate;
      overflow:hidden;
    }

    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-3;
      background:url('assets/img/cover.png') center/cover no-repeat !important;
    }

    .hero::after{
      content:"";
      position:absolute;
      inset:0;
      z-index:-2;
      background:
        linear-gradient(90deg,rgba(6,8,12,.96) 0%,rgba(6,8,12,.88) 40%,rgba(6,8,12,.44) 72%,rgba(6,8,12,.72) 100%),
        linear-gradient(180deg,rgba(8,10,14,.08) 0%,#080a0e 100%);
    }

    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(360px,.72fr);
      gap:74px;
      align-items:center;
      padding:88px 0 92px;
    }

    .eyebrow{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:8px;
      color:#c2cad4;
      font-size:.64rem;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.16em;
    }
    .eyebrow i{
      width:4px;height:4px;border-radius:50%;
      background:var(--orange);
      opacity:.8;
    }

    .live-pill{
      margin-top:25px;
      width:max-content;
      display:flex;
      align-items:center;
      gap:9px;
      padding:9px 12px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:999px;
      background:rgba(8,10,14,.56);
      backdrop-filter:blur(10px);
      font-size:.63rem;
      font-weight:900;
      letter-spacing:.08em;
    }

    .hero h1{
      margin:24px 0 20px;
      max-width:780px;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
      font-size:clamp(3.3rem,6.6vw,6.2rem);
      line-height:.94;
      letter-spacing:-.065em;
    }
    .hero h1 span{
      display:block;
      color:var(--orange-2);
      text-shadow:0 14px 44px rgba(255,122,26,.16);
    }
    .hero-copy>p{
      max-width:700px;
      margin:0;
      color:#b8c0ca;
      font-size:clamp(.91rem,1.3vw,1.05rem);
      line-height:1.78;
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:11px;
      margin-top:30px;
    }
    .hero-actions .btn{min-height:50px;padding:0 20px}

    .micro-stats{
      display:grid;
      grid-template-columns:repeat(3,max-content);
      gap:27px;
      margin-top:35px;
    }
    .micro-stat{
      display:flex;
      align-items:center;
      gap:10px;
      color:#b9c1ca;
      font-size:.68rem;
      font-weight:700;
    }
    .micro-stat b{
      display:grid;
      place-items:center;
      width:33px;height:33px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:10px;
      background:rgba(255,255,255,.04);
      font-size:.82rem;
    }

    .player-card{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.1);
      border-radius:28px;
      background:
        linear-gradient(155deg,rgba(255,255,255,.08),rgba(255,255,255,.025)),
        rgba(8,10,14,.68);
      backdrop-filter:blur(22px);
      box-shadow:var(--shadow);
      padding:24px;
    }
    .player-card::before{
      content:"";
      position:absolute;
      width:230px;height:230px;
      border-radius:50%;
      background:rgba(255,122,26,.13);
      filter:blur(70px);
      right:-80px;top:-80px;
      pointer-events:none;
    }

    .player-top{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .onair{
      display:flex;align-items:center;gap:8px;
      color:#fff;
      font-size:.62rem;font-weight:900;letter-spacing:.09em;
    }
    .listeners{
      color:#9fa9b5;
      font-size:.65rem;
      font-weight:700;
    }
    .listeners strong{color:#fff}

    .station{
      position:relative;
      display:flex;
      align-items:center;
      gap:13px;
      margin-top:23px;
    }
    .station-logo{
      width:54px;height:54px;
      border-radius:14px;
      padding:5px;
      object-fit:contain;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.075);
    }
    .station h2{
      margin:0 0 4px;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
      font-size:1.02rem;
    }
    .station p{
      margin:0;color:var(--muted);font-size:.7rem;
    }

    .eq{
      height:76px;
      margin:23px 0 18px;
      display:flex;
      align-items:flex-end;
      justify-content:center;
      gap:6px;
      padding:0 14px;
      opacity:.86;
    }
    .eq i{
      width:7px;
      min-height:9px;
      border-radius:999px;
      background:linear-gradient(180deg,var(--orange-2),var(--orange));
      animation:eq 1.1s ease-in-out infinite alternate;
      transform-origin:bottom;
    }
    .eq i:nth-child(1){height:24%;animation-delay:-.3s}
    .eq i:nth-child(2){height:60%;animation-delay:-.7s}
    .eq i:nth-child(3){height:34%;animation-delay:-.1s}
    .eq i:nth-child(4){height:82%;animation-delay:-.6s}
    .eq i:nth-child(5){height:44%;animation-delay:-.8s}
    .eq i:nth-child(6){height:72%;animation-delay:-.2s}
    .eq i:nth-child(7){height:35%;animation-delay:-.5s}
    .eq i:nth-child(8){height:88%;animation-delay:-.9s}
    .eq i:nth-child(9){height:55%;animation-delay:-.4s}
    .eq i:nth-child(10){height:28%;animation-delay:-.15s}
    @keyframes eq{to{transform:scaleY(.35);opacity:.55}}
    body.radio-paused .eq i{animation-play-state:paused;transform:scaleY(.3)}

    .now-playing{
      display:grid;
      grid-template-columns:74px minmax(0,1fr);
      gap:14px;
      align-items:center;
      padding:13px;
      border:1px solid rgba(255,255,255,.075);
      border-radius:17px;
      background:rgba(255,255,255,.03);
    }
    .cover{
      width:74px;height:74px;
      border-radius:13px;
      background:
        linear-gradient(135deg,rgba(255,122,26,.22),rgba(255,255,255,.02)),
        url("../img/logo.png") center/65% no-repeat,
        #10151d;
      background-size:cover;
      background-position:center;
      border:1px solid rgba(255,255,255,.07);
    }
    .now-playing small{
      display:block;
      margin-bottom:5px;
      color:#8f99a6;
      font-size:.57rem;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.08em;
    }
    .now-playing strong{
      display:block;
      max-width:100%;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      font-size:.84rem;
    }
    .now-playing span{
      display:block;
      margin-top:5px;
      max-width:100%;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      color:#9ba5b2;
      font-size:.68rem;
    }

    .player-controls{
      display:grid;
      grid-template-columns:52px minmax(0,1fr);
      gap:13px;
      align-items:center;
      margin-top:16px;
    }
    .play-main{
      width:52px;height:52px;
      border:0;
      border-radius:16px;
      background:linear-gradient(135deg,var(--orange-2),var(--orange));
      color:#18100a;
      font-weight:950;
      cursor:pointer;
      box-shadow:0 10px 24px rgba(255,122,26,.16);
    }
    .volume-wrap{
      height:52px;
      padding:0 15px;
      display:flex;
      align-items:center;
      gap:12px;
      border:1px solid rgba(255,255,255,.07);
      border-radius:16px;
      background:rgba(255,255,255,.028);
    }
    .volume-wrap span{font-size:.78rem}
    .volume-wrap input{
      width:100%;
      accent-color:var(--orange);
    }

    .section{
      padding:86px 0;
      border-top:1px solid rgba(255,255,255,.045);
    }
    .section.alt{
      background:
        radial-gradient(circle at 10% 0,rgba(255,122,26,.07),transparent 28%),
        #0a0d12;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:25px;
      margin-bottom:31px;
    }
    .section-label{
      margin-bottom:8px;
      color:var(--orange-2);
      font-size:.64rem;
      font-weight:900;
      text-transform:uppercase;
      letter-spacing:.14em;
    }
    .section h2{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
      font-size:clamp(1.8rem,3vw,2.65rem);
      letter-spacing:-.045em;
    }
    .section-head p{
      max-width:500px;
      margin:0;
      color:var(--muted);
      font-size:.77rem;
      line-height:1.65;
    }
    .text-link{
      color:#d7dce3;
      font-size:.72rem;
      font-weight:800;
    }

    .program-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .program{
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:20px;
      background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(255,255,255,.018));
    }
    .program-art{
      height:185px;
      position:relative;
      background:
        linear-gradient(180deg,transparent,rgba(7,9,12,.78)),
        url("../img/cover.png") center/cover no-repeat;
    }
    .program:nth-child(2) .program-art{background-position:center 58%}
    .program:nth-child(3) .program-art{filter:saturate(.78) brightness(.72)}
    .program-art::after{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:72%;
      background:linear-gradient(180deg,transparent,rgba(10,12,16,.92));
    }
    .program-time{
      position:absolute;
      z-index:2;
      left:15px;bottom:14px;
      padding:7px 9px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:9px;
      background:rgba(6,8,11,.62);
      backdrop-filter:blur(8px);
      font-size:.58rem;
      font-weight:900;
    }
    .program-body{padding:18px}
    .program h3{
      margin:0 0 9px;
      font-size:.96rem;
    }
    .program p{
      margin:0;
      color:var(--muted);
      font-size:.72rem;
      line-height:1.62;
    }
    .program-bottom{
      margin-top:17px;
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.055);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:#aeb7c2;
      font-size:.61rem;
      font-weight:800;
    }
    .program-bottom a{color:var(--orange-2)}

    .feature-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:15px;
    }
    .feature{
      padding:22px;
      border:1px solid var(--line);
      border-radius:20px;
      background:linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.018));
    }
    .feature-icon{
      width:43px;height:43px;
      display:grid;place-items:center;
      margin-bottom:17px;
      border:1px solid rgba(255,122,26,.18);
      border-radius:13px;
      background:var(--orange-soft);
      font-size:1rem;
    }
    .feature h3{margin:0 0 8px;font-size:.9rem}
    .feature p{margin:0;color:var(--muted);font-size:.71rem;line-height:1.65}

    .community{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:30px;
      align-items:center;
      padding:34px;
      border:1px solid rgba(255,122,26,.16);
      border-radius:26px;
      background:
        linear-gradient(110deg,rgba(255,122,26,.09),rgba(255,255,255,.025) 46%,rgba(255,255,255,.015)),
        #0f141b;
      box-shadow:var(--shadow);
    }
    .community h2{max-width:680px}
    .community p{
      max-width:730px;
      margin:13px 0 0;
      color:var(--muted);
      font-size:.76rem;
      line-height:1.7;
    }
    .community-actions{
      display:flex;
      flex-direction:column;
      gap:9px;
      min-width:190px;
    }

    .footer{
      padding:45px 0 90px;
      border-top:1px solid rgba(255,255,255,.055);
      background:#07090c;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .7fr .7fr;
      gap:40px;
    }
    .footer p{
      max-width:400px;
      margin:15px 0 0;
      color:#7f8995;
      font-size:.69rem;
      line-height:1.65;
    }
    .footer h4{
      margin:0 0 13px;
      color:#d9dee5;
      font-size:.69rem;
      text-transform:uppercase;
      letter-spacing:.1em;
    }
    .footer-links{display:grid;gap:9px}
    .footer-links a{color:#8d97a3;font-size:.69rem}
    .footer-links a:hover{color:#fff}

    .radio-dock{
      position:fixed;
      z-index:80;
      left:50%;
      bottom:16px;
      transform:translate(-50%,120px);
      width:min(770px,calc(100% - 24px));
      display:grid;
      grid-template-columns:46px minmax(0,1fr) auto;
      align-items:center;
      gap:12px;
      padding:9px;
      border:1px solid rgba(255,255,255,.1);
      border-radius:17px;
      background:rgba(13,17,23,.93);
      backdrop-filter:blur(20px);
      box-shadow:0 18px 50px rgba(0,0,0,.4);
      opacity:0;
      pointer-events:none;
      transition:.25s ease;
    }
    body.radio-playing .radio-dock{
      transform:translate(-50%,0);
      opacity:1;
      pointer-events:auto;
    }
    .dock-play{
      width:46px;height:46px;
      border:0;border-radius:13px;
      background:linear-gradient(135deg,var(--orange-2),var(--orange));
      color:#1b110b;font-weight:950;cursor:pointer;
    }
    .dock-track{
      min-width:0;
      display:flex;align-items:center;gap:10px;
    }
    .dock-cover{
      width:38px;height:38px;border-radius:9px;
      background:url("../img/logo.png") center/cover no-repeat #10151d;
      background-size:cover;
      flex:none;
    }
    .dock-track div:last-child{min-width:0}
    .dock-track strong,.dock-track span{
      display:block;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .dock-track strong{font-size:.69rem}
    .dock-track span{margin-top:3px;color:var(--muted);font-size:.59rem}
    .dock-right{
      display:flex;align-items:center;gap:10px;padding-right:5px;
    }
    .dock-right input{width:95px;accent-color:var(--orange)}
    .dock-right span{color:#9da7b3;font-size:.62rem;font-weight:800}

    .reveal{
      opacity:0;
      transform:translateY(18px);
      transition:.65s cubic-bezier(.2,.8,.2,1);
    }
    .reveal.visible{
      opacity:1;
      transform:none;
    }

    @media(max-width:1050px){
      .menu{display:none}
      .burger{display:grid}
      .account-btn{display:none}
      .hero-grid{grid-template-columns:1fr;gap:36px}
      .hero{min-height:auto}
      .player-card{max-width:650px}
      .program-grid,.feature-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .program-grid .program:last-child,.feature-grid .feature:last-child{grid-column:1/-1}
      .community{grid-template-columns:1fr}
      .community-actions{flex-direction:row;min-width:0}
      .footer-grid{grid-template-columns:1.25fr .75fr .75fr}

      .menu.mobile-open{
        display:grid;
        position:fixed;
        z-index:49;
        top:82px;left:0;right:0;
        padding:16px 19px 24px;
        background:rgba(8,10,14,.98);
        border-bottom:1px solid var(--line);
        gap:5px;
      }
      .menu.mobile-open a{
        padding:14px;
        border:1px solid rgba(255,255,255,.055);
        background:rgba(255,255,255,.025);
      }
    }

    @media(max-width:720px){
      :root{--container:min(100% - 28px,1180px)}
      .header{height:68px}
      main{padding-top:68px}
      .brand{min-width:0}
      .brand img{width:42px;height:42px}
      .brand-copy span{display:none}
      .nav-live{padding:0 12px;min-height:40px}
      .nav-live .dot{display:none}
      .burger{width:40px;height:40px}
      .menu.mobile-open{top:68px}

      .hero-grid{padding:63px 0 66px}
      .hero h1{font-size:clamp(2.75rem,14vw,4.3rem)}
      .hero-copy>p{font-size:.87rem}
      .micro-stats{grid-template-columns:1fr;gap:10px}
      .micro-stat br{display:none}
      .hero-actions{flex-direction:column;align-items:stretch}
      .hero-actions .btn{width:100%}

      .player-card{padding:17px;border-radius:21px}
      .eq{height:58px}
      .now-playing{grid-template-columns:60px minmax(0,1fr)}
      .cover{width:60px;height:60px}
      .player-controls{grid-template-columns:48px minmax(0,1fr)}
      .play-main{width:48px;height:48px;border-radius:14px}
      .volume-wrap{height:48px}

      .section{padding:62px 0}
      .section-head{align-items:flex-start;flex-direction:column}
      .program-grid,.feature-grid{grid-template-columns:1fr}
      .program-grid .program:last-child,.feature-grid .feature:last-child{grid-column:auto}
      .program-art{height:155px}
      .community{padding:24px 19px}
      .community-actions{flex-direction:column}
      .footer-grid{grid-template-columns:1fr;gap:28px}

      .radio-dock{
        grid-template-columns:42px minmax(0,1fr);
        bottom:10px;
      }
      .dock-play{width:42px;height:42px}
      .dock-right{display:none}
    }

    @media(prefers-reduced-motion:reduce){
      *{scroll-behavior:auto!important;animation:none!important;transition:none!important}
      .reveal{opacity:1;transform:none}
    }
