/* -------------------------------------------------- */
/* LOKALE SCHRIFTARTEN (Roboto)                       */
/* -------------------------------------------------- */

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v49-latin-regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v49-latin-700.woff2') format('woff2');
    font-display: swap;
}

/* Grundlegende Seiten-Einstellungen */
:root {
    /* Frontend-Settings (von settings.js gesetzt, hier nur Defaults) */
    --ez-primary: #ff0000;
    --ez-primary-hover: #cc0000;
    --ez-bg: #111111;
    --ez-text: #ffffff;
    --ez-accent: #e62117;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: var(--ez-bg);
    color: var(--ez-text);
    overflow: hidden;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* -------------------------------------------------- */
/* EBENE 1: AMBILIGHT (Multi-Thumbnail Crossfade)     */
/* -------------------------------------------------- */

:root {
    /* Zentrale Stellschrauben - hier kannst du den Look feintunen */
    --ambilight-opacity: 0.55;       /* 0..1 - Wie kräftig der Effekt durchkommt */
    --ambilight-saturation: 135%;    /* Farbsättigung */
    --ambilight-blur: 80px;          /* Stärke des Weichzeichners */
    --ambilight-fade-duration: 2.5s; /* Crossfade-Dauer zwischen Slots */
    --ambilight-scale: 1.3;          /* Vergrößerung, damit Blur die Ränder nicht weiß zeigt */
}

#ambilight-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;

    /* Default-Hintergrund, bis das erste Video geladen ist */
    background: radial-gradient(circle at 30% 30%, #2a1a3a 0%, #111 70%);
}

.ambilight-slot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Bild-Setup */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* Look: Blur, Sättigung, leichte Vergrößerung gegen Rand-Artefakte */
    filter: blur(var(--ambilight-blur)) saturate(var(--ambilight-saturation));
    transform: scale(var(--ambilight-scale));

    /* Start unsichtbar - .active blendet ein */
    opacity: 0;
    transition: opacity var(--ambilight-fade-duration) ease-in-out;

    /* Will-change für GPU-Beschleunigung der opacity-Transitions */
    will-change: opacity;
}

.ambilight-slot.active {
    opacity: var(--ambilight-opacity);
}

/* Sanfter dunkler Vignette-Overlay damit die Ränder/das Video besser abgesetzt sind */
#ambilight-layer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
}

/* -------------------------------------------------- */
/* EBENE 2: HAUPT-VIDEO (Vordergrund)                 */
/* -------------------------------------------------- */
#tv-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Player-Größe als Prozentwert vom Viewport.
       --iframe-size wird in JS gesetzt (Default 90%).
       Bei iframe_inset_percent=5 -> 100% - 2*5% = 90%. */
    width: var(--iframe-size, 90%);
    height: var(--iframe-size, 90%);
    z-index: 10;

    /* Border-radius via CSS-Var (Default 20px, war 10px) */
    border-radius: var(--iframe-corner-radius, 20px);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);

    pointer-events: none; /* Keine Steuerung möglich */
}

#player-main {
    width: 100%;
    height: 100%;
    border: 0;
}

/* -------------------------------------------------- */
/* UI ELEMENTE (Startscreen, Logo, Text)              */
/* -------------------------------------------------- */
#start-screen {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 100;
    display: flex; justify-content: center; align-items: center; flex-direction: column; color: white;
    transition: opacity 0.5s ease;
}

