    :root {
        --ink: #251d1c;
        --paper: #fff9f3;
        --cream: #f6eadc;
        --orange: #f45b31;
        --red: #d93631;
        --gold: #ffc65a;
        --muted: #867875;
        --line: #e8ddd4;
    }

    * {
        box-sizing: border-box;
    }

    body {
        margin: 0;
        background: var(--paper);
        color: var(--ink);
        font: 400 16px/1.75 Manrope, sans-serif;
        min-height: 100vh;
    }

    button {
        font: inherit;
        cursor: pointer;
        border: 0;
    }

    .app {
        max-width: 1180px;
        padding: 36px 36px 132px;
        margin: auto;
    }

    header {
        position: sticky;
        top: 16px;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
        padding: 12px 14px 12px 20px;
        background: rgba(255, 249, 243, .94);
        border: 1px solid rgba(232, 221, 212, .9);
        border-radius: 20px;
        box-shadow: 0 14px 34px rgba(55, 38, 31, .1);
        backdrop-filter: blur(18px);
        overflow: hidden;
        height: 70px;
    }

    header:before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 4px;
        background: linear-gradient(var(--orange), var(--gold));
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--ink);
        text-decoration: none;
        font-family: 'Playfair Display', serif;
        font-size: 34px;
        font-weight: 800;
        letter-spacing: -1.5px;
        transition: .2s ease;
    }

    .brand:hover {
        color: var(--orange);
        transform: translateX(2px);
    }

    .brand-mark {
        color: var(--orange);
        font: 28px Manrope, sans-serif;
        margin-right: 6px;
        line-height: 1;
        position: relative;
        top: 4px;
    }

    .header-actions {
        display: flex;
        gap: 10px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .search-form {
        margin: 0;
    }

    .search {
        width: 250px;
        height: 44px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #fffdfb;
        padding: 0 15px;
        outline: none;
        color: var(--ink);
        font: 600 14px Manrope;
        transition: .2s ease;
    }

    .search:hover {
        border-color: #d8c7bc;
        background: #fff;
    }

    .search:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 4px rgba(244, 90, 52, .18);
        background: #fff;
    }

    .header-btn {
        background: transparent;
        color: var(--ink);
        width: 46px;
        height: 46px;
        border: 1px solid var(--line);
        border-radius: 16px;
        display: grid;
        place-items: center;
        font-size: 18px;
    }

    .library-btn {
        height: 44px;
        padding: 0 16px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: var(--ink);
        color: #fffaf4;
        font-size: 11px;
        letter-spacing: .4px;
        font-weight: 800;
        white-space: nowrap;
        text-decoration: none;
        transition: .2s ease;
    }

    .library-btn:hover {
        border-color: var(--orange);
        background: var(--orange);
        transform: translateY(-1px);
    }

    .library-btn.active {
        background: #2b2021;
        color: #fff;
        border-color: #2b2021;
    }

    .avatar {
        background: #2d2531;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-weight: 700;
        font-size: 13px;
    }

    .eyebrow {
        color: var(--orange);
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 800;
        margin: 0 0 10px;
    }

    h1 {
        font-family: 'Playfair Display', serif;
        font-size: 52px;
        letter-spacing: -1.8px;
        line-height: 1.02;
        margin: 0;
    }

    .intro {
        display: flex;
        justify-content: space-between;
        align-items: end;
        margin-bottom: 28px;
        gap: 24px;
    }

    .intro p {
        color: var(--muted);
        margin: 0;
        font-size: 15px;
    }

    .filters {
        display: flex;
        gap: 9px;
        overflow: auto;
        padding: 2px 0 15px;
        scrollbar-width: none;
    }

    .chip {
        padding: 12px 19px;
        border-radius: 32px;
        background: #fff;
        color: #705f5b;
        border: 1px solid var(--line);
        font-size: 14px;
        white-space: nowrap;
        font-weight: 700;
    }

    .chip.active {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink);
    }

    .hero {
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        min-height: 320px;
        background: #e9542f;
        overflow: hidden;
        border-radius: 28px;
        position: relative;
    }

    .hero-copy {
        padding: 44px 45px;
        color: white;
        position: relative;
        z-index: 2;
    }

    .live {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 7px 11px;
        border-radius: 99px;
        background: rgba(68, 17, 10, .25);
        font: 500 11px 'DM Mono';
        letter-spacing: .6px;
    }

    .dot {
        width: 7px;
        height: 7px;
        background: #ffe178;
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(255, 225, 120, .15);
    }

    .hero h2 {
        font-family: 'Playfair Display';
        font-size: 40px;
        line-height: 1.03;
        letter-spacing: -1.8px;
        margin: 22px 0 13px;
        max-width: 380px;
    }

    .hero-copy p {
        font-size: 14px;
        color: #ffdbd1;
        margin: 0;
    }

    .hero-art {
        position: relative;
        overflow: hidden;
        background: #ffb762;
    }

    .sun {
        position: absolute;
        width: 285px;
        height: 285px;
        border-radius: 50%;
        background: #ffd879;
        right: 48px;
        bottom: -42px;
    }

    .arch {
        position: absolute;
        width: 310px;
        height: 310px;
        border-radius: 50% 50% 0 0;
        background: #bd362c;
        right: 39px;
        bottom: -45px;
    }

    .poster {
        position: absolute;
        right: 87px;
        bottom: 34px;
        width: 202px;
        height: 255px;
        background: #ef6541;
        border-radius: 100px 100px 11px 11px;
        transform: rotate(7deg);
        box-shadow: 10px 12px 0 rgba(88, 42, 29, .16);
        overflow: hidden;
    }

    .poster:before {
        content: "";
        position: absolute;
        width: 130px;
        height: 130px;
        background: #283241;
        border-radius: 50%;
        top: 42px;
        left: 38px;
        box-shadow: 0 0 0 7px #f5b45e, 0 0 0 17px #e84732;
    }

    .poster:after {
        content: "AWADHISANGAM\A LIVE HINDI RADIO";
        white-space: pre;
        position: absolute;
        left: 26px;
        bottom: 22px;
        color: #ffe1a8;
        font: 700 18px/1.1 'DM Mono';
        letter-spacing: -1px;
    }

    .wave {
        position: absolute;
        height: 110px;
        width: 140%;
        bottom: -47px;
        left: -15%;
        opacity: .34;
        background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 17px, #fff 18px 21px, transparent 22px 35px);
    }

    .hero-play {
        position: absolute;
        bottom: 29px;
        left: 45px;
        background: white;
        color: var(--red);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 17px;
        box-shadow: 0 8px 22px rgba(130, 40, 25, .25);
    }

    .section-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 39px 0 18px;
    }

    h3 {
        font-size: 19px;
        letter-spacing: -.7px;
        margin: 0;
    }

    .view-all {
        background: none;
        color: var(--orange);
        font-size: 12px;
        font-weight: 800;
    }

    .stations {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .station {
        text-align: left;
        border: 1px solid var(--line);
        background: #fffdfb;
        border-radius: 22px;
        padding: 18px;
        transition: .2s transform, .2s box-shadow;
        min-width: 0;
    }

    .station:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(92, 53, 36, .12);
    }

    .station.active {
        border-color: #ef7c57;
        box-shadow: 0 0 0 3px #fee1d6;
    }

    .station-link {
        display: block;
        color: inherit;
        text-decoration: none;
    }

    .station-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 11px;
        padding-top: 10px;
        border-top: 1px solid #f0e6de;
    }

    .station-play {
        padding: 0;
        background: transparent;
        color: var(--orange);
        font-size: 10px;
        font-weight: 800;
        text-align: left;
    }

    .station-actions .heart {
        float: none;
        background: transparent;
        padding: 0;
    }

    .art {
        height: 115px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        display: grid;
        place-items: center;
        margin-bottom: 12px;
    }

    .art b {
        font-family: 'Playfair Display';
        font-size: 25px;
        text-align: center;
        line-height: .9;
        position: relative;
        z-index: 1;
    }

    .art span {
        font: 500 10px 'DM Mono';
    }

    .a1 {
        background: #ffc75a;
        color: #bd3a2d
    }

    .a1:before {
        content: "";
        position: absolute;
        width: 108px;
        height: 108px;
        border-radius: 50%;
        border: 13px solid #f56a3d;
        opacity: .7
    }

    .a2 {
        background: #21333d;
        color: #ffe2a2
    }

    .a2:before {
        content: "";
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 17px solid #e7a04b;
        top: -70px;
        right: -42px
    }

    .a3 {
        background: #df5e45;
        color: #ffe6bb
    }

    .a3:before {
        content: "♪";
        position: absolute;
        font-size: 130px;
        color: #f69a56;
        bottom: -60px;
        left: 6px
    }

    .a4 {
        background: #95624b;
        color: #fff0c9
    }

    .a4:before {
        content: "";
        position: absolute;
        width: 75px;
        height: 75px;
        border-radius: 50%;
        background: #e7b169;
        box-shadow: 0 0 0 17px #744438
    }

    .station-name {
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .station-meta {
        color: var(--muted);
        font-size: 11px;
        margin: 4px 0 0
    }

    .heart {
        float: right;
        color: #b9aaa4;
        font-size: 17px;
        line-height: 12px
    }

    .heart.liked {
        color: var(--red)
    }

    .bottom-player {
        position: fixed;
        z-index: 5;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: min(860px, calc(100% - 40px));
        min-height: 112px;
        display: grid;
        grid-template-columns: 1.4fr .9fr .7fr;
        align-items: center;
        padding: 16px 20px;
        color: white;
        background: rgba(25, 23, 25, .96);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 28px;
        box-shadow: 0 24px 70px rgba(30, 24, 22, .24);
        overflow: hidden;
    }

    .bottom-player:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(243, 88, 48, .16), transparent 42%), radial-gradient(circle at 92% 0, #46302b, transparent 33%);
        pointer-events: none
    }

    .bottom-player:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #f45b31, #ffc85d 48%, #e7d9c5 48%);
        opacity: .9
    }

    .now {
        display: flex;
        align-items: center;
        gap: 14px;
        min-width: 0;
        z-index: 1;
    }

    .mini-art {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        background: linear-gradient(145deg, #ffcf62, #e95232);
        border: 3px solid rgba(255, 255, 255, .12);
        display: grid;
        place-items: center;
        color: #54221f;
        font-family: 'Playfair Display';
        font-size: 22px;
        flex: none;
        overflow: hidden;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .34)
    }

    .mini-art img {
        height: 100%;
        width: 100%;
        object-fit: cover
    }

    .now-info {
        min-width: 0
    }

    .now-info:before {
        content: "NOW PLAYING";
        display: block;
        color: #ffb89f;
        font: 500 8px 'DM Mono';
        letter-spacing: 1.4px;
        margin-bottom: 6px
    }

    .now strong {
        display: block;
        font-size: 13px;
        letter-spacing: -.2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .now small {
        display: block;
        color: #bfaeaa;
        font-size: 10px;
        margin-top: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .live-meta {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #f6cdbf;
        font: 500 8px 'DM Mono';
        letter-spacing: .7px;
        margin-top: 8px
    }

    .live-meta i {
        width: 6px;
        height: 6px;
        background: #ff6244;
        border-radius: 50%;
        box-shadow: 0 0 0 4px rgba(255, 98, 68, .14)
    }

    .equalizer {
        display: flex;
        align-items: end;
        gap: 2px;
        height: 10px;
        margin-left: 4px
    }

    .equalizer b {
        width: 2px;
        background: #ffd273;
        border-radius: 3px;
        height: 3px
    }

    .bottom-player.playing .equalizer b:nth-child(1) {
        animation: eq .7s infinite alternate
    }

    .bottom-player.playing .equalizer b:nth-child(2) {
        animation: eq .4s .2s infinite alternate
    }

    .bottom-player.playing .equalizer b:nth-child(3) {
        animation: eq .6s .1s infinite alternate
    }

    @keyframes eq {
        to {
            height: 10px
        }
    }

    .player-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 11px;
        z-index: 1;
        border-left: 1px solid rgba(255, 255, 255, .08);
        padding-left: 16px
    }

    .controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px
    }

    .controls button {
        background: none;
        color: #cdbcb7;
        font-size: 16px;
        width: 27px;
        height: 27px;
        opacity: .95;
        transition: .15s
    }

    .controls button:hover {
        color: white;
        transform: scale(1.08)
    }

    .play {
        background: #fff5ed !important;
        color: #cb452e !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 50%;
        font-size: 14px !important;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .27)
    }

    .stream-line {
        width: 150px;
        height: 4px;
        border-radius: 6px;
        background: #4a3c3b;
        overflow: hidden
    }

    .stream-line b {
        display: block;
        width: 36%;
        height: 100%;
        background: linear-gradient(90deg, #ff6a46, #ffc866);
        border-radius: 5px
    }

    .bottom-player.playing .stream-line b {
        animation: stream 2.3s ease-in-out infinite
    }

    @keyframes stream {
        50% {
            width: 75%
        }
    }

    .player-actions {
        z-index: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 12px
    }

    .player-actions button {
        background: #302a2a;
        border: 1px solid #4a3d3a;
        color: #f7dfd8;
        width: 37px;
        height: 37px;
        border-radius: 12px;
        font-size: 16px
    }

    .player-actions button.liked {
        color: #ff7557;
        background: #492a28;
        border-color: #79453a
    }

    .volume {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: #c0aba6;
        font-size: 15px
    }

    .volume input {
        accent-color: var(--orange);
        width: 70px
    }

    .station .art img {
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        object-fit: cover;
    }

    .station .art.has-logo b {
        display: none
    }

    .station .art.has-logo:after {
        content: "LIVE";
        position: absolute;
        z-index: 2;
        right: 8px;
        top: 8px;
        background: #271d1c;
        color: #fff;
        padding: 4px 6px;
        border-radius: 5px;
        font: 9px 'DM Mono';
    }

    .station .art.has-logo {
        background: #eee
    }

    .status {
        color: var(--muted);
        font-size: 12px;
    }

    .loader {
        grid-column: 1/-1;
        padding: 35px;
        text-align: center;
        color: var(--muted);
        background: #fffdfb;
        border: 1px dashed var(--line);
        border-radius: 18px;
    }

    .toast {
        position: fixed;
        z-index: 9;
        bottom: 102px;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        padding: 9px 14px;
        border-radius: 10px;
        background: #34292a;
        color: white;
        font-size: 12px;
        opacity: 0;
        transition: .2s;
        pointer-events: none
    }

    .toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    @media(max-width:680px) {
        .app {
            padding: 21px 18px 126px
        }

        .brand {
            font-size: 26px
        }

        header {
            margin-bottom: 31px
        }

        .avatar,
        .header-btn {
            display: none
        }

        .library-btn {
            font-size: 0;
            width: 42px;
            padding: 0
        }

        .library-btn:before {
            content: '♥';
            font-size: 17px
        }

        .search {
            width: 145px
        }

        .intro {
            display: block
        }

        .intro p {
            margin-top: 8px
        }

        .hero {
            grid-template-columns: 1fr;
            min-height: 390px
        }

        .hero-copy {
            padding: 34px 28px
        }

        .hero h2 {
            font-size: 35px;
            max-width: 270px
        }

        .hero-art {
            height: 175px
        }

        .poster {
            right: 60px;
            bottom: -28px;
            width: 150px;
            height: 190px
        }

        .sun {
            right: 15px;
            width: 225px;
            height: 225px
        }

        .arch {
            right: 10px;
            width: 235px;
            height: 235px
        }

        .hero-play {
            left: auto;
            right: 25px;
            bottom: 194px
        }

        .stations {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px
        }

        .art {
            height: 105px
        }

        .bottom-player {
            grid-template-columns: 1fr auto;
            padding: 11px 13px;
            min-height: 91px;
            border-radius: 23px
        }

        .mini-art {
            width: 64px;
            height: 64px;
            border-radius: 16px
        }

        .now {
            gap: 11px
        }

        .now-info:before {
            font-size: 7px;
            margin-bottom: 4px
        }

        .player-center {
            order: 2;
            border-left: 0;
            padding-left: 0
        }

        .controls {
            gap: 8px
        }

        .controls button:first-child,
        .controls button:last-child,
        .volume,
        .stream-line,
        .player-actions {
            display: none
        }

        .play {
            width: 50px !important;
            height: 50px !important
        }

        h1 {
            font-size: 37px
        }
    }

    /* Channel page content */
    main,
    footer {
        max-width: 1080px;
        margin: auto
    }

    .crumb,
    .crumb a {
        color: var(--muted);
        font-size: 13px;
        text-decoration: none
    }

    .crumb {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        margin: 16px 0 28px;
        padding: 14px 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(232, 221, 212, .92);
        box-shadow: 0 16px 40px rgba(45, 33, 29, .05)
    }

    .crumb span {
        color: var(--muted)
    }

    .crumb a {
        color: var(--orange)
    }

    .crumb strong {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 250px
    }

    .station-hero {
        min-height: 340px;
        border-radius: 28px;
        background: linear-gradient(120deg, #f65f35, #e44531);
        padding: 50px 52px;
        display: flex;
        align-items: center;
        gap: 40px;
        color: #fff;
        overflow: hidden;
        position: relative
    }

    .station-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(13, 12, 10, .18);
        backdrop-filter: blur(12px);
        z-index: 0
    }

    .station-hero:after {
        content: "";
        position: absolute;
        width: 410px;
        height: 410px;
        border-radius: 50%;
        background: #ffca61;
        right: -132px;
        bottom: -270px;
        opacity: .88;
        z-index: 0
    }

    .cover {
        height: 210px;
        width: 210px;
        border-radius: 28px;
        flex: none;
        background: linear-gradient(140deg, #ffcb66, #d83c2f);
        border: 5px solid rgba(255, 255, 255, .28);
        box-shadow: 12px 15px 0 rgba(120, 38, 26, .14);
        display: grid;
        place-items: center;
        overflow: hidden;
        font: 800 72px 'Playfair Display';
        color: #833228;
        z-index: 1
    }

    .cover img,
    .related-art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0
    }

    .hero-copy {
        z-index: 1
    }

    .hero-copy h1 {
        font: 800 60px/1.02 'Playfair Display';
        letter-spacing: -1.9px;
        margin: 0 0 16px
    }

    .summary {
        max-width: 560px;
        color: #ffe0d5;
        font-size: 18px;
        line-height: 1.8;
        margin: 0
    }

    .pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 22px
    }

    .pills span {
        padding: 8px 13px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 99px;
        font-size: 12px;
        text-transform: capitalize
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1.45fr .8fr;
        gap: 54px;
        margin: 58px 0
    }

    .station-content h2,
    .related h2,
    .feature-card h2 {
        font: 800 32px 'Playfair Display';
        letter-spacing: -.8px;
        margin: 0 0 16px
    }

    .station-content p,
    .station-content li,
    .feature-card p {
        font-size: 15px;
        line-height: 1.95;
        color: #665956
    }

    .station-content ul {
        padding-left: 22px
    }

    .station-content li {
        padding: 6px 0
    }

    .station-content dl {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-top: 1px solid var(--line);
        margin: 24px 0 0
    }

    .station-content dl div {
        padding: 18px 0;
        border-bottom: 1px solid var(--line)
    }

    dt {
        font-size: 12px;
        color: var(--muted)
    }

    dd {
        font-size: 14px;
        font-weight: 700;
        margin: 6px 0 0
    }

    .feature-card {
        align-self: start;
        background: #2b2222;
        color: white;
        border-radius: 24px;
        padding: 34px
    }

    .feature-card h2 {
        font-size: 34px;
        line-height: 1.06
    }

    .feature-card p:not(.eyebrow) {
        color: #d7c1b9;
        font-size: 15px
    }

    .feature-card a {
        color: #ffb48f;
        text-decoration: none;
        font-size: 14px;
        font-weight: 800
    }

    .related {
        border-top: 1px solid var(--line);
        padding: 40px 0 80px
    }

    .section-title {
        display: flex;
        justify-content: space-between;
        align-items: end;
        margin-bottom: 24px
    }

    .section-title .eyebrow {
        color: var(--orange)
    }

    .section-title>a {
        color: var(--orange);
        font-size: 12px;
        font-weight: 800;
        text-decoration: none
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px
    }

    .related-card {
        background: #fffdfb;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 14px;
        text-decoration: none;
        color: var(--ink)
    }

    .related-art {
        height: 124px;
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        background: linear-gradient(130deg, #ffc75e, #ef5a37);
        display: grid;
        place-items: center;
        color: #843027;
        font: 800 30px 'Playfair Display'
    }

    .related-card strong {
        display: block;
        font-size: 14px;
        margin-top: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .related-card small {
        display: block;
        margin-top: 5px;
        color: var(--muted);
        font-size: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .related-card em {
        display: block;
        color: var(--orange);
        font-size: 12px;
        font-style: normal;
        font-weight: 800;
        margin-top: 14px
    }

    .faq-list {
        border-top: 1px solid var(--line);
        margin: 24px 0 30px
    }

    .faq-list>div {
        padding: 18px 0;
        border-bottom: 1px solid var(--line)
    }

    .faq-list h3 {
        font-size: 15px;
        margin: 0 0 6px
    }

    .faq-list p {
        margin: 0
    }

    .channel-header .library-btn {
        height: 44px;
        display: flex;
        align-items: center;
        border-radius: 14px;
        background: #251d1c;
        color: #fffaf4;
    }

    .channel-header .library-btn:hover {
        background: #f45b31;
        border-color: #f45b31
    }

    .cover img {
        -webkit-filter: brightness(.4);
        filter: brightness(.4)
    }

    @media(max-width:720px) {

        main,
        footer {
            margin-left: 18px;
            margin-right: 18px
        }

        .station-hero {
            padding: 28px 24px;
            min-height: 0;
            gap: 18px
        }

        .cover {
            width: 98px;
            height: 98px;
            border-radius: 18px;
            font-size: 32px
        }

        .hero-copy h1 {
            font-size: 36px
        }

        .summary {
            font-size: 14px
        }

        .content-grid {
            display: block;
            margin: 44px 0
        }

        .feature-card {
            margin-top: 28px
        }

        .related-grid {
            grid-template-columns: repeat(2, 1fr)
        }

        .related-art {
            height: 100px
        }

        .crumb {
            overflow: hidden
        }

        .pills {
            display: none
        }
    }

    @media(max-width:680px) {
        .channel-header {
            width: calc(100% - 36px);
            max-width: none;
            padding: 12px 12px 12px 18px
        }
    }

    /* Shared page alignment and interaction states */
    .channel-page main,
    .channel-page footer {
        max-width: 1180px;
        padding-left: 36px;
        padding-right: 36px
    }

    .channel-page main {
        margin-left: auto;
        margin-right: auto
    }

    .channel-page footer {
        margin-left: auto;
        margin-right: auto
    }

    .channel-page .channel-header {
        width: auto;
        max-width: none
    }

    @media(max-width:680px) {
        html,
        body {
            overflow-x: hidden
        }

        body {
            font-size: 15px
            padding-bottom: env(safe-area-inset-bottom)
        }

        .app,
        .channel-page main,
        .channel-page footer {
            width: 100%;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
            padding-left: 14px;
            padding-right: 14px
        }

        .app {
            padding-top: 12px;
            padding-bottom: 132px
        }

        header,
        .channel-page .channel-header {
            position: sticky;
            top: 8px;
            width: 100%;
            min-height: 58px;
            height: auto;
            margin-bottom: 22px;
            padding: 9px 10px 9px 14px;
            border-radius: 17px
        }

        .brand {
            min-width: 0;
            gap: 5px;
            font-size: clamp(18px, 6vw, 24px);
            letter-spacing: -1px
        }

        .brand-mark {
            font-size: 21px;
            margin-right: 1px
        }

        .header-actions {
            min-width: 0;
            gap: 6px
        }

        .search {
            width: clamp(105px, 34vw, 145px);
            height: 40px;
            padding: 0 10px;
            border-radius: 12px;
            font-size: 12px
        }

        .library-btn {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 12px
        }

        .intro h1 {
            font-size: 32px;
            line-height: 1.08
        }

        .filters {
            display: flex;
            overflow-x: auto;
            flex-wrap: nowrap;
            margin-right: -14px;
            padding-right: 14px;
            padding-bottom: 6px;
            scrollbar-width: none
        }

        .filters::-webkit-scrollbar {
            display: none
        }

        .chip {
            flex: none;
            min-height: 40px;
            padding: 0 14px
        }

        .hero {
            min-height: 350px;
            border-radius: 22px
        }

        .hero-copy {
            padding: 28px 22px
        }

        .hero h2 {
            font-size: 32px
        }

        .hero-play {
            right: 20px;
            bottom: 174px
        }

        .stations {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px
        }

        .station {
            min-width: 0;
            border-radius: 15px
        }

        .station .art {
            height: 96px
            border-radius: 12px
        }

        .station-name,
        .station-meta {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap
        }

        .station-actions .station-play {
            min-height: 40px;
            padding: 0 9px;
            font-size: 11px
        }

        .heart,
        .controls button,
        .play {
            min-width: 44px;
            min-height: 44px
        }

        .bottom-player {
            left: 10px;
            right: 10px;
            bottom: calc(10px + env(safe-area-inset-bottom));
            width: auto;
            min-height: 78px;
            grid-template-columns: minmax(0, 1fr) auto;
            padding: 8px 10px;
            border-radius: 19px
        }

        .mini-art {
            width: 56px;
            height: 56px;
            border-radius: 14px
        }

        .now {
            gap: 9px
        }

        .now strong {
            max-width: 42vw
        }

        .play {
            width: 48px !important;
            height: 48px !important
        }

        .channel-page .crumb {
            margin-top: 8px;
            margin-bottom: 18px;
            padding: 11px 13px;
            border-radius: 15px
        }

        .station-hero {
            display: grid;
            grid-template-columns: 84px minmax(0, 1fr);
            align-items: center;
            gap: 14px;
            padding: 20px 16px;
            border-radius: 22px
        }

        .channel-page .cover {
            width: 84px;
            height: 84px;
            border-width: 3px;
            border-radius: 15px
        }

        .channel-page .hero-copy h1 {
            margin-bottom: 8px;
            font-size: 30px;
            line-height: 1.05;
            overflow-wrap: anywhere
        }

        .channel-page .summary {
            font-size: 13px;
            line-height: 1.55
        }

        .channel-page .content-grid {
            display: block;
            margin: 32px 0
        }

        .station-content h2,
        .related h2,
        .feature-card h2 {
            font-size: 27px;
            line-height: 1.12
        }

        .feature-card {
            padding: 24px;
            border-radius: 19px
        }

        .related-grid {
            gap: 10px
        }

        .related-card {
            min-width: 0;
            padding: 10px;
            border-radius: 15px
        }

        .related-art {
            height: 92px;
            border-radius: 11px
        }

        .related-card strong,
        .related-card small {
            overflow: hidden;
            text-overflow: ellipsis
        }
    }

    .brand:focus-visible,
    .search:focus-visible,
    .library-btn:focus-visible,
    .chip:focus-visible,
    .station-link:focus-visible,
    .station-play:focus-visible,
    .heart:focus-visible,
    .hero-play:focus-visible,
    .controls button:focus-visible,
    .player-actions button:focus-visible {
        outline: 3px solid rgba(244, 91, 49, .35);
        outline-offset: 3px
    }

    .channel-page .crumb {
        margin-top: 0
    }

    .channel-page .station-hero,
    .channel-page .content-grid,
    .channel-page .related {
        width: 100%
    }

    .channel-page .feature-card {
        box-shadow: 0 16px 32px rgba(43, 34, 34, .14)
    }

    .channel-page .related-card {
        transition: .2s ease;
        box-shadow: 0 8px 20px rgba(92, 53, 36, .04)
    }

    .channel-page .related-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(92, 53, 36, .12)
    }

    @media(max-width:720px) {

        .channel-page main,
        .channel-page footer {
            padding-left: 18px;
            padding-right: 18px
        }

        .channel-page .channel-header {
            width: auto
        }
    }

    @media(max-width:720px) {
        header,
        .channel-page .channel-header {
            width: calc(100% + 36px);
            margin-left: -18px;
            margin-right: -18px;
            border-radius: 0 0 17px 17px
        }

        .cover {
            position: relative
        }

        .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            inset: 0
        }

        .cover span {
            position: relative;
            z-index: 1
        }
    }

    .app {
        padding-top: 106px
    }

    header,
    .channel-page .channel-header {
        position: fixed;
        inset: 0 0 auto;
        z-index: 20;
        width: 100%;
        max-width: none;
        height: 70px;
        min-height: 70px;
        margin: 0;
        padding: 12px max(20px, calc((100vw - 1120px) / 2));
        border-radius: 0;
        box-shadow: 0 8px 24px rgba(55, 38, 31, .12)
    }

    @media(max-width:680px) {
        .app {
            padding-top: 86px
        }

        header,
        .channel-page .channel-header {
            height: 70px;
            min-height: 70px;
            padding: 12px 14px;
            border-radius: 0
        }
    }

    @media(max-width:680px) {
        .bottom-player {
            position: fixed;
            left: 10px;
            right: 10px;
            bottom: calc(8px + env(safe-area-inset-bottom));
            transform: none;
            width: auto;
            min-height: 66px;
            height: 66px;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 10px;
            padding: 7px 9px;
            border-radius: 17px
        }

        .mini-art {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            font-size: 16px
        }

        .now {
            gap: 8px
        }

        .now-info:before {
            margin-bottom: 2px
        }

        .now strong {
            max-width: calc(100vw - 145px);
            font-size: 12px
        }

        .now small {
            margin-top: 1px;
            font-size: 9px
        }

        .live-meta,
        .stream-line,
        .player-actions,
        .controls button:first-child,
        .controls button:last-child {
            display: none
        }

        .player-center {
            display: block;
            border: 0;
            padding: 0
        }

        .controls {
            display: block
        }

        .play {
            width: 44px !important;
            height: 44px !important;
            min-width: 44px;
            min-height: 44px
        }
    }

    .site-footer {
        width: min(1180px, calc(100% - 40px));
        margin: 0 auto;
        padding: 34px 20px calc(164px + env(safe-area-inset-bottom));
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--muted);
        text-align: center;
        font-size: 12px
    }

    .site-footer strong {
        color: var(--ink);
        font: 800 24px 'Playfair Display'
    }

    .site-footer nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 18px;
        margin: 10px 0
    }

    .site-footer a {
        color: var(--orange);
        text-decoration: none;
        font-weight: 700
    }

    .site-footer a:hover {
        text-decoration: underline
    }

    .info-page {
        padding-top: 24px
    }

    .info-content {
        /* width: min(760px, calc(100% - 40px)); */
        margin: 0 auto;
        padding-bottom: 40px
    }

    .info-content h1 {
        margin-bottom: 18px
    }

    .info-content h2 {
        margin: 34px 0 8px;
        font: 800 28px 'Playfair Display'
    }

    .info-content p,
    .info-content li {
        color: #665956;
        line-height: 1.9
    }

    .info-content a {
        color: var(--orange)
    }

    @media(max-width:680px) {
        .site-footer {
            width: calc(100% - 28px);
            padding-left: 0;
            padding-right: 0
        }

        .info-page {
            padding-top: 12px
        }

        .info-content {
            width: calc(100% - 28px)
        }

        .info-content h1 {
            font-size: 36px
        }
    }