:root {
    --bg-color: #ffffff;
    --accent-red: #FF0000;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'stolzl', sans-serif;
    background-color: #fefcfb;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100dvh;
    min-height: 100vh;
    /* fallback for older browsers */
}

/* Utility for rotating nav arrow */
.arrow-rotate {
    transform: rotate(-90deg);
}

/* The Mobile Frame - 375px width to match Figma */
.frame-mobile {
    width: 100%;
    width: 100%;
    /* max-width: 375px; Removed for full width */
    /* Keep Figma scale on desktop, shrink on small mobile */
    min-height: 100dvh;
    min-height: 100vh;
    /* fallback */
    max-height: 100dvh;
    max-height: 100vh;
    /* fallback */
    background: #fefcfb;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.app-content {
    width: 100%;
    height: 100%;
    max-height: 100%;
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    /* Ensure vertical scrolling works */
}

/* Add padding and dynamic height for standalone/PWA mode (home screen app) */
@media (display-mode: standalone) {
    .frame-mobile {
        width: 100%;
        height: 100dvh;
        box-shadow: none;
    }

    .app-content {
        padding-top: calc(20px + env(safe-area-inset-top, 20px));
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu {
        padding-top: calc(20px + env(safe-area-inset-top, 20px));
    }
}

/* iOS Safari standalone fallback */
@supports (-webkit-touch-callout: none) {
    @media (display-mode: standalone) {
        .frame-mobile {
            width: 100%;
            height: -webkit-fill-available;
            box-shadow: none;
        }

        .app-content {
            padding-top: calc(20px + env(safe-area-inset-top, 44px));
            padding-bottom: calc(20px + env(safe-area-inset-bottom, 34px));
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .nav-menu {
            padding-top: calc(20px + env(safe-area-inset-top, 44px));
        }
    }
}

/* Slide-out Nav Menu - 216px wide per Figma */
.nav-menu {
    position: absolute;
    right: -216px;
    width: 216px;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    padding: 40px 8px 20px 20px;
    box-sizing: border-box;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nav-menu.open {
    right: 0;
}


.nav-menu-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 20px;
    align-items: flex-end;
}

.nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    padding: 6px 4px 6px 4px;
    text-decoration: none;
    width: fit-content;
}

.nav-item span {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 42px;
    color: #ffffff;
    letter-spacing: -2.24px;
    line-height: 26px;
    white-space: nowrap;
}

/* Exception for the bugfixes/feature requests link */
a.nav-item[href*="opnform.com"] span {
    font-size: 24px;
    /* Change this value to adjust the bugfixes link size */
}

.nav-close {
    position: absolute;
    top: 5px;
    left: 12px;
    width: 24px;
    height: 46px;
    background: none;
    border: none;
    font-size: 46px;
    font-weight: 300;
    color: var(--accent-red);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu {
    cursor: pointer;
}

/* 1. Nav Bar */
.nav-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 38px;
    flex-shrink: 0;
    z-index: 100;
}

.menu {
    width: 29px;
    height: 26.51px;
    cursor: pointer;
    padding: 10px;
    margin: -10px;
    box-sizing: content-box;
    position: relative;
    z-index: 101;
    -webkit-tap-highlight-color: transparent;
}



.profile {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1px;
}

.profile img {
    width: 36px;
    height: 36px;
}

/* 2. Betafish Background */
.betafish-wrapper {
    position: absolute;
    left: calc(50% - 17.82px);
    transform: translateX(-50%);
    top: 50px;
    width: 509.37px;
    height: 597.91px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.betafish-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 3. Hero Section */
.hero {
    width: 335px;
    height: 440px;
    position: relative;
    z-index: 20;
    flex-shrink: 0;
    touch-action: pan-y;
    /* Allow scrolling through hero */
}

.main-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100px;
    width: 327.53px;
    height: 104.50px;
}

/* Listen Now Button - Figma specs */
.listen-now-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 220px;
    padding: 6px 8px;
    background: linear-gradient(120deg, #FF0000 0%, #ff5252 30%, #FF0000 60%, #cc0000 85%, #FF0000 100%);
    background-size: 200% auto;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 0 6px rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite ease-in-out, metallicShine 5s linear infinite;
}

.listen-now-button span {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: white;
    letter-spacing: -2.1px;
    line-height: 0.64;
    text-align: center;
    display: flex;
    /* Helps with span alignment */
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* 4. Middle Section */
.middle {
    width: 335px;
    height: 160px;
    position: relative;
    z-index: 20;
    flex-shrink: 0;
    display: flex;
    gap: 14px;
    align-items: flex-end;
    justify-content: center;
}

.curated-text {
    width: 256px;
    font-family: 'stolzl', sans-serif;
    font-weight: 200;
    font-size: 28px;
    line-height: 0.86;
    letter-spacing: -1.92px;
    color: black;
    margin: 0;
    text-align: right;
}

/* The Pit Box */
.pit-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 81px;
    height: 97px;
    background: #000000;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
}

.click-me-text {
    position: absolute;
    top: -27px;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: #FF0000;
    white-space: nowrap;
    pointer-events: none;
}

.pit-box-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #fefcfb;
    letter-spacing: -2.88px;
    line-height: 0.84;
    text-align: right;
    width: 100%;
    padding-right: 4px;
    box-sizing: border-box;
}