.start-logo {
    width: 250px;
    max-width: 80%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.intro-text {
    max-width: 600px;
    padding: 0 20px;
    margin-bottom: 40px;
    text-align: center;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #dddddd;
    margin-bottom: 15px;
}

.intro-text .legal-notice {
    font-size: 12px;
    color: #777777;
    margin-top: 10px;
}

button {
    padding: 15px 40px; font-size: 18px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; background: var(--ez-primary); color: white; border: none; border-radius: 50px;
    transition: transform 0.2s, background 0.2s;
}
button:hover { transform: scale(1.05); background: var(--ez-primary-hover); }

/* =====================================================
 * LOGO POSITIONIERUNG (v3.19, v3.25 erweitert)
 * Klassen .pos-top-left .pos-top-right .pos-bottom-left .pos-bottom-right
 * werden vom JS auf #logo gesetzt.
 * Positionen sind ge-insetet vom Player-Rand (--iframe-inset).
 * ===================================================== */
#logo {
    position: absolute;
    z-index: 50;
    width: 100px;
    /* Deckkraft via Setting - JS setzt --logo-opacity */
    opacity: var(--logo-opacity, 1);
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
    /* Default: top-right - Inset addiert sich zum Abstand */
    top: calc(30px + var(--iframe-inset, 0%));
    right: calc(40px + var(--iframe-inset, 0%));
    transition: opacity 0.4s ease;
}
#logo.pos-top-left     { top: calc(30px + var(--iframe-inset, 0%)); left: calc(40px + var(--iframe-inset, 0%)); right: auto; bottom: auto; }
#logo.pos-top-right    { top: calc(30px + var(--iframe-inset, 0%)); right: calc(40px + var(--iframe-inset, 0%)); left: auto; bottom: auto; }
#logo.pos-bottom-left  { bottom: calc(30px + var(--iframe-inset, 0%)); left: calc(40px + var(--iframe-inset, 0%)); right: auto; top: auto; }
#logo.pos-bottom-right { bottom: calc(30px + var(--iframe-inset, 0%)); right: calc(40px + var(--iframe-inset, 0%)); left: auto; top: auto; }

/* Wenn Titel und Logo in derselben Ecke landen: Logo nach oben verschieben */
#logo.collision-bottom { bottom: calc(130px + var(--iframe-inset, 0%)); }
#logo.collision-top    { top: calc(130px + var(--iframe-inset, 0%)); }

/* =====================================================
 * PROGRAM-INFO (Now playing + Songtitel) POSITIONIERUNG
 * Klassen .h-left .h-center .h-right und .v-top .v-bottom
 * Positionen ge-insetet vom Player-Rand (--iframe-inset)
 * ===================================================== */
#program-info {
    position: absolute;
    z-index: 50;
    color: rgba(255,255,255,0.9);
    font-size: 24px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    display: none;
    max-width: 80%;
    /* Default: bottom-left - gleiche Pixel-Abstände wie das Logo (40px) */
    bottom: calc(40px + var(--iframe-inset, 0%));
    left: calc(40px + var(--iframe-inset, 0%));
    text-align: left;
}
/* Horizontal - 40px wie Logo */
#program-info.h-left   { left: calc(40px + var(--iframe-inset, 0%)); right: auto; text-align: left; transform: none; }
#program-info.h-right  { right: calc(40px + var(--iframe-inset, 0%)); left: auto; text-align: right; transform: none; }
#program-info.h-center { left: 50%; right: auto; text-align: center; transform: translateX(-50%); }
/* Vertikal - 40px wie Logo */
#program-info.v-top    { top: calc(40px + var(--iframe-inset, 0%)); bottom: auto; }
#program-info.v-bottom { bottom: calc(40px + var(--iframe-inset, 0%)); top: auto; }

/* "Now playing"-Label: klein und gedämpft + Fade-Effekt */
#program-info > #label-now {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    margin-bottom: 5px;
    /* Fade-Transition (Dauer wird per JS auf CSS-Variable gesetzt) */
    transition: opacity var(--label-fade-duration, 1s) ease-out;
    opacity: 1;
}
#program-info > #label-now.faded {
    opacity: 0;
    pointer-events: none;
}
/* Songtitel: mindestens 24px, auch die Glow-Layer-Spans */
#program-info > #video-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 300;
}
#program-info > #video-title .glow-base,
#program-info > #video-title .glow-active {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    text-transform: none;
    margin-bottom: 0;
}
#program-info > #video-title .glow-base {
    color: rgba(255,255,255,0.9);
}

