html {
    scroll-behavior: smooth;
}

:root {
    --primary: #0066ff; /* Blue */
    --secondary: #ffcc00; /* Yellow */
    --accent: #ff0066; /* Pink */
    --success: #00e676; /* Green */
    --bg-dark: #0066ff; /* Blue BG */
    --glass: rgba(0, 102, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* system-ui aparece instantaneamente; Inter substitui quando chegar (sem piscar) */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background: var(--bg-dark);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Dinâmico Estilo Geekdot */
.bg-vibrant {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 122, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.circles-decor {
    position: fixed;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: repeating-radial-gradient(circle, var(--primary) 0, var(--primary) 2px, transparent 0, transparent 40px);
    opacity: 0.1;
    z-index: -1;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 102, 255, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1000;
}

.logo-container {
    margin-right: 20px;
    z-index: 1002;
}

.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    background: var(--secondary);
    border-radius: 50px;
    padding: 10px 40px;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-menu a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #000;
}

.menu-separator {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* MOBILE TOGGLE */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    z-index: 1001;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: var(--bg-dark);
    border-right: 1px solid var(--glass-border);
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-nav-overlay.active {
    left: 0;
}

.mobile-nav-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.logo-container img {
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.live-badge {
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-glow 2s infinite;
    white-space: nowrap;
}

.live-blink {
    color: #fff;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0.3; }
}

/* HERO & PLAYER */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
}

/* Stories Highlight Estilo Instagram */
.stories-highlight-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.stories-highlight-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stories-highlight-container:hover {
    transform: scale(1.08);
}

.stories-ring {
    width: 85px;
    height: 85px;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.3);
    position: relative;
    animation: stories-pulse 2s infinite;
}

@keyframes stories-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 39, 67, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 39, 67, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 39, 67, 0);
        transform: scale(1);
    }
}

.stories-avatar-inner {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--bg-dark);
}

.stories-badge {
    position: absolute;
    bottom: -5px;
    background: var(--accent); /* Rosa Shock do site */
    color: #fff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    z-index: 2;
}

.stories-avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stories-fire-icon {
    font-size: 2.2rem;
    background: linear-gradient(to bottom, #ff007a, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(255, 0, 122, 0.4));
}

.stories-label {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.9;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle::before, .section-subtitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.player-rings-container {
    background: var(--accent);
    padding: 30px;
    border-radius: 80px;
    max-width: 800px;
    margin: 80px auto;
    box-shadow: 0 0 0 30px var(--success), 0 0 0 60px var(--secondary);
    position: relative;
    z-index: 10;
}

.player-container {
    background: #111;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

video {
    width: 100%;
    height: 100%;
}

/* --- BARRINHA DE PROGRAMAÇÃO ABAIXO DO PLAYER --- */
.player-program-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 15px auto 3rem auto;
    padding: 12px 24px;
    background: var(--accent); /* Rosa da paleta */
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.3);
}

.np-current, .np-next {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.np-next {
    justify-content: flex-end;
}

.np-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 20px;
}

.np-badge {
    background: var(--success);
    color: #000;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.np-badge-next {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.np-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: normal;
    word-wrap: break-word;
}

.np-text-next {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: normal;
    word-wrap: break-word;
}

@media (max-width: 600px) {
    .player-program-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 16px;
    }
    .np-current, .np-next {
        width: 100%;
        justify-content: flex-start;
    }
    .np-divider {
        display: none;
    }
}

/* PROGRAMACAO GRID */
.schedule-section {
    margin-top: 4rem;
}

.schedule-title {
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.schedule-header {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding-bottom: 10px;
}

.day-tab {
    padding: 0.8rem 2rem;
    background: var(--accent); /* Rosa */
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: bold;
}

.day-tab.active {
    background: var(--secondary); /* Amarelo */
    color: var(--primary); /* Azul */
    font-weight: 900;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--success); /* Verde */
    padding: 1.5rem;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 140px; /* Reduzido para ficar mais compacto conforme pedido */
}

.schedule-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.schedule-card.now::before {
    content: 'NO AR';
    position: absolute;
    top: 0;
    right: 20px;
    background: var(--success);
    color: #000;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 0 0 8px 8px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.schedule-card.now {
    border-color: var(--success);
    background: rgba(0, 255, 136, 0.05);
}

.schedule-card.now .shift-time {
    color: var(--success);
    opacity: 1;
}

