/* =========================================================
   Panorama Gospel - Consolidated Stylesheet
   All CSS consolidated from index.html inline <style>,
   css/estilos.css, css/style.css, and css/styles.css
   ========================================================= */

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200px;
    background-attachment: fixed;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 200px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================== LAYOUT =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    flex: 1;
}

.content {
    background: #1e1e3a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    color: #e0e0e0;
}

.section {
    background: #1e1e3a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===================== HEADER =========================== */
header {
    background: linear-gradient(135deg, #16213e, #0f3460);
    color: white;
    text-align: center;
    padding: 20px 20px 10px;
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo {
    width: 80px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.header-text {
    text-align: left;
    min-width: 200px;
}

.header-text h1 {
    font-size: 22px;
    margin: 0 0 4px;
    line-height: 1.2;
}

.header-text p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}

.slogan {
    text-align: center;
    padding: 8px 0 5px;
    font-size: 13px;
    color: #ffd700;
    margin: 0;
    letter-spacing: 0.3px;
}



/* ===================== HEADER CONTROLS ================== */
.header-controls {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 8px 20px;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.lang-btn,
.theme-btn {
    background: #1a237e;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Indicador de IA ativa */
.lang-btn.ai-active {
    background: #2ecc71 !important;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}
.lang-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}
.lang-btn.loading::after {
    content: ' ⏳';
}

.lang-btn:hover,
.theme-btn:hover {
    background: #3949ab;
    transform: scale(1.05);
}

.theme-btn.dark {
    background: #616161;
}

.theme-btn.dark:hover {
    background: #757575;
}

/* ===================== NAVIGATION ======================= */
nav {
    background: #16213e;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #64b5f6;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-menu li a:hover {
    color: #90caf9;
}

.nav-menu li a.active-page {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #64b5f6;
    cursor: pointer;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

/* ===================== MAIN CONTENT ===================== */
#dynamic-content {
    margin-bottom: 20px;
}

#home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ===================== PLAYER =========================== */
.player-container {
    width: 100%;
    height: 300px;
    background: #000;
    border-radius: 5px;
    overflow: hidden;
    margin: 10px auto;
    text-align: center;
}

.radio-player,
.tv-player,
.video-player {
    width: 100%;
    height: 100%;
}

.titulo-player {
    margin-bottom: 20px;
}

.player-container p {
    margin-top: 10px;
    color: #666;
}

/* ===================== VIDEO LIST ======================= */
.video-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.video-item video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.search-container {
    margin-bottom: 20px;
}

.search-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* ===================== DAILY VERSE ====================== */
.daily-verse {
    background: rgba(30, 30, 58, 0.9);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.daily-verse h2 {
    font-size: 24px;
    color: #FA8072;
    margin-bottom: 14px;
}

.daily-verse blockquote {
    font-style: italic;
    color: #90caf9;
    font-size: 16px;
}

#verse-text {
    background-color: #1a1a35;
    padding: 25px;
    border-left: 5px solid #FFD700;
    color: #bb86fc !important;
}

.versiculo-dia {
    background: #1e1e3a;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
    color: #bb86fc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ===================== TICKER MODERNO =================== */
.ticker-moderno {
    background: #1e1e3a;
    border: 1px solid #2a2a5a;
    border-radius: 12px;
    margin: 10px 0 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: stretch;
}

.ticker-moderno-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
}

.ticker-moderno-icon {
    font-size: 16px;
}

.ticker-moderno-label {
    white-space: nowrap;
}

.ticker-moderno-track {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
    display: flex;
    align-items: center;
}

#ticker-moderno-text {
    display: inline-block;
    padding-left: 100%;
    color: #e0e0e0;
    font-size: 14px;
    animation: ticker-marquee 180s linear infinite;
    will-change: transform;
    white-space: nowrap;
    line-height: 44px;
}

#ticker-moderno-text a {
    color: #ffd700;
    text-decoration: none;
    font-weight: bold;
}

#ticker-moderno-text a:hover {
    text-decoration: underline;
    color: #fff;
}

#ticker-moderno-text.loading {
    opacity: 0.5;
    animation: none;
    padding-left: 20px;
}

.ticker-moderno:hover #ticker-moderno-text {
    animation-play-state: paused;
}

@keyframes ticker-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-right: 6px;
    color: #90caf9;
}