/* -------------------------------------------------- */
/* FOOTER LINKS                                       */
/* -------------------------------------------------- */
#footer-links {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    z-index: 200;
    pointer-events: auto;
}

#footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

#footer-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255,255,255,1);
}

.separator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* -------------------------------------------------- */
/* ERROR / COOLDOWN OVERLAY                           */
/* -------------------------------------------------- */
#error-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 80;
    background: rgba(0, 0, 0, 0.85);
}

.error-content {
    text-align: center;
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
    border: 1px solid var(--ez-accent);
    padding: 30px 50px;
    background: #111;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(230, 33, 23, 0.3);
}

.blink {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0.3; }
}

/* -------------------------------------------------- */
/* HEADLINE (H1) OBEN                                 */
/* -------------------------------------------------- */
#tv-headline {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    z-index: 200;
    pointer-events: auto;
    cursor: help;
    transition: all 0.3s ease;
}

#tv-headline:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255,255,255,0.6);
    transform: scale(1.05);
}

/* Anpassung für sehr kleine Handys */
@media (max-width: 600px) {
    #tv-headline {
        font-size: 12px;
        top: 15px;
        letter-spacing: 1px;
        width: 70%;
        left: 15%;
    }

    #logo {
        width: 60px;
    }
    /* Logo-Positionen kleiner Abstand auf Mobile */
    #logo.pos-top-left     { top: 15px; left: 15px; }
    #logo.pos-top-right    { top: 15px; right: 15px; }
    #logo.pos-bottom-left  { bottom: 15px; left: 15px; }
    #logo.pos-bottom-right { bottom: 15px; right: 15px; }

    #program-info > #video-title {
        font-size: 20px;
    }
    #program-info > #label-now {
        font-size: 12px;
    }
}

/* -------------------------------------------------- */
/* BUMPER VIDEO LAYER                                 */
/* -------------------------------------------------- */
#bumper-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    z-index: 20;
    background: #000;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    display: none;
}
#bumper-video.visible {
    display: block;
}

#tv-container.behind-bumper {
    z-index: 5;
}

/* -------------------------------------------------- */
/* PAUSE OVERLAY (Bot-Detection-Fallback)             */
/* -------------------------------------------------- */
#pause-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
}
#pause-overlay .pause-content {
    text-align: center;
    color: #ddd;
    padding: 40px;
}
#pause-overlay h2 {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 20px 0 10px;
}
#pause-overlay p {
    font-size: 16px;
}
#pause-overlay #pause-timer {
    color: #ff5555;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* =====================================================
 * NOW-PLAYING GLOW PROGRESS (v3.17 - Buchstaben-Glow)
 * ---------------------------------------------------------
 * Zwei übereinander gelegte Text-Layer:
 *   - glow-base:   normaler weißer Text (immer sichtbar)
 *   - glow-active: identischer Text mit Gradient-Farbe und
 *                  mehrlagigem text-shadow als Leucht-Aura.
 *                  Die Aura folgt der Buchstabenform - KEIN
 *                  drop-shadow auf Rechteck mehr.
 * Der weiche Fortschritts-Übergang per CSS-mask auf .glow-active.
 * ===================================================== */

.glow-progress {
    position: relative;
    display: inline-block;
    /* Defaults - werden von glow.js überschrieben */
    --glow-progress: 0%;
    --glow-softness: 8%;
    --glow-color-start: #7500E7;
    --glow-color-end: #E30B5C;
}

.glow-progress .glow-base,
.glow-progress .glow-active {
    display: block;
    white-space: nowrap;
}

/* glow-base liegt VORNE (lesbarer weißer Text) */
.glow-progress .glow-base {
    position: relative;
    z-index: 2;
}

