:root {
    /* Global colors */
    --bg: #fbfbfb;
    --ink: #111111;
    --muted: #666666;
    --card-border: #202020;
    --gray: #DADADA;
    --yellow: #FFEC00;
    --pink: #EBB3F9;
    --blue: #00C3FF;
    --green: #82EB92;
    --white: #FFFFFF;
    --surface: #F6E8FB;
    --surface-soft: #FAF0FC;
    --orange: #FFA03D;
    --danger: #FF6B6B;
    --next-soft: #E7E7E7;
    --pink-soft: rgb(235 179 249 / 20%);
    --low-soft: #E6FBE9;
    --medium-soft: #FFE9D1;
    --high-soft: #FFE1E1;

    /* Font families */
    --font-family-base: "Inter Display", "Inter", Arial, sans-serif;
    --font-family-display: "Inter Display", "Inter", Arial, sans-serif;

    /* Page shell: outer page padding */
    --page-padding-top: 18px;
    --page-padding-x: 24px;
    --page-padding-bottom: 56px;

    /* Stage tabs: the top purple/black clickable stage buttons */
    --stage-tabs-gap: 8px;
    --stage-tabs-margin-bottom: 42px;
    --stage-tab-width: auto;
    --stage-tab-min-height: 62px;
    --stage-tab-padding-y: 18px;
    --stage-tab-padding-x: 22px;
    --stage-tab-font-size: 14px;
    --stage-tab-font-weight: 700;

    /* Stage section heading: stage name row like "LUXOR STAGE" */
    --stage-heading-font-size: 36px;
    --stage-heading-margin-top: 30px;
    --stage-heading-margin-bottom: 28px;
    --stage-heading-font-weight: 900;
    --place-section-gap: 24px;
    --place-section-padding-bottom: 22px;
    --place-toggle-font-size: 13px;
    --place-toggle-font-weight: 800;

    /* Cards row: program cards container */
    --cards-gap: 14px;
    --cards-padding-top: 18px;
    --cards-expanded-gap: 18px;
    --cards-collapsed-width: calc((100% - 28px) / 3);
    --cards-mobile-width: minmax(310px, 86vw);

    /* Program card: one program block/card */
    --program-card-width: auto;
    /* --program-card-height: 138px; */

    /* Program card text sizes */
    --card-body-padding-top: 0px;
    --card-body-padding-right: 0px;
    --card-body-padding-bottom: 0px;
    --card-body-padding-left: 0px;
    --program-title-font-size: 16px;
    --program-title-font-weight: 800;
    --program-title-padding-top: 0;
    --program-title-padding-right: 0;
    --program-title-padding-bottom: 0;
    --program-title-padding-left: 0;
    --program-title-line-clamp: 4;
    --program-subtitle-font-size: 11px;
    --program-subtitle-font-weight: 400;
    --program-subtitle-padding-top: 0;
    --program-subtitle-padding-right: 0;
    --program-subtitle-padding-bottom: 0;
    --program-subtitle-padding-left: 0;
    --program-subtitle-line-clamp: 4;
    --program-time-font-size: 14px;
    --program-time-font-weight: 400;
    --program-time-padding-left: 16px;
    --program-time-padding-top: 5px;
    --program-time-padding-right: 16px;
    --program-time-padding-bottom: 11px;
    --progress-line-height: 4px;

    /* Badge text */
    --badge-width: auto;
    --badge-height: 26px;
    --badge-padding-x: 8px;
    --badge-font-size: 10px;
    --badge-font-weight: 400;
}

@font-face {
    font-family: "Inter";
    src: url("Inter.ttc") format("truetype-collection");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Display";
    src: url("Inter.ttc") format("truetype-collection");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
}

html::-webkit-scrollbar,
.drag-scroll::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    min-width: 375px;
    font-family: var(--font-family-base);
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-user-drag: none;
}

.page-shell {
    padding: var(--page-padding-top) var(--page-padding-x) var(--page-padding-bottom);
}