.version-label {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 10px;
    color: #999;
    letter-spacing: -0.5px;
    margin: 5px 0 0 0;
    text-align: center;
}

/* 5. Footer Section */
.footer {
    width: 335px;
    height: 200px;
    /* Increased from 176px to add bottom padding */
    position: relative;
    z-index: 30;
    flex-shrink: 0;
    margin-top: 20px;
}

/* Notification Box - Figma specs */
.notification {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
    width: 253.2px;
    height: 78px;
    background-color: var(--accent-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Squiggly Line Decoration */
/* Curved Line Decoration - from Figma */
.notification::before {
    content: '';
    display: block;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 12px;
    background-image: url('assets/curved-line.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 10;
}

.notification-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 31.2px;
    letter-spacing: -2.52px;
    color: white;
    text-align: center;
    white-space: nowrap;
}

.notification-text p {
    margin: 0;
}

/* Input Row */
.input-row {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 180px;
    width: 253.2px;
    height: 31.2px;
    display: flex;
    align-items: center;
    gap: 8.4px;
}

.phone-input-wrapper {
    width: 220.8px;
    height: 31.2px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    padding: 0 5px;
    box-sizing: border-box;
}

.phone-input {
    width: 100%;
    border: none;
    padding: 0;
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 13.2px;
    line-height: 31.2px;
    letter-spacing: -0.92px;
    color: rgba(0, 0, 0, 0.36);
    outline: none;
    background: transparent;
}

.phone-input::placeholder {
    color: rgba(0, 0, 0, 0.36);
}

.arrow-icon {
    width: 24px;
    height: 24px;
}

/* Form Embed Wrapper */
.form-embed-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150px;
    width: 100%;
    max-width: 320px;
    /* Masking the OpenForm branding */
    overflow: hidden;
    height: 200px;
}

.form-embed-wrapper iframe {
    width: 100%;
    height: 60%;
    min-height: 100px;
}

/* Page Content Styling */
.page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-title {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 48px;
    color: #000000;
    letter-spacing: -2px;
    text-align: center;
    margin: 0;
}

/* =====================
   LISTEN NOW PAGE STYLES
   ===================== */

.listen-now-page .app-content {
    padding: 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.listen-splits-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    align-self: stretch;
}

.listen-experience-label {
    flex-shrink: 0;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #FF0000;
    padding: 10px 18px;
    z-index: 10;
    pointer-events: none;
    margin: -28px 0;
}

.listen-exp-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: -0.3px;
}

.listen-split-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    width: 100%;
}

.listen-split-section:hover {
    opacity: 0.9;
}

.classic-split {
    background-color: #000000;
}

.pit-split {
    background-color: var(--bg-color);
}

.split-logo {
    max-width: 250px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
}

.pit-split .split-logo {
    max-width: 230px;
    /* Pit logo usually looks a bit larger naturally */
}

.split-desc {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    max-width: 250px;
    margin: 0;
}

.classic-split .split-desc {
    color: #ffffff;
}

.pit-split .split-desc {
    color: #000000;
}

