/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    padding-top:80px;
}

/* ===== VARIABLES CSS ===== */
:root {
    --primary-color: #e22200;
    --primary-hover: #c41e00;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b35;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --border-color: #333333;
    --success-color: #00c853;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* ===== TIPOGRAFÍA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

/*
a:hover {
    color: var(--primary-hover);
}
*/

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.screenfix {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    min-height: 60px;
}

/* Logo de Livedata Stream (derecha) */
.header-logo-livedata {
    flex: 1;
}

.livedata-logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
    display: block;
}

/* Logo principal de YouTube Rating (centro) */
.header-logo-main {
    flex: 2;
    text-align: center;
}

.main-logo {
    height: 65px;
    width: auto;
    transition: var(--transition);
    display: block;
    margin: 0 auto;
}

/* Botón de Suscribirse (izquierda) */
.header-subscribe {
    flex: 1;
    text-align: right;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-subscribe:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.icon-youtube {
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg>') no-repeat center;
    background-size: contain;
}

/* Título fijo */
.titulo-fixed {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 0.8rem 0;
    display:flex;
}

.titulo-fixed.visible {
    transform: translateY(0);
}
.titulo-fixed .wfix {
    display:flex;
        margin: 0 AUTO;
    width: 100%;
    max-width: 1150px;
}
.titulo-fixed-content {
        padding: 0 15px;
}
.titulo-fixed-content .wfix {
    max-width:1220px;
    margin: 0 auto;
}
.titulo-fixed-content .filtros {
        padding: 15px 5px 4px 0px !important;
        border:none;
}
.titulo-fixed-h1 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.botones-compartir-fixed {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-compartir-fixed {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    padding: 0;
    text-align: center;
    margin: 0 0 0 auto;
    display: inline-block;
}
.btn-compartir-fixed i {
    display: block;
    margin: 0 auto;
}
.btn-compartir-fixed:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-compartir-fixed.twitter {
    background: #1da1f2;
    border-color: #1da1f2;
}

.btn-compartir-fixed.facebook {
    background: #1877f2;
    border-color: #1877f2;
}

.btn-compartir-fixed.whatsapp {
    background: #25d366;
    border-color: #25d366;
}

.btn-compartir-fixed.nativo {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Iconos de compartir */
.icon-twitter,
.icon-facebook,
.icon-whatsapp,
.icon-share {
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-twitter {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>');
}

.icon-facebook {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>');
}

.icon-whatsapp {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.885 3.488"/></svg>');
}

.icon-share {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z"/></svg>');
}

/* Responsive para botones de compartir */
@media (max-width: 768px) {
    .btn-text {
        display: none;
    }
    
    .btn-compartir-fixed {
        padding: 0.4rem;
        min-width: 36px;
        justify-content: center;
    }
    
    .titulo-fixed-h1 {
        font-size: 1rem;
    }
}

/* ===== NAVIGATION ===== */
.header-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(226, 34, 0, 0.1);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
}

.dropdown-link:last-child {
    border-bottom: none;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.separator {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

/* ===== FILTROS ===== */
.filtros {
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filtro-grupo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filtro-grupo label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.filtro-select {
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.filtro-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(226, 34, 0, 0.1);
}

/* ===== TÍTULO DE PÁGINA ===== */
.titulo-pagina {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.titulo-pagina h1 {
    font-size: 1.8rem;
    color: #CCC;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: left;
}

.stats-resumen {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-numero {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RANKING MENSUAL ===== */
.ranking-mensual {
    padding: 4rem 0;
}

.ranking-mensual h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.ranking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.canal-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.canal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.canal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
}

.canal-ranking {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-align: center;
}

.canal-imagen img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.canal-info {
    flex: 1;
}

.canal-nombre {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.canal-canal {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.canal-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.canal-pais, .canal-categoria {
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
}

.canal-stats {
    text-align: right;
}

.canal-visualizaciones {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.canal-variacion {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.canal-variacion.positiva {
    background: rgba(0, 200, 83, 0.2);
    color: var(--success-color);
}

.canal-variacion.negativa {
    background: rgba(244, 67, 54, 0.2);
    color: var(--error-color);
}

.canal-variacion.neutral {
    background: rgba(255, 152, 0, 0.2);
    color: var(--warning-color);
}

/* ===== RANKING TIEMPO REAL ===== */
.ranking-tiempo-real {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.ranking-tiempo-real h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.live-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.live-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.live-ranking {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 700;
    z-index: 2;
}

.live-imagen {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.live-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.live-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0000;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-info {
    padding: 1.5rem;
}

.live-titulo {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.live-canal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.canal-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.live-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.live-pais, .live-categoria {
    background: var(--bg-secondary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: var(--text-muted);
}

.live-viewers {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    text-align: center;
}

.live-viewers {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.viewers-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== COMPARTIR ===== */
.compartir {
    padding: 4rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.compartir h3 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.botones-compartir {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-compartir {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-compartir.twitter {
    background: #1da1f2;
    color: white;
}

.btn-compartir.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.btn-compartir.facebook {
    background: #1877f2;
    color: white;
}

.btn-compartir.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.btn-compartir.whatsapp {
    background: #25d366;
    color: white;
}

.btn-compartir.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
margin-bottom: 0.2rem;
    font-size: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {

}

.social-link {
    display: flex;
    color: var(--text-secondary);
    transition: var(--transition);
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-block;
    padding: 2px 5px;
}
.social-link svg {
    width:20px;
    height: 20px;
    display:inline-block;
    vertical-align: middle;
}
.social-link span {
    padding-left: 2px;
    display:inline-block;
    vertical-align: middle;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    list-style: none;
    margin-top: 0.5rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-powered p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== BOTONES ===== */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===== UTILIDADES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .filtros-grid {
        grid-template-columns: 1fr;
    }
    
    .ranking-grid {
        grid-template-columns: 1fr;
    }
    
    .live-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-resumen {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .botones-compartir {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .canal-card {
        flex-direction: column;
        text-align: center;
    }
    
    .canal-stats {
        text-align: center;
    }
}