.stage-tabs {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    gap: var(--stage-tabs-gap);
    overflow-x: auto;
    padding: var(--page-padding-top) 0 18px;
    margin: calc(var(--page-padding-top) * -1) 0 var(--stage-tabs-margin-bottom);
    background: var(--bg);
    border-bottom: 1px solid transparent;
    transition: border-color 0.18s ease;
    touch-action: pan-x pan-y;
    -ms-overflow-style: none;
    scrollbar-width: none;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

body.is-scrolled .stage-tabs {
    border-bottom-color: rgba(0, 0, 0, 0.14);
}

.time-debug {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: auto;
    height: auto;
    margin: 0 0 22px;
    padding: 0;
    border: 1px solid #111;
    background: var(--white);
}

.time-debug.is-active {
    background: var(--white);
    border-color: #000;
}

.time-debug__label {
    display: flex;
    align-items: center;
    align-self: stretch;
    padding: 0 18px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.time-debug__controls {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    width: 232px;
    height: 46px;
    border-right: 1px solid #111;
    background: #111;
    box-sizing: content-box;
}

.time-debug button {
    width: 58px;
    min-width: 58px;
    height: 46px;
    min-height: 46px;
    box-sizing: border-box;
    border: 0;
    padding: 0;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: none;
    user-select: none;
    transition: background-color 0.12s ease, color 0.12s ease, transform 0.08s ease;
}

.time-debug button:first-child {
    border-left: 0;
}

.time-debug__arrow {
    position: relative;
    background: var(--blue) !important;
    color: transparent !important;
    font-size: 0 !important;
    font-weight: 900;
    line-height: 1;
}

.time-debug__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    border: solid #111;
    border-width: 0 5px 5px 0;
}

.time-debug__arrow[data-time-direction="-1"]::before {
    transform: translate(-35%, -50%) rotate(135deg);
}

.time-debug__arrow[data-time-direction="1"]::before {
    transform: translate(-65%, -50%) rotate(-45deg);
}

.time-debug__arrow:hover,
.time-debug__arrow:focus-visible {
    background: var(--blue) !important;
}

.time-debug__reset,
.time-debug__date-jump {
    background: #111 !important;
    color: #fff !important;
}

.time-debug__reset:hover,
.time-debug__reset:focus-visible,
.time-debug__date-jump:hover,
.time-debug__date-jump:focus-visible {
    background: #111 !important;
}

.time-debug button:active {
    transform: none;
}

.stage-tab {
    display: inline-flex;
    align-items: flex-end;
    flex: 0 0 var(--stage-tab-width);
    min-height: var(--stage-tab-min-height);
    border: 0;
    padding: var(--stage-tab-padding-y) var(--stage-tab-padding-x);
    background: var(--pink);
    color: #171717;
    text-decoration: none;
    text-transform: uppercase;
    font-size: var(--stage-tab-font-size);
    font-family: var(--font-family-display);
    font-weight: var(--stage-tab-font-weight);
    font-style: normal;
    line-height: 1;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: left;
    vertical-align: bottom;
    white-space: nowrap;
    transition: background-color 0.18s ease, color 0.18s ease;
    -webkit-user-drag: none;
}

.stage-tab.active {
    background: #000;
    color: #fff;
    font-weight: var(--stage-tab-font-weight);
}

.drag-scroll.dragging {
    cursor: grabbing;
}

.place-section {
    margin-bottom: var(--place-section-gap);
    padding: 0 0 var(--place-section-padding-bottom);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    scroll-margin-top: 20px;
}

.place-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: var(--stage-heading-margin-top);
    margin-bottom: var(--stage-heading-margin-bottom);
}

.place-section h2 {
    margin: 0;
    text-transform: uppercase;
    font-family: var(--font-family-display);
    font-size: var(--stage-heading-font-size);
    font-weight: var(--stage-heading-font-weight);
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: left;
    user-select: none;
}