/* --- HIGHLIGHT PULSE (ao clicar em AO VIVO) --- */
@keyframes highlightFlash {
    0%   { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); border-color: var(--success); }
    30%  { box-shadow: 0 0 0 12px rgba(0, 242, 255, 0.35); border-color: var(--primary); }
    70%  { box-shadow: 0 0 0 6px rgba(0, 242, 255, 0.15); border-color: var(--primary); }
    100% { box-shadow: 0 0 0 0 rgba(0, 242, 255, 0); border-color: var(--success); }
}

.schedule-card.highlight-pulse {
    animation: highlightFlash 1.8s ease-out;
}

/* --- PROGRESS BAR DA GRADE --- */
.timeline-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    margin-top: auto; /* Empurra para o final do card flex */
    padding-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

.timeline-fill {
    height: 100%;
    background: var(--accent); /* Rosa da paleta MITV (#ff0066) */
    border-radius: 6px;
    transition: width 1s linear;
    box-shadow: 0 0 10px rgba(255, 0, 102, 0.6);
}

.schedule-card .shift-time {
    color: #fff;
    opacity: 0.4;
    font-weight: 800;
    font-size: 0.8rem;
    transition: 0.3s;
}

.schedule-card.now .shift-time {
    color: var(--success);
    opacity: 1;
}

.shift-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 400;
}

@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 255, 136, 0); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 255, 136, 0); }
}

@media (max-width: 768px) {
    header {
        display: flex;
        justify-content: space-between;
        padding: 1rem 5%;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        order: -1;
    }

    .hero-section h1 { font-size: 2.2rem; }
    
    .logo-container img { height: 50px; }
    
    .live-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* --- VIDEO.JS CUSTOM PREMIUM SKIN (GLASSMORPHISM) --- */
.video-js.vjs-latinasat-skin {
    width: 100%;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.vjs-latinasat-skin .vjs-control-bar {
    background: rgba(10, 20, 30, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 60px;
    padding: 0 10px;
}

.vjs-latinasat-skin .vjs-play-progress {
    background: linear-gradient(90deg, var(--primary), var(--accent)) !important;
}

.vjs-latinasat-skin .vjs-slider {
    background: rgba(255, 255, 255, 0.1);
}

.vjs-latinasat-skin .vjs-load-progress {
    background: rgba(255, 255, 255, 0.05);
}

.vjs-latinasat-skin .vjs-big-play-button {
    background: rgba(0, 242, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    line-height: 76px !important;
    margin-top: -40px !important;
    margin-left: -40px !important;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vjs-latinasat-skin:hover .vjs-big-play-button {
    background: var(--primary) !important;
    color: #000 !important;
    transform: scale(1.1);
    box-shadow: 0 0 30px var(--primary);
}

.vjs-latinasat-skin .vjs-menu-button-inline.vjs-slider-active,
.vjs-latinasat-skin .vjs-menu-button-inline:focus,
.vjs-latinasat-skin .vjs-menu-button-inline:hover,
.video-js.vjs-latinasat-skin .vjs-control:focus:before,
.video-js.vjs-latinasat-skin .vjs-control:hover:before,
.video-js.vjs-latinasat-skin .vjs-control:focus {
    text-shadow: 0 0 10px var(--primary);
}

/* Ajuste para o player ficar responsivo na div pai */
.player-container .video-js {
    position: absolute;
    top: 0;
    left: 0;
}
/* --- FOOTER PREMIUM --- */
footer {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem 1rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, transparent, rgba(0, 242, 255, 0.02));
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact h3 {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
}

.footer-email {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-email:hover {
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.6);
    transform: translateY(-2px);
}

.footer-copyright {
    opacity: 0.3;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

/* --- FOOTER SOCIALS --- */
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 2rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link i {
    font-size: 1.2rem;
    color: #ffffff;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-link:hover i {
    text-shadow: 0 0 15px var(--primary);
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .footer-socials {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* --- INSTAGRAM GROUP (rodapé) --- */
.footer-insta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

@media (max-width: 480px) {
    .footer-insta-group {
        align-items: center;
    }
}

.insta-badge {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    padding: 2px 7px;
    border-radius: 4px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 6px;
    display: inline-block;
    line-height: 1.5;
}

.insta-recovery {
    background: rgba(255, 150, 0, 0.15);
    color: #ffab40;
    border: 1px solid rgba(255, 150, 0, 0.3);
}

.insta-reserve {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 242, 255, 0.25);
}
/* --- IPTV SECTION PREMIUM --- */
.iptv-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background: var(--secondary); /* Amarelo para destacar do fundo azul */
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.iptv-section h2 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary); /* Azul */
}

.iptv-section p {
    font-size: 1rem;
    color: var(--primary); /* Azul */
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.iptv-copy-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.iptv-link-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--primary);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy-iptv {
    background: var(--accent); /* Rosa */
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
}

.btn-copy-iptv:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary);
}

@media (max-width: 768px) {
    .iptv-link-box { font-size: 0.7rem; width: 100%; }
    .btn-copy-iptv { width: 100%; justify-content: center; }
}

/* --- DUAL ROW: RÁDIO FM + IPTV 50/50 --- */
.dual-row {
    display: flex;
    gap: 20px;
    max-width: 900px;
    margin: 2rem auto;
    align-items: stretch;
}

.dual-row .radio-premium-card {
    flex: 1;
    margin: 0;         /* cancela margin: auto do card individual */
}

.dual-row .iptv-section {
    flex: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* === Mesmo padrão do radio-premium-card === */
    background: var(--glass);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 242, 255, 0.2);
    transition: 0.3s;
}

.dual-row .iptv-section:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 60px -12px rgba(0, 242, 255, 0.4);
}

/* Reseta o estilo padrão da .iptv-section quando dentro do dual-row */
.dual-row .iptv-section h2 {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.dual-row .iptv-section p {
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
}

.dual-row .iptv-copy-container {
    justify-content: center;
    margin-top: auto;
}

.dual-row .btn-copy-iptv {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .dual-row {
        flex-direction: column;
        gap: 0;
    }
    .dual-row .radio-premium-card,
    .dual-row .iptv-section {
        margin: 1rem auto;
        width: 100%;
    }
}

/* --- RADIO PLAYER PREMIUM --- */
.radio-premium-card {
    background: var(--glass);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 242, 255, 0.2);
    border: 1px solid var(--glass-border);
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    backdrop-filter: blur(15px);
    transition: 0.3s;
}

.radio-premium-card:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 60px -12px rgba(0, 242, 255, 0.4);
}