/* =====================
   ABOUT PAGE STYLES
   ===================== */

.about-page {
    background-color: #fefcfb;
}

.about-content {
    background-color: #fefcfb;
    justify-content: center;
}

.about-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #000000;
    letter-spacing: -1.4px;
    line-height: 1.4;
    text-align: center;
    max-width: 300px;
}

.about-text p {
    margin: 0 0 10px 0;
}

/* =====================
   CONTACT PAGE STYLES
   ===================== */

.contact-page {
    background-color: #fefcfb;
}

.contact-info {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    letter-spacing: -1.6px;
    line-height: 24px;
    text-align: center;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: #000000;
    text-decoration: none;
}

/* =====================
   LIBRARY PAGE STYLES
   ===================== */

/* Library Hero Section */
.library-hero {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex-shrink: 0;
    height: auto;
}

.library-logo {
    width: 272.94px;
    height: 141px;
    object-fit: contain;
}

/* Volume Tabs */
.volume-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    flex-shrink: 0;
}

.volume-tab {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    letter-spacing: -1px;
    cursor: pointer;
    position: relative;
    padding-bottom: 1px;
    padding-left: 2px;
    padding-right: 2px;
}

.volume-tab.active {
    text-decoration: none;
    background-color: black;
    color: #ffffff;
}

.filter-wrapper {
    position: relative;
    margin-left: auto;
}

.filter-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.filter-icon:hover {
    opacity: 0.7;
}

.filter-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #000000;
    min-width: 150px;
    z-index: 100;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-dropdown.open {
    display: flex;
}

.filter-option {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 14px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.filter-option:hover {
    background-color: #f0f0f0;
}

.filter-option.active {
    background-color: #000000;
    color: #ffffff;
}

/* Episode List */
.episode-list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 10px 0;
    flex-shrink: 0;
}

.episode-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    text-decoration: none;
}

.episode-source {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #000000;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 2px;
    line-height: .5;
}

.episode-badge {
    color: var(--accent-red);
    font-weight: 400;
}

.episode-title {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 36px;
    color: #000000;
    letter-spacing: -2px;
    line-height: 1;
}

.episode-genres {
    font-family: 'stolzl', sans-serif;
    font-weight: 100;
    font-size: 10px;
    color: #000000;
    letter-spacing: -0.3px;
    padding-top: 2px;

}

/* Library Footer adjustments */
.library-footer {
    margin-top: 100px;
    height: 300px;
    padding-bottom: 20px;
    width: 335px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.library-footer .notification {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
    margin-bottom: 10px;
}

.library-footer .input-row {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 180px;
}

.library-footer .form-embed-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 150px;
    max-width: 320px;
    width: 100%;
}

/* Bottom nav for library */
.bottom-nav {
    margin-top: 10px;
}

/* Library Top Nav Bar */
.library-top-nav {
    width: 100%;
    height: 77px;
    background: #242323;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 11px 11px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.library-nav-home {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 8px 0;
}

.library-nav-home .nav-arrow-left {
    width: 20px;
    height: 20px;
}

.library-nav-home span {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fefcfb;
    letter-spacing: -1.05px;
}

.library-nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 0;
}

.library-nav-menu span {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fefcfb;
    letter-spacing: -1.05px;
}

.library-nav-menu .menu-icon-light {
    width: 29px;
    height: 26.51px;
    filter: brightness(0) invert(1);
}

/* Library Content Wrapper */
.library-content {
    padding-top: 10px;
    background-color: #fefcfb;
}

/* Next Volume Button */
.next-volume-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    padding: 20px 0;
    cursor: pointer;
}

.next-volume-btn span {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    letter-spacing: -1.05px;
}

.next-volume-btn .next-volume-arrow {
    width: 16px;
    height: 16px;
}

.next-volume-btn:hover {
    opacity: 0.7;
}

/* Global Notification Footer Bar (Based on Player Design) */
.global-footer {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    background: var(--accent-red, #FF0000);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 20px;
    /* Increased padding for vertical presence */
    box-sizing: border-box;
    margin-top: auto;
    min-height: 60px;
}

.global-footer-left {
    flex: 1;
    text-align: center;
}

.global-footer-notify-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 18px;
    /* Bumped up to fill the box */
    color: #FFFFFF;
    letter-spacing: -1px;
    /* Loosened significantly to not be 'crammed' */
    line-height: 1.1;
    margin: 0;
    width: 100%;
    position: relative;
}