.place-toggle {
    color: var(--ink);
    text-transform: uppercase;
    font-family: var(--font-family-display);
    font-size: var(--place-toggle-font-size);
    font-weight: var(--place-toggle-font-weight);
    font-style: normal;
    white-space: nowrap;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.cards-row {
    display: flex;
    align-items: stretch;
    gap: var(--cards-gap);
    overflow-x: auto;
    overflow-y: visible;
    padding: var(--cards-padding-top) 0 6px;
    touch-action: pan-x pan-y;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.cards-row.expanded {
    display: flex;
    flex-wrap: wrap;
    gap: var(--cards-expanded-gap);
    overflow-x: visible;
    overflow-y: visible;
    padding-top: var(--cards-padding-top);
}

.cards-row.expanded .program-card {
    width: var(--program-card-width);
}

.program-card {
    position: relative;
    flex: 0 0 var(--program-card-width);
    width: var(--program-card-width);
    /* Reference only: min-height: var(--program-card-height); */
    height: auto;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--card-border);
    background: var(--white);
    overflow: visible;
}

.program-card.is-entering {
    opacity: 0;
    transform: translateY(8px);
    animation: card-enter 240ms ease-out forwards;
    animation-delay: var(--enter-delay, 0ms);
}

.program-card.live {
    box-shadow: none;
}

.card-body {
    flex: 0 0 auto;
    padding: var(--card-body-padding-top) var(--card-body-padding-right) var(--card-body-padding-bottom) var(--card-body-padding-left);
}

.card-title {
    margin: 0 0 0px;
    padding: var(--program-title-padding-top) var(--program-title-padding-right) var(--program-title-padding-bottom) var(--program-title-padding-left);
    text-transform: uppercase;
    font-size: var(--program-title-font-size);
    font-family: var(--font-family-display);
    font-weight: var(--program-title-font-weight);
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: left;
    user-select: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--program-title-line-clamp);
}

.card-subtitle {
    margin: 0;
    padding: var(--program-subtitle-padding-top) var(--program-subtitle-padding-right) var(--program-subtitle-padding-bottom) var(--program-subtitle-padding-left);
    font-size: var(--program-subtitle-font-size);
    font-family: var(--font-family-display);
    font-weight: var(--program-subtitle-font-weight);
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #202020;
    user-select: none;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--program-subtitle-line-clamp);
}

.card-time {
    position: relative;
    margin-top: auto;
    background: transparent;
    padding: var(--program-time-padding-top) var(--program-time-padding-right) var(--program-time-padding-bottom) var(--program-time-padding-left);
    font-size: var(--program-time-font-size);
    font-family: var(--font-family-display);
    font-weight: var(--program-time-font-weight);
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #4d3e56;
    user-select: none;
}

.card-time::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--time-fill, 0%);
    height: var(--progress-line-height);
    background: var(--pink);
    pointer-events: none;
}

.occupancy-badge {
    position: absolute;
    top: calc(var(--badge-height) / -2);
    right: 10px;
    width: var(--badge-width);
    height: var(--badge-height);
    padding: 0 var(--badge-padding-x);
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    justify-content: center;
    font-family: var(--font-family-display);
    font-size: var(--badge-font-size);
    font-weight: var(--badge-font-weight);
    font-style: normal;
    white-space: nowrap;
    text-transform: uppercase;
    background-color: #ffffff;
    color: #303030;
    letter-spacing: 0.02em;
    line-height: 1;
    z-index: 2;
    user-select: none;
}

.occupancy-badge.low {
    background: linear-gradient(90deg, var(--green) 0%, var(--green) 25%, var(--low-soft) 25%, var(--low-soft) 100%);
    border-color: #91e8a0;
    color: #1f1f1f;
}

.occupancy-badge.medium {
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 75%, var(--medium-soft) 75%, var(--medium-soft) 100%);
    border-color: #f3a157;
    color: #1f1f1f;
}

.occupancy-badge.high {
    background: linear-gradient(90deg, var(--danger) 0%, var(--danger) 100%, var(--high-soft) 100%, var(--high-soft) 100%);
    border-color: #ef8d98;
    color: #1f1f1f;
}