.radio-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}

.radio-header h3 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 900;
}

.radio-live-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: radio-blink 1.5s infinite;
}

@keyframes radio-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

/* ===== CARROSSEL DE PLATAFORMAS ===== */
.platforms-section {
    max-width: 900px;
    margin: 2rem auto 0;
    overflow: hidden;
}

.platforms-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.platforms-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 8px var(--success);
    animation: radio-blink 1.5s infinite;
    flex-shrink: 0;
}

.platforms-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.platforms-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 14px;
    padding: 6px 0 12px;
    animation: scrollPlatforms 32s linear infinite;
}

.platforms-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPlatforms {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7px)); }
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 4px 14px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.platform-card:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 255, 0.07);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 242, 255, 0.15);
}

.platform-logo {
    height: 14px;
    max-width: 70px;
    object-fit: contain;
    filter: grayscale(100%) brightness(180%) opacity(0.65);
    transition: filter 0.3s ease;
}

.platform-card:hover .platform-logo {
    filter: grayscale(0%) brightness(100%) opacity(1);
}

.platform-text {
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.platform-channel {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--success);
    border-left: 1px solid var(--glass-border);
    padding-left: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .platforms-section {
        margin-top: 1.5rem;
    }
    .platform-card {
        padding: 4px 12px;
        gap: 8px;
    }
}
/* ===== FIM CARROSSEL DE PLATAFORMAS ===== */

/* ===== BANNER ANDROID TV ===== */
.androidtv-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 12px auto 0;
    padding: 10px 22px;
    background: linear-gradient(100deg, rgba(61, 220, 132, 0.07) 0%, rgba(5, 10, 20, 0.6) 60%);
    border: 1px solid rgba(61, 220, 132, 0.18);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    gap: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.androidtv-banner:hover {
    border-color: rgba(61, 220, 132, 0.4);
    box-shadow: 0 4px 24px rgba(61, 220, 132, 0.1);
}

.androidtv-banner-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.androidtv-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    opacity: 0.85;
}

.androidtv-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.androidtv-title {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #3DDC84;
}