.glow-progress .glow-active {
    position: absolute;
    inset: 0;
    z-index: 1; /* HINTEN - hinter dem weißen Text */
    /* Gradient-Farbe via background-clip auf die Buchstaben */
    background: linear-gradient(90deg, var(--glow-color-start), var(--glow-color-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Mehrlagiger text-shadow simuliert einen Glow um die Buchstaben.
       text-shadow folgt der Buchstabenform - keine Rechteck-Aura. */
    text-shadow:
        0 0 4px var(--glow-color-start),
        0 0 8px var(--glow-color-start),
        0 0 14px var(--glow-color-end),
        0 0 22px var(--glow-color-end);
    /* Fortschritts-Maskierung: nur der bereits gespielte Bereich glüht */
    -webkit-mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 calc(var(--glow-progress) - var(--glow-softness)),
        transparent var(--glow-progress),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 calc(var(--glow-progress) - var(--glow-softness)),
        transparent var(--glow-progress),
        transparent 100%
    );
    pointer-events: none;
}

/* Bumper läuft: Now-Playing-Info komplett ausblenden */
#program-info.hidden-for-bumper {
    display: none !important;
}

/* Im Bumper-Modus: nur Base-Text zeigen, kein Glow */
.glow-progress.no-glow .glow-active {
    display: none;
}

/* =====================================================
 * PROGRESS-STIL: BAR, CIRCLE, COUNTDOWN, NONE (v3.19)
 * Sichtbarkeit wird über <body>-Klasse gesteuert:
 *   .progress-glow      -> nur Glow im Songtitel
 *   .progress-bar       -> Balken unter dem Titel
 *   .progress-circle    -> Kreis Standalone-Element
 *   .progress-countdown -> Countdown im program-info
 *   .progress-none      -> nichts
 * ===================================================== */

/* Standard: alle Progress-Zusatzelemente unsichtbar */
.progress-element {
    display: none;
}

/* === BALKEN === */
body.progress-bar #progress-bar {
    display: block;
    width: 100%;
    /* Keine max-width: Balken nimmt die Breite des #program-info ein,
       welches sich auf die Titel-Breite anpasst (absolutes Element). */
    height: 4px;
    margin-top: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}
body.progress-bar #progress-bar .progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--glow-color-start, #7500E7), var(--glow-color-end, #E30B5C));
    border-radius: 2px;
    transition: width 0.5s linear;
    box-shadow: 0 0 8px var(--glow-color-end, #E30B5C);
}
/* Bei zentrierter Ausrichtung Balken auch zentrieren */
#program-info.h-center #progress-bar {
    margin-left: auto;
    margin-right: auto;
}
#program-info.h-right #progress-bar {
    margin-left: auto;
    margin-right: 0;
}

/* === KREIS === */
body.progress-circle #progress-circle {
    display: block;
    position: absolute;
    /* Größe per CSS-Variable - wird von glow.js gesetzt */
    width: var(--progress-circle-size, 40px);
    height: var(--progress-circle-size, 40px);
    z-index: 50;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