.global-footer-right {
    display: none;
    /* Hidden by default to let text center */
}

/* Maintain right display only if content exists */
.global-footer-right:not(:empty) {
    display: block;
    flex: 0;
    margin-left: 10px;
}

.global-footer-submit-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 10px;
    color: #FFFFFF;
    letter-spacing: -0.5px;
    line-height: 1.4;
    margin: 0;
}

/* Global Form Section */
.global-form-section {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -10px;
    background: transparent;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.global-form-section .form-embed-wrapper {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 366px;
    height: 160px;
    /* Restored height from library embed styles */
    overflow: hidden;
}

.global-form-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 100px;
}

/* =====================
   THE PIT PAGE STYLES (REDESIGN)
   ===================== */

body.page-pit {
    background-color: #000000;
}

/* Pit Content Wrapper — all black */
.pit-new-content {
    padding: 0;
    gap: 33px;
    background-color: #000000;
}

/* Large "the pit" Title */
.pit-title-section {
    width: 100%;
    padding: 20px 5px;
    box-sizing: border-box;
}

.pit-title-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 96px;
    color: #ffffff;
    letter-spacing: -10px;
    line-height: 1;
    margin: 0;
    text-align: left;
}

/* Red Action Buttons */
.pit-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 17px;
}

.pit-action-btn {
    width: 249px;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1px 9px;
    box-sizing: border-box;
    text-decoration: none;
}

.pit-action-btn-random {
    width: 100%;
    background: #FF0000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 6px 12px;
    box-sizing: border-box;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.5);
    animation: randomGlow 2.4s ease-in-out infinite;
}

.pit-action-btn-random span {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 26px;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.pit-action-btn-random::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: randomSweep 2.4s ease-in-out infinite;
}

@keyframes randomGlow {

    0%,
    100% {
        box-shadow: 0 0 14px rgba(255, 0, 0, 0.45);
    }

    50% {
        box-shadow: 0 0 28px rgba(255, 0, 0, 0.85);
    }
}

@keyframes randomSweep {
    0% {
        left: -100%;
    }

    60%,
    100% {
        left: 150%;
    }
}

.pit-action-btn-shiny {
    width: 249px;
    background: linear-gradient(120deg, #FF0000 0%, #ff6b6b 25%, #FF0000 50%, #8b0000 75%, #FF0000 100%);
    background-size: 200% auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1px 9px;
    box-sizing: border-box;
    text-decoration: none;
    animation: metallicShine 3s linear infinite;
    border: 1px solid rgba(255, 100, 100, 0.5);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

@keyframes metallicShine {
    to {
        background-position: 200% center;
    }
}

.pit-action-btn span,
.pit-action-btn-shiny span {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Episodes Section */
.pit-episodes-section {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
}

.pit-episode-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 10px;
}

.pit-episode-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-decoration: none;
    cursor: pointer;
}

.pit-episode-name {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -2.24px;
    color: #e6e6e6;
    margin: 0;
}

.pit-episode-curator {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.77px;
    color: #e6e6e6;
    margin: 0;
}

.pit-episode-vibe {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #a0a0a0;
    margin: 4px 0 0 0;
}

/* Pit-specific footer/form overrides for dark bg */
.pit-footer {
    margin-top: auto;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.pit-form-section {
    background: #000000 !important;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: -33px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pit-form-section .form-embed-wrapper {
    height: auto;
    overflow: visible;
    max-width: 400px;
    margin: 0 auto;
}

/* Custom Native Phone Form */
.custom-phone-form-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
}

.custom-phone-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-form-label {
    font-family: 'stolzl', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 8px;
    margin-left: 0;
    text-align: center;
}

.global-form-input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'stolzl', sans-serif;
    font-size: 16px;
    color: #333;
    background-color: #f5f5f5;
    border: none;
    outline: none;
    box-sizing: border-box;
}

.global-form-input::placeholder {
    color: #aaa;
}

