*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html,body{
    width:100%;
    height:100%;
    overflow:hidden;
    background:#000;
    font-family:Arial, Helvetica, sans-serif;
    color:#fff;
}

.tv-app{
    width:100%;
    height:100%;
}

.tv-stage{
    position:relative;
    width:100vw;
    height:100vh;
    overflow:hidden;
}

/* =========================
   SLIDES
========================= */
.slide-layer{
    position:absolute;
    inset:0;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .6s;
    background:#000 center/cover no-repeat;
}

.slide.active{
    opacity:1;
}

.slide-media{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
   LOGO (FIX)
========================= */
.top-right-logo{
    position:absolute;
    top:16px;
    right:20px;
    width:110px;
    height:110px;
    z-index:20;
}

.top-right-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

/* =========================
   BOTTOM BAR (FLACH + BREIT)
========================= */
.bottom-bar{
    position:absolute;
    left:14px;
    right:14px;
    bottom:10px;
    height:44px;
    display:flex;
    align-items:center;
    z-index:30;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(3px);
    overflow:hidden;
}

/* Uhr */
.time-box{
    width:100px;
    min-width:100px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.time-box span{
    font-size:20px;
    font-weight:900;
}

/* Label */
.ticker-label{
    width:130px;
    min-width:130px;
    background:#df0000;
    display:flex;
    align-items:center;
    justify-content:center;
}

.ticker-label span{
    font-size:12px;
    font-weight:900;
    white-space:nowrap;
}

/* Ticker */
.ticker-wrap{
    flex:1;
    overflow:hidden;
}

.ticker-viewport{
    display:flex;
    align-items:center;
    overflow:hidden;
}

.ticker-track{
    display:flex;
    white-space:nowrap;
}

.ticker-content{
    font-size:14px;
    font-weight:700;
    padding-right:30px;
}

/* Wetter */
.weather-bar-box{
    width:200px;
    min-width:200px;
    display:flex;
    align-items:center;
    padding:0 8px;
}

.weather-bar-title{
    font-size:10px;
    font-weight:900;
    color:#ff9e00;
}

#weather-bar-text{
    font-size:10px;
    font-weight:700;
}

/* Hosted */
.hosted-box{
    width:120px;
    min-width:120px;
    text-align:center;
}

.hosted-top{
    font-size:8px;
}

.hosted-bottom{
    font-size:12px;
    font-weight:900;
    color:#ff7a00;
}


/* =========================
   WETTER TEXT STEUERUNG
========================= */

.weather-bar-top{
    font-size:11px;   /* obere Zeile kleiner */
    font-weight:700;
}

.weather-location{
    font-size:11px;   /* Ort */
    font-weight:900;
}

.weather-temp{
    font-size:11px;   /* Temperatur */
    font-weight:900;
}

.weather-bar-bottom{
    display:flex;
    align-items:center;
    gap:6px;
}

.weather-bar-text{
    font-size:11px;   /* HIER Beschreibung größer/kleiner */
    font-weight:800;
}

.weather-bar-icon{
    font-size:11px;   /* Icon Größe */
}
/* =========================
   MOBILE
========================= */
@media (max-width:768px){
    .bottom-bar{
        height:38px;
    }

    .time-box span{
        font-size:14px;
    }

    .ticker-content{
        font-size:12px;
    }

    .weather-bar-box{
        display:none;
    }
}