body.progress-circle #progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Start oben statt rechts */
}
body.progress-circle .progress-circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.15);
    stroke-width: 6;
}
body.progress-circle .progress-circle-fill {
    fill: none;
    stroke: url(#circle-gradient);
    stroke-width: 6;
    stroke-linecap: round;
    /* Umfang: 2*pi*r = 2*pi*34 = ~213.6 (in viewBox-Units) */
    stroke-dasharray: 213.6;
    stroke-dashoffset: 213.6; /* Default leer */
    transition: stroke-dashoffset 0.5s linear;
}

/* Kreis-Position: gegenüber des Logos */
body.progress-circle #logo.pos-top-left ~ #progress-circle    { bottom: 30px; right: 40px; top: auto; left: auto; }
body.progress-circle #logo.pos-top-right ~ #progress-circle   { bottom: 30px; left: 40px; top: auto; right: auto; }
body.progress-circle #logo.pos-bottom-left ~ #progress-circle { top: 30px; right: 40px; bottom: auto; left: auto; }
body.progress-circle #logo.pos-bottom-right ~ #progress-circle{ top: 30px; left: 40px; bottom: auto; right: auto; }

/* === COUNTDOWN === */
body.progress-countdown #progress-countdown {
    display: block;
    margin-top: 8px;
    font-size: 32px;
    font-weight: 200;
    font-variant-numeric: tabular-nums;
    color: var(--glow-color-end, #E30B5C);
    text-shadow: 0 0 12px var(--glow-color-start, #7500E7);
    letter-spacing: 1px;
}

/* === NONE === verbirgt alles ===*/
body.progress-none .glow-progress .glow-active {
    display: none;
}
body.progress-bar .glow-progress .glow-active,
body.progress-circle .glow-progress .glow-active,
body.progress-countdown .glow-progress .glow-active {
    display: none;
}

/* =====================================================
 * IDLE-HIDE für Header & Footer (v3.25)
 * Wird per JS gesteuert via Klasse "idle-hidden" auf <body>.
 * Dauer der Animation via --idle-fade-duration (Default 0.5s).
 * ===================================================== */
#tv-headline,
#footer-links {
    transition: opacity var(--idle-fade-duration, 0.5s) ease-out;
    opacity: 1;
}
body.idle-hidden #tv-headline,
body.idle-hidden #footer-links {
    opacity: 0;
    pointer-events: none;
}

/* =====================================================
 * FULLSCREEN-BUTTON (v3.28) - nur Mobile
 * ===================================================== */
#fullscreen-btn {
    display: none; /* Default versteckt - nur auf Mobile per Media-Query an */
    position: absolute;
    bottom: calc(40px + var(--iframe-inset, 0%));
    right: calc(40px + var(--iframe-inset, 0%));
    z-index: 60;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease, background 0.2s ease;
}
#fullscreen-btn:active {
    background: rgba(0,0,0,0.7);
}
#fullscreen-btn svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Im Idle-Hide-Modus auch den Fullscreen-Button mit ausblenden */
body.idle-hidden #fullscreen-btn {
    opacity: 0;
    pointer-events: none;
}

/* Nur auf Touch/Mobile-Geräten anzeigen */
@media (max-width: 900px), (pointer: coarse) {
    #fullscreen-btn {
        display: block;
    }
}

/* Wenn der Player im nativen Fullscreen ist: iframe füllt alles,
   abgerundete Ecken weg, Inset weg */
#tv-container:fullscreen {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
}
#tv-container:-webkit-full-screen {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
}

/* -------------------------------------------------- */
/* SKIP-OVERLAY (Ansatz A: Video für diesen Zuschauer */
/* nicht abspielbar - lokale Hinweiskarte + Countdown) */
/* -------------------------------------------------- */
#skip-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 85;
    background: rgba(0, 0, 0, 0.92);
}

#skip-overlay .skip-content {
    text-align: center;
    color: #ffffff;
    max-width: 520px;
    padding: 30px 40px;
    background: #0e0e0e;
    border: 1px solid var(--ez-accent, #E62117);
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(117, 0, 231, 0.25);
}

#skip-overlay #skip-thumb {
    width: 280px;
    max-width: 70vw;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 5px;
    filter: grayscale(40%) brightness(0.7);
    margin-bottom: 18px;
}

#skip-overlay #skip-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: #fff;
}

#skip-overlay #skip-reason {
    font-size: 16px;
    font-weight: 300;
    color: #ddd;
    margin: 0 0 6px;
    line-height: 1.5;
}

#skip-overlay .skip-sorry {
    font-size: 14px;
    color: #999;
    margin: 0 0 20px;
}

#skip-overlay .skip-next {
    font-size: 15px;
    color: #bbb;
    margin: 0;
}

#skip-overlay #skip-countdown {
    font-weight: 700;
    color: var(--glow-color-start, #b07cff);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 600px) {
    #skip-overlay .skip-content { padding: 22px 20px; }
    #skip-overlay #skip-title { font-size: 17px; }
    #skip-overlay #skip-reason { font-size: 14px; }
}