.global-form-submit {
    align-self: center;
    background-color: #ff0000;
    color: #fff;
    font-family: 'stolzl', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    margin-top: 15px;
    margin-bottom: 40px;
}

.global-form-submit:hover {
    opacity: 0.8;
}

.global-form-success {
    font-family: 'stolzl', sans-serif;
    font-size: 18px;
    color: #ff0000 !important;
    text-align: center;
    margin-top: 20px;
}

/* Dark Mode Overrides for Phone Form */
body.page-pit .global-form-label,
body.dark-mode .global-form-label,
.player-bottom.dark-mode .global-form-label,
.page-about-pit .global-form-label {
    color: #aaa;
}

body.page-pit .global-form-input,
body.dark-mode .global-form-input,
.player-bottom.dark-mode .global-form-input,
.page-about-pit .global-form-input {
    background-color: #222;
    color: #fff;
}

body.page-pit .global-form-input::placeholder,
body.dark-mode .global-form-input::placeholder,
.player-bottom.dark-mode .global-form-input::placeholder,
.page-about-pit .global-form-input::placeholder {
    color: #555;
}

body.page-pit .global-footer-submit-text,
body.dark-mode .global-footer-submit-text,
.player-bottom.dark-mode .global-footer-submit-text,
.page-about-pit .global-footer-submit-text,
body.page-pit .global-footer-notify-text,
body.dark-mode .global-footer-notify-text,
.player-bottom.dark-mode .global-footer-notify-text,
.page-about-pit .global-footer-notify-text {
    color: #fff !important;
}

/* =====================
   THE PIT PAGE STYLES (LEGACY)
   ===================== */

.pit-content {
    justify-content: flex-start;
    /* Align to top */
    padding-top: 20px;
}

/* Updated Hero with real asset */
.pit-hero {
    width: 100%;
    max-width: 253px;
    height: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    margin: 0 auto;
}

.pit-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Remove CSS approximation */
.pit-logo-wrapper {
    display: none;
}

.catalog-header {
    width: 90%;
    /* Fluid width */
    max-width: 335px;
    /* Use content width */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.catalog-title {
    font-family: 'stolzl', sans-serif;
    font-size: 36px;
    /* Inferred from visual hierarchy in screenshot and common patterns */
    /* The specific font size for "Catalog" wasn't in the snippet but 48px matches typical header size */
    /* Wait, the text node was 68:118. Let's assume typical header 32-48px. */
    /* Actually, looking at the screenshot, "Catalog" seems similar to other headers. */
    /* Let's stick to standard styling but use the layout we verified. */
    /* Wait, in the MCP code: 
      <text id="68:118" name="Catalog" x="0" y="0" width="313" height="48" />
      Height 48 suggests font size around 48px or line-height. */
    font-weight: 400;
    color: #000;
    line-height: 1;
    letter-spacing: -2px;
}

.catalog-controls {
    display: flex;
    gap: 10px;
    /* Space between controls */
}

/* Control Icons */
.control-icon {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    /* Icons are images now */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: transparent;
}

.control-icon img {
    width: 100%;
    height: 100%;
}

.pit-list {
    width: 85%;
    /* Fluid width */
    max-width: 313px;
    /* From MCP: width="313" */
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* Gap from screenshot/code */
    padding-bottom: 20px;
    flex-shrink: 0;
}

.pit-item {
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* Tighter gap */
    cursor: pointer;
    height: 55px;
    /* From MCP: height="55" */
}

.pit-item-name {
    font-family: 'stolzl', sans-serif;
    font-size: 32px;
    /* Precision from MCP */
    font-weight: 400;
    line-height: 30px;
    /* Precision from MCP */
    color: #000;
    letter-spacing: -2.24px;
    /* Precision from MCP */
    white-space: nowrap;
    text-overflow: ellipsis;
    align-items: flex-start;
}

.pit-item-genre {
    font-family: 'stolzl', sans-serif;
    font-size: 11px;
    /* Precision from MCP */
    font-weight: 300;
    /* Stolzl:Thin */
    color: #000;
    /* #000000 */
    letter-spacing: -0.77px;
    /* Precision from MCP */
    line-height: 26px;
    /* Precision from MCP */
    margin-top: 3px;
    /* Slight visual adjustment */
}

/* Form Modal Overlay */
.form-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.form-modal {
    background: #ffffff;
    width: 95%;
    max-width: 375px;
    height: 90%;
    max-height: 90vh;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.form-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #000;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

/* =====================
   MEDIA PLAYER PAGE STYLES (Redesign)
   ===================== */

/* Player scrollable content wrapper */
.player-scroll-content {
    padding: 0;
    gap: 0;
}

/* Dark Top Nav Bar */
.player-top-nav {
    width: 100%;
    height: 60px;
    background: #242323;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    flex-shrink: 0;
    padding-top: 20px;
    padding-bottom: 10px;
}

.player-nav-library {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.player-nav-library .nav-arrow {
    width: 25px;
    height: 25px;
    fill: #fefcfb;
}

.player-nav-library .nav-library-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fefcfb;
    letter-spacing: -1.05px;
}

.player-nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.player-nav-menu .nav-menu-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #fefcfb;
    letter-spacing: -1.05px;
}

.player-nav-menu .menu {
    width: 29px;
    height: 26.51px;
    filter: brightness(0) invert(1);
}

/* Volume/Episode Header Bar — hidden for now */
.player-vol-ep-bar {
    display: none;
}

.vol-ep-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #fefcfb;
    letter-spacing: -1.05px;
}