.androidtv-sub {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.androidtv-code {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    color: #fff;
    background: rgba(61, 220, 132, 0.15);
    padding: 1px 7px;
    border-radius: 4px;
    border: 1px solid rgba(61, 220, 132, 0.25);
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.androidtv-banner-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.androidtv-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: linear-gradient(135deg, #2e9e60, #3DDC84);
    color: #000;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.androidtv-dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 220, 132, 0.4);
}

@media (max-width: 600px) {
    .androidtv-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        gap: 12px;
    }
    .androidtv-banner-sep {
        display: none;
    }
    .androidtv-dl-btn {
        width: 100%;
        justify-content: center;
    }
    .androidtv-sub {
        white-space: normal;
    }
}
/* ===== FIM BANNER ANDROID TV ===== */

/* ===== STORIES OVERLAY (ESTILO INSTAGRAM) ===== */
#stories-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;       /* clip do container ao sair pelo swipe */
    touch-action: none;     /* impede o browser de roubar o gesto de toque */
}

#stories-overlay.open {
    display: flex;
    opacity: 1;
}

.stories-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    max-height: 850px;
    background: #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    /* Permite o transform de swipe */
    will-change: transform;
    transition: transform 0.3s ease;
}

@media (max-width: 480px) {
    .stories-container {
        max-width: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

/* Barras de Progresso */
.stories-progress-container {
    position: absolute;
    top: 15px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    width: 0%;
    background: #fff;
}

/* Header do Story */
.story-header {
    position: absolute;
    top: 35px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    color: #fff;
}

.story-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.story-user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.story-username {
    font-weight: 700;
    font-size: 0.85rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.story-date {
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 400;
}

.story-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-share, .story-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: transform 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-share:hover, .story-close:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.story-share i {
    font-size: 1.1rem;
}

/* Imagem do Story */
.story-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    position: relative;
}

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

/* Áreas de Toque para Navegação */
.story-nav-touch {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35%;
    z-index: 8;
    cursor: pointer;
}

.story-nav-prev { left: 0; }
.story-nav-next { right: 0; width: 65%; }

/* Estado de Carregamento */
.story-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: story-spin 1s linear infinite;
    z-index: 4;
}

@keyframes story-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- PROGRAMACAO.HTML STYLES --- */
.guia-header {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 30%, var(--primary) 70%, var(--success) 100%);
    padding: 3rem 1rem;
    text-align: center;
}

.guia-header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.guia-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 1rem 1rem 3rem;
}

.schedule-section .section-title-decorated {
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.schedule-section .section-title-decorated i {
    color: var(--secondary);
}

.np-badge-outline {
    background: transparent !important;
    border: 1.5px solid currentColor;
    font-size: 0.72rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
}

.guia-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.guia-tab-btn {
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.55;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guia-tab-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.guia-tab-btn.active {
    opacity: 1;
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.guia-period-section {
    margin-bottom: 2.5rem;
}

.guia-period-title {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid;
    padding-bottom: 8px;
}

.guia-program-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guia-program-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 22px;
    border-left: 8px solid; /* Cor do turno */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guia-program-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.guia-time {
    font-size: 1.2rem;
    font-weight: 900;
    min-width: 140px;
    text-align: left;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.guia-details {
    flex: 1;
    min-width: 0;
}

.guia-details h3 {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 4px;
    font-weight: 800;
}

.guia-details p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin: 0;
}

@media (max-width: 768px) {
    .guia-program-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }
    .guia-time {
        text-align: left;
        min-width: auto;
        font-size: 1.1rem;
    }
    .guia-tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.footer-email, .social-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
}
.footer-email:hover, .social-link:hover {
    color: var(--secondary) !important;
}

/* ===== YOUTUBE GRID ===== */
.youtube-section {
    padding: 3rem 1rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-decorated {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-title-decorated i {
    color: #ff0000;
}

.youtube-subtitle {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    font-weight: 500;
}

.youtube-grid-container {
    width: 100%;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.yt-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.yt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #ff0000;
}

.yt-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.yt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.yt-card:hover .yt-thumb {
    transform: scale(1.05);
    opacity: 0.85;
}

.yt-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.85);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease, background 0.25s ease;
}

.yt-play-overlay i {
    margin-left: 3px;
}

.yt-card:hover .yt-play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: #ff0000;
}

.yt-info {
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.25);
    flex: 1;
    display: flex;
    align-items: center;
}

