:root {
    --pt-red: #e31d2b;
    --pt-red-light: #ff4b58;
    --pt-bg: #080808;
    --pt-panel: #141414;
    --pt-border: rgba(255,255,255,.1);
    --pt-muted: #aaa;
    color-scheme: dark;
}

* { box-sizing: border-box; }

body.programs-team-page {
    margin: 0;
    min-width: 320px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(227,29,43,.13), transparent 30%),
        var(--pt-bg);
}

.programs-team-hero {
    position: relative;
    min-height: 410px;
    display: grid;
    place-items: center;
    padding: 90px 24px 55px;
    text-align: center;
    background:
        radial-gradient(circle, rgba(227,29,43,.24), transparent 35%),
        linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.9)),
        url('/assets/images/hero-banner.svg') center/cover no-repeat;
    border-bottom: 1px solid var(--pt-border);
}

.programs-team-hero > a {
    position: absolute;
    top: 24px;
    left: clamp(18px,4vw,56px);
    color: #ddd;
    font-weight: 800;
    text-decoration: none;
}

.programs-team-hero span {
    color: var(--pt-red-light);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.programs-team-hero h1 {
    margin: 12px 0;
    font-size: clamp(3.8rem,11vw,7rem);
    line-height: .92;
    letter-spacing: -.055em;
}

.programs-team-hero p {
    color: #ccc;
    font-size: 1.08rem;
}

.programs-team-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 90px;
}

.program-day-card {
    margin-bottom: 26px;
    overflow: hidden;
    background: var(--pt-panel);
    border: 1px solid var(--pt-border);
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(0,0,0,.3);
}

.program-day-card.is-today {
    border-color: rgba(255,75,88,.42);
}

.program-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    background:
        linear-gradient(90deg, rgba(227,29,43,.18), transparent 55%),
        #191919;
    border-bottom: 1px solid var(--pt-border);
}

.program-day-header span {
    color: var(--pt-red-light);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.program-day-header h2 {
    margin: 5px 0 0;
    font-size: clamp(1.9rem,4vw,2.8rem);
}

.program-day-header > strong {
    padding: 9px 13px;
    color: #ddd;
    font-size: .8rem;
    background: rgba(0,0,0,.28);
    border: 1px solid var(--pt-border);
    border-radius: 999px;
}

.program-day-content {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.program-show-card {
    padding: 20px;
    background: rgba(0,0,0,.26);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
}

.program-show-card.is-live {
    border-color: rgba(255,75,88,.4);
    box-shadow: inset 0 0 0 1px rgba(227,29,43,.08);
}

.program-show-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.time-badge,
.live-badge {
    display: inline-flex;
    padding: 6px 9px;
    color: #fff;
    font-size: .7rem;
    font-weight: 900;
    border-radius: 999px;
}

.time-badge {
    background: rgba(255,255,255,.07);
    border: 1px solid var(--pt-border);
}

.live-badge {
    background: rgba(227,29,43,.16);
    border: 1px solid rgba(255,75,88,.32);
}

.program-show-top h3 {
    margin: 10px 0 8px;
    font-size: clamp(1.6rem,4vw,2.4rem);
}

.program-show-top p {
    max-width: 700px;
    margin: 0;
    color: var(--pt-muted);
    line-height: 1.65;
}

.listen-live-button {
    flex: 0 0 auto;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 14px;
    color: #fff;
    font-size: .82rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(135deg,var(--pt-red),var(--pt-red-light));
    border-radius: 10px;
}

.program-team {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 14px;
}

.dj-profile-card {
    display: grid;
    grid-template-columns: 120px minmax(0,1fr);
    gap: 16px;
    align-items: center;
    padding: 15px;
    background: rgba(255,255,255,.035);
    border: 1px solid var(--pt-border);
    border-radius: 14px;
}

.dj-photo {
    display: grid;
    width: 120px;
    height: 120px;
    overflow: hidden;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(135deg,#8f0d17,var(--pt-red-light));
    border-radius: 14px;
}

.dj-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dj-profile-copy > span {
    color: var(--pt-red-light);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.dj-profile-copy h4 {
    margin: 5px 0 7px;
    font-size: 1.35rem;
}

.dj-profile-copy p {
    margin: 0 0 10px;
    color: var(--pt-muted);
    font-size: .88rem;
    line-height: 1.55;
}

.dj-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dj-socials a {
    padding: 6px 8px;
    color: #ddd;
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--pt-border);
    border-radius: 7px;
}

.no-team,
.empty-program-day {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    color: var(--pt-muted);
    background: rgba(0,0,0,.2);
    border: 1px dashed rgba(255,255,255,.12);
    border-radius: 13px;
}

.no-team > span,
.empty-program-day > strong {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg,#8f0d17,var(--pt-red-light));
    border-radius: 13px;
}

.empty-program-day h3 {
    margin: 0 0 5px;
    color: #fff;
}

.empty-program-day p {
    margin: 0;
}

.team-form {
    display: grid;
    gap: 18px;
}

.team-form select {
    width: 100%;
    padding: 11px 12px;
    color: #fff;
    background: rgba(0,0,0,.3);
    border: 1px solid var(--admin-border);
    border-radius: 9px;
}

.team-select-grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.team-select-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 12px;
    cursor: pointer;
    background: rgba(0,0,0,.23);
    border: 1px solid var(--admin-border);
    border-radius: 12px;
}

.team-select-card input {
    position: absolute;
    top: 10px;
    right: 10px;
}

.team-select-photo {
    display: grid;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    place-items: center;
    background: linear-gradient(135deg,#8f0d17,var(--pt-red-light));
    border-radius: 10px;
}

.team-select-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 950px) {
    .program-team {
        grid-template-columns: 1fr;
    }

    .team-select-grid {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }
}

@media (max-width: 650px) {
    .program-show-top,
    .program-day-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .listen-live-button {
        width: 100%;
        justify-content: center;
    }

    .dj-profile-card {
        grid-template-columns: 1fr;
    }

    .dj-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .team-select-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}