.episode-num-highlight {
    color: var(--accent-red);
    font-weight: 400;
}

/* Album Art Hero Section */
.player-hero {
    width: 100%;
    flex: 1;
    min-height: 300px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.player-hero-logo {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.player-hero .player-visualizer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: #000000;
}

.player-hero .player-visualizer-canvas.active {
    display: block;
}

/* Bottom Section (Gray Background) */
.player-bottom {
    width: 100%;
    flex: 0 0 auto;
    background: #fefcfb;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.player-bottom .global-footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.player-bottom .global-form-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}

/* Track/Curator Label */
.player-track-curator {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: 'stolzl', sans-serif;
    font-size: 15px;
    color: #000000;
    letter-spacing: -1.05px;
}

.track-id-label,
.track-curator-label {
    font-weight: 100;
}

.track-id-value,
.track-curator-value {
    font-weight: 400;
}

/* Track Row (Number + Visualizer Toggle) */
.player-track-row {
    width: 90%;
    max-width: 335px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.track-number {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #000000;
    letter-spacing: -1.05px;
}

.visualizer-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #000000;
    letter-spacing: -1.05px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.visualizer-toggle:hover {
    opacity: 0.7;
}

.text-red {
    color: #FF0000 !important;
}

.visualizer-toggle.active {
    font-weight: 500;
}

.visualizer-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* Track Title */
.player-track-title {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    letter-spacing: -1.68px;
    margin: 5px 0 15px 0;
    text-align: center;
    max-width: 90%;
}

/* Progress Bar with Time */
.player-progress-wrapper {
    width: 90%;
    max-width: 335px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #BDBDBD;
    position: relative;
    cursor: pointer;
    touch-action: none;
}

/* Larger touch target for mobile tapping */
.progress-bar::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    bottom: -15px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-red);
    position: absolute;
    left: 0;
    top: 0;
    transition: width 0.1s ease;
}

.progress-thumb {
    width: 16px;
    height: 20px;
    background: var(--accent-red);
    border-radius: 0;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: left 0.1s ease;
    touch-action: none;
    z-index: 10;
}

/* Larger touch target for mobile */
.progress-thumb::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
}

.progress-thumb:active {
    cursor: grabbing;
}

.progress-time {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #000000;
    letter-spacing: -0.5px;
    text-align: right;
}

/* Media Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    flex-shrink: 0;
}

.control-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
}

.control-btn:hover {
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

.control-play {
    padding: 5px;
}

/* Dark Mode for Player Bottom (when visualizer active) */
.player-bottom.dark-mode {
    background: #000000;
}

.player-bottom.dark-mode .player-track-curator,
.player-bottom.dark-mode .track-number,
.player-bottom.dark-mode .visualizer-toggle,
.player-bottom.dark-mode .player-track-title,
.player-bottom.dark-mode .progress-time {
    color: #E6E6E6;
}

