@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

:root {
    --primary: #ff7300;
    /* Laranja característico */
    --bg-dark: #0a0a0a;
    --sidebar-bg: rgba(20, 20, 20, 0.85);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-white: #ffffff;
    /* EDITAR ABAIXO PARA MUDAR AS IMAGENS */
    --logo-img: url('https://i.postimg.cc/VvsDSPqF/banner-indoor.png');
    --sidebar-bg-img: url('https://i.postimg.cc/VvsDSPqF/banner-indoor.png');
    /* Pode usar a mesma imagem ou outra */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--sidebar-bg-img);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.tv-container {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* Player de Monitor */
.monitor {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tv-player {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border-left: 4px solid var(--primary);
}

#current-time {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Sidebar de Branding */
.sidebar {
    width: 350px;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.4)), var(--sidebar-bg-img);
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    z-index: 10;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.brand-section {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 115, 0, 0.3));
}

.brand-name {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--primary);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.brand-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ticker / Info Section */
.news-ticker-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
}

.ticker-title {
    background: var(--primary);
    color: #000;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 15px;
}

.ticker-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Sidebar */
.footer-sidebar {
    padding-top: 0;
}

.brand-info-footer {
    text-align: center;
}

@media (max-width: 1000px) {
    .sidebar {
        width: 250px;
    }

    .brand-name {
        font-size: 1.5rem;
    }
}