.source-tag {
    color: #64b5f6;
    font-size: 12px;
}

/* ===================== SCROLL TEXT ====================== */
.scroll-left {
    height: 50px;
    overflow: hidden;
    position: relative;
    background: black;
    color: orange;
    border: 1px solid orange;
}

.scroll-left p {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    transform: translateX(100%);
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===================== POPUP ============================ */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #f0f881;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    font-family: Arial, sans-serif;
}

.popup-content h2 {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.popup-content p {
    font-size: 16px;
    margin: 10px 0;
}

.close-btn {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #e74c3c;
}

.popup-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.popup-btn:hover {
    background: #c0392b;
}

.instructions {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
}

.instructions li {
    margin-bottom: 10px;
    font-size: 15px;
}

.link {
    color: #007BFF;
    text-decoration: underline;
}

/* ===================== FOOTER =========================== */
footer {
    background-color: #0d1b2a;
    color: #ccc;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

footer a {
    color: #64b5f6;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

footer .social-links img {
    max-width: 40px;
    height: auto;
    transition: transform 0.2s ease;
}

footer .social-links img:hover {
    transform: scale(1.1);
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #64b5f6;
}

/* ===================== BUTTONS ========================== */
.download-btn {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #4285f4;
}

.voto-btn {
    background-color: #e74c3c;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.voto-btn:hover {
    background-color: #c0392b;
}

.voto-btn,
.whatsapp-btn {
    background-color: #1a73e8;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px;
}

.voto-btn:hover,
.whatsapp-btn:hover {
    background-color: #4285f4;
}

.telegram-btn {
    background-color: #29b6f6;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 10px;
}

.telegram-btn:hover {
    background-color: #0288d1;
}

/* ===================== ENQUETE ========================== */
#enquete-container {
    background: #1e1e3a;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #e0e0e0;
}

#enquete-player,
.enquete-card {
    background: #1e1e3a;
    border-radius: 8px;
    padding: 18px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #e0e0e0;
}

.opcao {
    margin: 10px 0;
}

#mensagem,
#erro {
    margin-top: 10px;
}

#resultados-enquete {
    margin-top: 30px;
}

.barra-progresso {
    height: 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

.sim-fill {
    height: 100%;
    background-color: #2ecc71;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

.nao-fill {
    height: 100%;
    background-color: #e74c3c;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

.barra-progresso-fill {
    height: 100%;
    width: 0%;
    background-color: #2ecc71;
    transition: width 0.5s ease-in-out;
}

.agradecimento {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: #2ecc71;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    transition: opacity 0.5s ease-in-out;
}

/* ===================== PROGRAMACAO ====================== */
.programacao-list {
    margin-top: 20px;
}

.programacao-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

thead tr {
    background-color: #e74c3c;
    color: white;
}

th, td {
    padding: 10px;
    border: 1px solid #ccc;
}

.ativo {
    background-color: #fff3cd !important;
    font-weight: bold;
}

/* ===================== AVISO ROTATIVO =================== */
#aviso-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #c0392b;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    transition: opacity 0.5s ease-in-out;
}

/* ===================== ADS ============================== */
.ads {
    background: #f8f9fa;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.section.ads {
    text-align: center;
}

.section.ads h2 {
    margin: 0 auto;
}

.section.ads iframe {
    display: block;
    margin: 10px auto 0;
}

/* ===================== PODCAST ========================== */
.box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.box h3 {
    margin-bottom: 15px;
    color: #333;
}

.box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.box input,
.box select,
.box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.box button[type="submit"] {
    background-color: #e74c3c;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.box button[type="submit"]:hover {
    background-color: #c0392b;
}

/* ===================== CONTACT FORM ===================== */
.contact-form {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: 20px auto;
    border: 2px solid #e74c3c;
    box-sizing: border-box;
}

.contact-form img {
    max-width: 150px;
    display: block;
    margin: 0 auto 1.5rem;
}

.contact-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
    font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background-color: #e74c3c;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background-color: #c0392b;
}

/* ===================== ADMIN PANEL ====================== */
#admin-login {
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}

#admin-login h3 {
    margin-bottom: 15px;
}

.admin-input {
    padding: 10px;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.admin-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.admin-btn:hover {
    background: #c0392b;
}

#admin-conteudo {
    display: none;
    margin-top: 30px;
}