.player-bottom.dark-mode .track-id-label,
.player-bottom.dark-mode .track-curator-label {
    color: #888888;
}

.player-bottom.dark-mode .progress-bar {
    background: #333333;
}

.player-bottom.dark-mode .control-btn svg path,
.player-bottom.dark-mode .control-btn svg rect {
    fill: #ffffff;
}

.player-bottom.dark-mode .control-btn svg path[stroke] {
    stroke: #ffffff;
}

.player-bottom.dark-mode .promo-hey {
    color: var(--accent-red);
}

.player-bottom.dark-mode .promo-text,
.player-bottom.dark-mode .promo-enter {
    color: #E6E6E6;

}

.player-bottom.dark-mode .promo-highlight {

    background-color: #423c3c;
}

.player-bottom.dark-mode .pit-promo-bracket-top-left {
    border-top-color: #ffffff;
    border-left-color: #ffffff;
}

.player-bottom.dark-mode .pit-promo-bracket-bottom-right {
    border-bottom-color: #ffffff;
    border-right-color: #ffffff;
}

/* The Pit Promo with L-Brackets */
.player-pit-promo {
    width: 90%;
    max-width: 300px;
    padding: 20px;
    position: relative;
    margin-bottom: 10px;
}

.pit-promo-bracket-top-left {
    position: absolute;
    top: 5px;
    left: 0px;
    width: 20px;
    height: 20px;
    border-top: 3px solid #000000;
    border-left: 3px solid #000000;
}

.pit-promo-bracket-bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-bottom: 3px solid #000000;
    border-right: 3px solid #000000;
}

.pit-promo-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.promo-hey {
    font-family: 'stolzl', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--accent-red);
    letter-spacing: -2.5px;
    margin: 0;
    line-height: 1;
}

.promo-text {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #000000;
    letter-spacing: -1.26px;
    margin: 0;
    line-height: 1.3;
}

.promo-link {
    font-family: 'stolzl', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    letter-spacing: -1.26px;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.promo-enter {
    font-weight: 300;
}

.promo-highlight {
    background: #000000;
    color: #FFFFFF;
    padding: 2px 6px;
}


/* The Pit Episodes List & Likes */
.pit-episode-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pit-episode-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.pit-episode-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    /* take up remaining space to push likes to the right */
}

.pit-episode-listens {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    opacity: 0.5;
    flex-shrink: 0;
    font-family: 'stolzl', sans-serif;
    font-size: 14px;
    color: #ffffff;
    pointer-events: none;
    user-select: none;
}

.pit-episode-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    /* Increased padding for larger tap target */
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 10;
    /* Ensure this is "above" the link on mobile */
    /* Remove tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
}

.pit-episode-likes:hover {
    transform: scale(1.05);
}

.pit-episode-likes.liked {
    cursor: default;
}

.pit-episode-likes.liked:hover {
    transform: scale(1);
}

.heart-icon {
    color: #ffffff;
    transition: fill 0.2s ease, stroke 0.2s ease, color 0.2s ease;
}

.like-count {
    font-family: 'stolzl', sans-serif;
    font-size: 14px;
    color: #ffffff;
}

.pit-sort-container select {
    outline: none;
}

.pit-sort-container select:focus {
    border-color: var(--accent-red);
}

/* OG Page Styles */
.og-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #e6e6e6;
    display: flex;
    justify-content: center;
    padding: 31px 20px;
    box-sizing: border-box;
}

.og-content {
    width: 100%;
    max-width: 375px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.og-text {
    font-family: 'stolzl', sans-serif;
    font-size: 20px;
    line-height: 24px;
    color: black;
    letter-spacing: -1.6px;
    margin: 0;
}

.og-text-book {
    font-weight: 300;
}

.og-text-regular {
    font-weight: 400;
}

.og-text-medium {
    font-weight: 500;
}

.og-link {
    text-decoration: underline;
    color: black;
    cursor: pointer;
}



/* Version Display */
.version-display {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.3);
    text-align: center;
    margin-top: 20px;
    letter-spacing: 0.5px;
}