.occupancy-badge.next {
    background: #00C3FF;
    border-color: #00C3FF;
    color: #1f1f1f;
}

.empty-state {
    border: 1px dashed #888;
    padding: 28px 18px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.65);
}

.logo-board {
    position: relative;
    min-height: max(clamp(300px, 28vw, 560px), var(--footer-scroll-height, 0px));
    margin: 0 calc(var(--page-padding-x) * -1) calc(var(--page-padding-bottom) * -1);
    background-image: url("footer/paticka.png");
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

body.is-loading .logo-board {
    display: none;
}

.logo-board__bar {
    position: absolute;
    right: 40px;
    bottom: 16px;
    left: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.logo-board__logo {
    display: block;
    width: 359px;
    max-width: min(359px, 44vw);
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
}

.logo-board__links {
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
}

.logo-board__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: transparent;
    color: var(--ink);
    transition: background-color 0.16s ease;
}

.logo-board__link:hover,
.logo-board__link:focus-visible {
    background: var(--blue);
}

.logo-board__link:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
}

.logo-board__link img {
    display: block;
    max-width: 24px;
    max-height: 24px;
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes card-enter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breakpoint: desktop XL, screens wider than 1920 px */
@media (min-width: 1921px) {
    :root {
        /* Font families */
        --font-family-base: "Inter Display", "Inter", Arial, sans-serif;
        --font-family-display: "Inter Display", "Inter", Arial, sans-serif;

        /* Stage tabs: top clickable stage buttons */
        --stage-tabs-gap: 10px;
        
        --stage-tab-min-height: 70px;
        --stage-tab-padding-y: 16px;
        --stage-tab-padding-x: 16px;
        --stage-tab-font-size: 28px;
        --stage-tab-font-weight: 700;

        /* Stage heading and toggle */
        --stage-heading-font-size: 40px;
        --stage-heading-margin-top: 16px;
        --stage-heading-margin-bottom: 16px;
        --place-toggle-font-size: 20px;
        --stage-heading-font-weight: 900;
        --place-toggle-font-weight: 700;

        /* Cards row layout */
        --cards-gap: 20px;
        --cards-expanded-gap: 20px;
        --cards-collapsed-width: 624px;

        /* Program card size and inner spacing */
        --program-card-width: 624px;
        /* --program-card-height: 144px; */
        --program-card-padding: 0px;
        /* Program card text */
        --card-body-padding-top: 24px;
        --card-body-padding-right: 16px;
        --card-body-padding-bottom: 5px;
        --card-body-padding-left: 16px;
        --program-title-font-size: 18px;
        --program-subtitle-font-size: 12px;
        --program-time-font-size: 14px;
        --program-title-font-weight: 800;
        --program-subtitle-font-weight: 400;
        --program-time-font-weight: 400;
        --program-title-padding-top: 0;
        --program-title-padding-right: 0;
        --program-title-padding-bottom: 0;
        --program-title-padding-left: 0;
        --program-subtitle-padding-top: 0;
        --program-subtitle-padding-right: 0;
        --program-subtitle-padding-bottom: 0;
        --program-subtitle-padding-left: 0;
        --program-time-padding-left: 16px;
        --program-time-padding-top: 5px;
        --program-time-padding-right: 16px;
        --program-time-padding-bottom: 11px;
        --progress-line-height: 4px;

        /* Badge / status label */
        --badge-width: 200px;
        --badge-height: 34px;
        --badge-padding-x: 10px;
        --badge-font-size: 16px;
        --badge-font-weight: 400;
    }

    .cards-row.expanded {
        justify-content: flex-start;
    }
}

/* Breakpoint: desktop, screens up to 1920 px */
@media (max-width: 1920px) {
    :root {
        /* Font families */
        --font-family-base: "Inter Display", "Inter", Arial, sans-serif;
        --font-family-display: "Inter Display", "Inter", Arial, sans-serif;

        /* Stage tabs: top clickable stage buttons */
        --stage-tab-width: auto;
        --stage-tab-min-height: 59px;
        --stage-tab-padding-y: 16px;
        --stage-tab-padding-x: 16px;
        --stage-tab-font-size: 20px;
        --stage-tab-font-weight: 700;

        /* Stage heading and toggle */
        --stage-heading-font-size: 34px;
        --stage-heading-margin-top: 16px;
        --place-toggle-font-size: 16px;
        --stage-heading-font-weight: 900;
        --place-toggle-font-weight: 700;

        /* Cards row layout */
        --cards-gap: 20px;
        --cards-expanded-gap: 20px;
        --cards-collapsed-width: calc((100% - (2 * var(--cards-gap))) / 3);

        /* Program card size and inner spacing */
        --program-card-width: 608px;
        /* --program-card-height: 144px; */

        /* Program card text */
        --card-body-padding-top: 24px;
        --card-body-padding-right: 16px;
        --card-body-padding-bottom: 5px;
        --card-body-padding-left: 16px;
        --program-title-font-size: 18px;
        --program-subtitle-font-size: 12px;
        --program-time-font-size: 14px;
        --program-title-font-weight: 800;
        --program-subtitle-font-weight: 400;
        --program-time-font-weight: 400;
        --program-title-padding-top: 0;
        --program-title-padding-right: 0;
        --program-title-padding-bottom: 0;
        --program-title-padding-left: 0;
        --program-subtitle-padding-top: 0;
        --program-subtitle-padding-right: 0;
        --program-subtitle-padding-bottom: 0;
        --program-subtitle-padding-left: 0;
        --program-time-padding-left: 16px;
        --program-time-padding-top: 5px;
        --program-time-padding-right: 16px;
        --program-time-padding-bottom: 11px;
        --progress-line-height: 4px;

        /* Badge / status label */
        --badge-width: 180px;
        --badge-height: 31px;
        --badge-padding-x: 8px;
        --badge-font-size: 14px;
        --badge-font-weight: 400;
    }
}

/* Breakpoint: small desktop / tablet, screens up to 1440 px */
@media (max-width: 1441px) {
    :root {
        /* Font families */
        --font-family-base: "Inter Display", "Inter", Arial, sans-serif;
        --font-family-display: "Inter Display", "Inter", Arial, sans-serif;

        /* Page shell */
        --page-padding-top: 16px;
        --page-padding-x: 18px;
        --page-padding-bottom: 34px;

        /* Stage tabs: top clickable stage buttons */
        --stage-tab-width: auto;
        --stage-tab-height: 56px;
        --stage-tab-padding-y: 16px;
        --stage-tab-padding-x: 16px;
        --stage-tab-font-size: 18px;
        --stage-tab-font-weight: 700;

        /* Stage heading and toggle */
        --stage-heading-font-size: 28px;
        --stage-heading-margin-top: 24px;
        --stage-heading-margin-bottom: 16px;
        --place-toggle-font-size: 14px;
        --stage-heading-font-weight: 900;
        --place-toggle-font-weight: 700;

        /* Cards row layout */
        --cards-gap: 12px;
        --cards-expanded-gap: 20px;
        --cards-collapsed-width: calc((100% - (2 * var(--cards-gap))) / 3);

        /* Program card size */
        --program-card-width: 453px;
        /* --program-card-height: 144px; */

        /* Program card text */
        --card-body-padding-top: 20px;
        --card-body-padding-right: 16px;
        --card-body-padding-bottom: 5px;
        --card-body-padding-left: 16px;
        --program-title-font-size: 18px;
        --program-subtitle-font-size: 12px;
        --program-time-font-size: 14px;
        --program-title-font-weight: 800;
        --program-subtitle-font-weight: 400;
        --program-time-font-weight: 400;
        --program-title-padding-top: 0;
        --program-title-padding-right: 0;
        --program-title-padding-bottom: 0;
        --program-title-padding-left: 0;
        --program-subtitle-padding-top: 0;
        --program-subtitle-padding-right: 0;
        --program-subtitle-padding-bottom: 0;
        --program-subtitle-padding-left: 0;
        --program-time-padding-left: 16px;
        --program-time-padding-top: 5px;
        --program-time-padding-right: 16px;
        --program-time-padding-bottom: 11px;
        --progress-line-height: 4px;

        /* Badge / status label */
        --badge-width: 160px;
        --badge-height: 28px;
        --badge-padding-x: 7px;
        --badge-font-size: 12px;
        --badge-font-weight: 400;
    }
}


/* Breakpoint: mobile, screens up to 750 px */
@media (max-width: 750px) {
    :root {
        /* Font families */
        --font-family-base: "Inter Display", "Inter", Arial, sans-serif;
        --font-family-display: "Inter Display", "Inter", Arial, sans-serif;

        /* Page shell */
        --page-padding-top: 18px;
        --page-padding-x: 16px;
        --page-padding-bottom: 30px;

        /* Stage tabs: top clickable stage buttons */
        --stage-tabs-margin-bottom: 0px;
        --stage-tab-width: 160px;
        --stage-tab-min-height: 80px;
        --stage-tab-padding-y: 16px;
        --stage-tab-padding-x: 16px;
        --stage-tab-font-size: 12px;
        --stage-tab-font-weight: 700;

        /* Stage heading and toggle */
        --stage-heading-font-size: 20px;
        --stage-heading-margin-top: 30px;
        --stage-heading-margin-bottom: 20px;
        --place-toggle-font-size: 12px;
        --stage-heading-font-weight: 900;
        --place-toggle-font-weight: 800;

        /* Cards row layout and size */
        --cards-gap: 12px;
        --cards-expanded-gap: 20px;
        --program-card-width: 308px;
        /* --program-card-height: 101px; */

        /* Program card text */
        --card-body-padding-top: 18px;
        --card-body-padding-right: 16px;
        --card-body-padding-bottom: 5px;
        --card-body-padding-left: 16px;
        --program-title-font-size: 15px;
        --program-subtitle-font-size: 11px;
        --program-time-font-size: 14px;
        --program-title-font-weight: 800;
        --program-subtitle-font-weight: 400;
        --program-time-font-weight: 400;
        --program-title-padding-top: 0;
        --program-title-padding-right: 0;
        --program-title-padding-bottom: 0;
        --program-title-padding-left: 0;
        --program-subtitle-padding-top: 0;
        --program-subtitle-padding-right: 0;
        --program-subtitle-padding-bottom: 0;
        --program-subtitle-padding-left: 0;
        --program-time-padding-left: 16px;
        --program-time-padding-top: 5px;
        --program-time-padding-right: 16px;
        --program-time-padding-bottom: 9px;
        --progress-line-height: 3px;

        /* Badge / status label */
        --badge-width: 130px;
        --badge-height: 26px;
        --badge-padding-x: 6px;
        --badge-font-size: 10px;
        --badge-font-weight: 400;
    }

    .stage-tab {
        align-items: center;
        justify-content: center;
        max-width: 160px;
        text-align: left;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .place-toggle {
        display: none;
    }

    .time-debug {
        position: static;
        align-items: center;
        flex-direction: row;
        width: auto;
        height: auto;
        margin: 8px 0 18px;
        padding: 0;
    }

    .time-debug__label {
        padding: 0 12px;
        font-size: 14px;
    }

    .time-debug__controls {
        align-self: flex-start;
        justify-content: flex-start;
    }

    .time-debug button {
        min-height: 46px;
    }

    .time-debug__arrow {
        width: 58px;
    }

    .logo-board__bar {
        right: 16px;
        bottom: 16px;
        left: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .logo-board__logo {
        max-width: min(320px, 88vw);
    }

    .logo-board__links {
        align-self: stretch;
        justify-content: space-between;
        gap: 8px;
    }
}