.yt-title {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

@media (max-width: 1100px) {
    .youtube-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 850px) {
    .youtube-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
    .youtube-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ===== CONTATOS SECTION ===== */
.contacts-section {
    padding: 4rem 1rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 16px 20px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
    backdrop-filter: blur(8px);
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-whatsapp:hover { border-color: #25D366; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }
.contact-youtube:hover { border-color: #FF0000; box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35); }
.contact-instagram:hover { border-color: #C13584; box-shadow: 0 6px 20px rgba(193, 53, 132, 0.35); }
.contact-email:hover { border-color: var(--primary); box-shadow: 0 6px 20px rgba(0, 102, 255, 0.35); }

.contact-icon {
    font-size: 1.6rem;
    margin-right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.contact-whatsapp .contact-icon { color: #25D366; background: rgba(37, 211, 102, 0.15); }
.contact-youtube .contact-icon { color: #FF0000; background: rgba(255, 0, 0, 0.15); }
.contact-instagram .contact-icon { color: #C13584; background: rgba(193, 53, 132, 0.15); }
.contact-email .contact-icon { color: #00e676; background: rgba(0, 230, 118, 0.15); }

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2px;
    color: #fff;
}

.contact-info p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-arrow {
    font-size: 0.9rem;
    opacity: 0.4;
    transition: opacity 0.25s ease, transform 0.25s ease;
    margin-left: 10px;
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(4px);
}

/* === FLOATING CHAT BUTTON === */
#chat-toggle-btn {
    position: fixed;
    bottom: 28px;
    right: 24px;
    padding: 0 22px;
    height: 52px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--secondary), #ff1744);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(255, 23, 68, 0.5);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
}

#chat-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(255, 23, 68, 0.7);
}

#chat-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #fff;
    color: #c62828;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === CHAT PANEL === */
#chat-panel {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 330px;
    max-height: 490px;
    border-radius: 18px;
    background: rgba(12, 14, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    z-index: 9998;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.7);
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

#chat-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

@media (max-width: 480px) {
    #chat-panel {
        width: calc(100vw - 24px);
        right: 12px;
        bottom: 80px;
        max-height: 65vh;
        border-radius: 20px;
    }

    #chat-toggle-btn {
        bottom: 20px;
        right: 16px;
    }
}

/* === CHAT HEADER === */
#chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
    color: #fff;
}

#chat-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

#chat-close-btn:hover {
    color: #fff;
}

/* === CHAT MESSAGES === */
#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
}

.chat-bubble {
    display: flex;
    flex-direction: column;
    gap: 3px;
    animation: chatBubbleIn 0.25s ease;
}

@keyframes chatBubbleIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-bubble .chat-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    flex-wrap: wrap;
}

.chat-bubble .chat-name {
    font-weight: 800;
    font-size: 0.8rem;
}

.chat-bubble .chat-time {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    font-weight: 500;
}

.chat-bubble .chat-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.86rem;
    line-height: 1.4;
    word-break: break-word;
    white-space: pre-wrap;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 8px;
}

/* === NICKNAME SCREEN === */
#chat-nickname-screen {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#chat-nickname-input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 12px;
    outline: none;
    box-sizing: border-box;
}

#chat-nickname-btn {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary), #ff1744);
    color: #fff;
    font-weight: 800;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

#chat-nickname-btn:hover {
    opacity: 0.88;
}

/* === INPUT AREA === */
#chat-input-area {
    padding: 10px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 8px;
    align-items: center;
}

#chat-msg-input {
    flex: 1;
    min-height: 38px;
    max-height: 92px;
    padding: 9px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.86rem;
    font-family: inherit;
    line-height: 1.35;
    outline: none;
    resize: none;
    overflow-y: auto;
    box-sizing: border-box;
}

#chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #ff1744);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.15s;
}

#chat-send-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

@keyframes chatBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.chat-admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a2e;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-admin-crown {
    font-size: 0.7rem;
}

.chat-dica-block {
    background: linear-gradient(135deg, rgba(3,169,244,0.25), rgba(76,175,80,0.2));
    border-left: 3px solid #03A9F4;
    border-radius: 8px;
    padding: 8px 12px;
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #e0f7fa;
}

.chat-dica-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #03A9F4;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-mention {
    background: rgba(3,169,244,0.2);
    color: #4FC3F7;
    font-weight: 700;
    padding: 0 3px;
    border-radius: 3px;
}

.chat-mention.mention-me {
    background: rgba(255,215,0,0.25);
    color: #FFD700;
}

.chat-admin-actions {
    display: flex;
    gap: 4px;
    margin-left: auto;
}

.chat-admin-actions button {
    background: rgba(255,255,255,0.08);
    border: none;
    color: rgba(255,255,255,0.82);
    cursor: pointer;
    font-size: 0.66rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s;
}

.chat-admin-actions button:hover {
    color: #ff4444;
    background: rgba(255,68,68,0.15);
}

.chat-admin-actions button.edit-btn:hover {
    color: #4FC3F7;
    background: rgba(79,195,247,0.15);
}

.chat-edited-tag {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}