/* Version Label in Nav Menu */
.nav-version {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'stolzl', sans-serif;
    font-size: 12px;
    color: #999;
    opacity: 0.5;
    pointer-events: none;
}

/* Volume Notification Dot */
.vol-notify-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--accent-red);
    border-radius: 50%;
    margin-bottom: 2px;
    top: -10px;
    position: relative;
    left: -2px;
}

/* Visualizer Active Body Class */
body.visualizer-active-body,
body.visualizer-active-body .frame-mobile,
body.visualizer-active-body .app-content {
    background-color: #000000 !important;
    color: #ffffff;
}

body.visualizer-active-body .player-bottom {
    background-color: #000000 !important;
}

/* =====================
   PIT PLAYER MODE OVERRIDES
   ===================== */
.pit-player-mode,
.pit-player-mode .frame-mobile,
.pit-player-mode .app-content,
.pit-player-mode .player-bottom {
    background-color: #000000 !important;
    color: #ffffff;
}

.pit-player-mode .pit-title-text {
    font-size: 80px;
    margin: 0;
    letter-spacing: -8px;
}

/* =====================
   ABOUT PIT PAGE
   ===================== */
.page-about-pit {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Stolzl', sans-serif;
}

.pit-about-content {
    display: flex;
    flex-direction: column;
    padding: 33px;
    padding-top: 20px;
    gap: 30px;
    background-color: #000000 !important;
    min-height: 100vh;
}

.pit-about-text p {
    font-size: 15px;
    line-height: normal;
    letter-spacing: -1.05px;
    margin: 0;
}

.pit-create-btn,
.pit-create-btn:visited,
.pit-create-btn:hover,
.pit-create-btn:active {
    background-color: #FF0000;
    color: #ffffff !important;
    font-family: 'Stolzl', sans-serif;
    font-size: 15px;
    text-decoration: none;
    padding: 2px 5px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -1.05px;
}

.pit-create-promo {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* White overrides for Pit Create Promo (Black Background) */
.pit-create-promo .pit-promo-bracket-top-left {
    border-top-color: #ffffff;
    border-left-color: #ffffff;
}

.pit-create-promo .pit-promo-bracket-bottom-right {
    border-bottom-color: #ffffff;
    border-right-color: #ffffff;
}

.pit-create-promo .promo-text,
.pit-create-promo .promo-link,
.pit-create-promo .promo-link:visited,
.pit-create-promo .promo-link:hover,
.pit-create-promo .promo-link:active {
    color: #ffffff !important;
}

.pit-create-promo .promo-highlight {
    background: #ffffff;
    color: #000000 !important;
}

/* Blankmind Picks Section */
.pit-picks-section {
    width: 100%;
    padding: 24px 12px 8px;
    box-sizing: border-box;
}

.pit-picks-label {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 12px 0;
}

.pit-picks-card {
    border-left: 3px solid #cc0000;
    padding: 14px 16px;
    background: #0d0d0d;
    box-sizing: border-box;
}

.pit-picks-episode-link {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pit-picks-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.pit-picks-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF0000;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.pit-picks-play-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Curator link styles */
.pit-episode-curator-link {
    text-decoration: none;
    color: #e6e6e6;
}

.pit-episode-curator-link:hover {
    text-decoration: underline;
    color: #e6e6e6;
}

/* Curator filter header */
.pit-curator-filter-header {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #888;
    margin: 0 0 16px 0;
    padding: 0 12px;
}

.pit-curator-filter-header a {
    color: #cc0000;
    text-decoration: none;
    margin-left: 8px;
}

.pit-curator-filter-header a:hover {
    text-decoration: underline;
}

/* Curator link in player — reset anchor styles, underline on hover to signal clickability */
a#track-curator {
    color: inherit;
    text-decoration: none;
}

a#track-curator[href]:not([href="#"]):hover {
    text-decoration: underline;
    cursor: pointer;
}

/* Curator page title override — targeted to avoid affecting .pit-title-text elsewhere */
#curator-name-title {
    letter-spacing: -4px;
}

/* Curator page label ("curator" subtitle under name) */
.curator-page-label {
    font-family: 'stolzl', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #888;
    margin: 4px 0 0 0;
    letter-spacing: -1px;
}