/* ===================== UTILITY CLASSES ================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.qrcode {
    text-align: center;
    margin: 20px 0;
}

.download-link {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px 0;
}

.download-link:hover {
    background: #c0392b;
}

.pix-info {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
}

.noticias-list {
    margin-top: 20px;
}

.section-divider {
    border: none;
    border-top: 2px solid #e74c3c;
    margin: 30px 0;
}

.ad-image {
    max-width: 100%;
    border-radius: 8px;
    margin: 10px 0;
}

.enquete-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 20px 0;
}

.enquete-actions {
    text-align: center;
    margin: 20px 0;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.saiba-mais {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
    margin-left: 6px;
    white-space: nowrap;
    border-bottom: 1px dotted #FFD700;
}

.saiba-mais:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

/* ===================== LIGHT MODE ====================== */
body.light-mode {
    background-color: #f0f2f5;
    color: #333;
}

body.light-mode header {
    background: linear-gradient(135deg, #1565c0, #1976d2);
}

body.light-mode header .slogan {
    color: #ffeb3b;
}

body.light-mode nav {
    background: #fff;
}

body.light-mode .nav-menu {
    background: #fff;
}

body.light-mode .nav-menu li a {
    color: #1a73e8;
}

body.light-mode .nav-menu li a:hover {
    color: #4285f4;
}

body.light-mode .menu-toggle {
    color: #1a73e8;
}

body.light-mode .ticker-moderno {
    background: #fff;
    border-color: #e0e0e0;
}

body.light-mode .ticker-moderno-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

body.light-mode #ticker-moderno-text {
    color: #555;
}

body.light-mode #ticker-moderno-text a {
    color: #e74c3c;
}

body.light-mode .category-badge {
    color: #666;
    background: rgba(0, 0, 0, 0.06);
}

body.light-mode .source-tag {
    color: #1565c0;
}

body.light-mode .lang-btn,
body.light-mode .theme-btn {
    background: #1a237e;
    color: white;
}

body.light-mode .lang-btn:hover,
body.light-mode .theme-btn:hover {
    background: #3949ab;
}

body.light-mode .theme-btn.dark {
    background: #616161;
}

body.light-mode .theme-btn.dark:hover {
    background: #757575;
}

body.light-mode .content,
body.light-mode .section,
body.light-mode .box,
body.light-mode .video-item,
body.light-mode #enquete-container,
body.light-mode #enquete-player,
body.light-mode .enquete-card {
    background: #fff;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode .daily-verse {
    background: rgba(255, 255, 255, 0.9);
}

body.light-mode .daily-verse blockquote {
    color: #6495ED;
}

body.light-mode #verse-text {
    background-color: #FFF9E6;
    color: #8A2BE2 !important;
}

body.light-mode .contact-form {
    background: #fff;
}

body.light-mode footer {
    background-color: #333;
    color: #fff;
}

body.light-mode footer a {
    color: #64b5f6;
}

body.light-mode .social-links a {
    color: #fff;
}

body.light-mode .social-links a:hover {
    color: #1a73e8;
}

body.light-mode .programacao-item {
    background: #fff;
    color: #333;
}

body.light-mode .ads {
    background: #fff;
}

body.light-mode .popup-content {
    background: #f0f881;
}

/* ===================== RESPONSIVE ======================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #16213e;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 12px 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.light-mode .nav-menu {
        background: #fff;
    }

    body.light-mode .nav-menu a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .grid,
    #home-grid {
        grid-template-columns: 1fr;
    }

    .player-container,
    .video-player {
        height: 200px;
    }

    .video-list,
    .programacao-list {
        grid-template-columns: 1fr;
    }

    body::after {
        background-size: 150px;
    }

    .ticker-moderno {
        flex-direction: column;
    }

    .ticker-moderno-header {
        justify-content: center;
        padding: 8px 12px;
        font-size: 12px;
    }

    #ticker-moderno-text {
        line-height: 36px;
        font-size: 13px;
    }

    header {
        padding: 15px 15px 8px;
    }

    .header-text h1 {
        font-size: 18px;
    }

    .header-text p {
        font-size: 13px;
    }

    .logo {
        width: 60px;
    }

    .ticker li {
        font-size: 14px;
    }
}
