/* ============================
   Catalog Page Styles
   ============================ */

/* Global scale adjustments removed to prevent zoom issues */

/* Nav button overrides for catalog page */
.nav-actions .btn-primary {
    padding: 0.8rem 2.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* Animated Background */
.catalog-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: var(--bg-dark);
}

.catalog-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 12s ease-in-out infinite;
}

.catalog-bg .orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,59,59,0.35) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-duration: 14s;
}

.catalog-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,100,100,0.25) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    animation-duration: 18s;
    animation-delay: -4s;
}

.catalog-bg .orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(200,50,50,0.2) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-duration: 20s;
    animation-delay: -8s;
}

.catalog-bg .orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,59,59,0.15) 0%, transparent 70%);
    top: 20%;
    right: 20%;
    animation-duration: 16s;
    animation-delay: -2s;
}

/* Grid Lines */
.catalog-bg .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridScroll 30s linear infinite;
}

/* Particles */
.catalog-bg .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 59, 59, 0.5);
    border-radius: 50%;
    animation: particleRise linear infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.05); }
}

@keyframes gridScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes particleRise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* ============================
   Catalog Hero / Stats
   ============================ */
.catalog-hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: -1;
}
.hero-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,11,16,0.6) 0%, rgba(10,11,16,1) 100%);
}
.hero-backdrop.active {
    opacity: 0.5;
}

.catalog-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease both;
}

.catalog-hero .hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 59, 59, 0.3);
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.15);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: block;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

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

/* Counting Animation */
@keyframes countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================
   Category Tabs
   ============================ */
.catalog-tabs-section {
    padding: 2rem 3% 4rem;
}

.catalog-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 5px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-tab {
    flex: 1;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.catalog-tab:hover {
    color: var(--text-main);
}

.catalog-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.4);
}

.tab-content {
    display: none;
    max-width: 100%;
    margin: 0 auto;
    animation: fadeInTab 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* ============================
   Channels Grid
   ============================ */
.channels-search {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.channels-search input {
    width: 100%;
    max-width: 500px;
    padding: 14px 20px 14px 48px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.channels-search input::placeholder {
    color: var(--text-muted);
}

.channels-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.15);
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.2rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: default;
    min-width: 0;
    overflow: hidden;
}

.channel-card:hover {
    background: rgba(255, 59, 59, 0.08);
    border-color: rgba(255, 59, 59, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.channel-flag {
    font-size: 1.6rem;
    flex-shrink: 0;
}

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

.channel-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.channel-count {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

/* Total channels badge */
.channels-total {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 59, 59, 0.08);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 14px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.channels-total-wrap {
    text-align: center;
}

.channels-total span {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
}

/* ============================
   Movies/Series Grid
   ============================ */
.media-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.media-grid-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.media-count {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(5, 180px);
    gap: 0.8rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: rgba(255, 59, 59, 0.15);
    border-color: rgba(255, 59, 59, 0.3);
    color: var(--text-main);
}

.page-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.4);
}

.media-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}

.media-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 59, 59, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.media-poster {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(255,59,59,0.1) 0%, rgba(40,40,60,0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.media-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.media-card:hover .media-poster img {
    transform: scale(1.08);
}

.media-poster-placeholder {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
}

.media-year-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.media-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 59, 59, 0.85);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(5px);
}

.media-info {
    padding: 0.4rem 0.7rem 0.5rem;
}

.media-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-type {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.media-genres {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.genre-tag {
    font-size: 0.65rem;
    padding: 2px 7px;
    border-radius: 20px;
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary);
    font-weight: 600;
    border: 1px solid rgba(255, 59, 59, 0.15);
}

/* ============================
   Live Demo Section
   ============================ */
.demo-section {
    padding: 3rem 5% 2rem;
    text-align: center;
    position: relative;
}

.demo-section h2 {
    margin-bottom: 0.5rem;
}

.demo-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.demo-video-container {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), 0 0 30px rgba(255,59,59,0.1);
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a0b10 0%, #1a1020 50%, #0a0b10 100%);
}

.demo-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.demo-play-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 59, 59, 0.15);
    border: 2px solid rgba(255, 59, 59, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    animation: playPulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-play-icon:hover {
    background: rgba(255, 59, 59, 0.25);
    transform: scale(1.1);
}

@keyframes playPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,59,59,0.3); }
    50% { box-shadow: 0 0 0 20px rgba(255,59,59,0); }
}

.demo-placeholder p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.demo-cta {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================
   Detail Modal
   ============================ */
.detail-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.detail-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.detail-modal {
    width: 90%;
    max-width: 900px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.detail-modal-overlay.active .detail-modal {
    transform: scale(1) translateY(0);
}

.detail-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
}

.detail-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.detail-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 20%;
    opacity: 0.25;
    z-index: 1;
    filter: blur(5px);
}

.detail-backdrop::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(20,20,25,1) 0%, rgba(20,20,25,0.8) 50%, rgba(20,20,25,0.4) 100%);
}

.detail-content {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 2.5rem;
    gap: 2.5rem;
}

.detail-poster {
    flex: 0 0 250px;
    aspect-ratio: 2/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.detail-rating {
    color: #ffd700;
    font-weight: bold;
}

.detail-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.detail-overview {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .detail-content {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }
    .detail-poster {
        flex: 0 0 180px;
    }
    .detail-meta, .detail-genres {
        justify-content: center;
    }
    .detail-backdrop::after {
        background: linear-gradient(to top, rgba(20,20,25,1) 0%, rgba(20,20,25,0.8) 60%, rgba(20,20,25,0.4) 100%);
    }
}

/* ============================
   Back to Landing Button
   ============================ */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-right: auto;
}

.back-link:hover {
    color: var(--primary);
    transform: translateX(-3px);
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1200px) {
    .channels-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-grid {
        grid-template-columns: repeat(3, 150px);
    }

    .stats-row {
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1.8rem;
        min-width: 140px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Remove body zoom that breaks pinch-zoom */
    body {
        zoom: 1 !important;
    }

    /* --- CATALOG HERO --- */
    .catalog-hero {
        min-height: auto;
        padding: 8.5rem 4% 2rem;
    }

    .catalog-hero h1 {
        font-size: 2rem;
    }

    .catalog-hero .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* --- STATS ROW: All 3 in one horizontal row --- */
    .stats-row {
        flex-direction: row !important;
        flex-wrap: nowrap;
        gap: 0.6rem;
        width: 100%;
    }

    .stat-card {
        flex: 1;
        min-width: 0;
        padding: 0.8rem 0.5rem;
        border-radius: 14px;
        text-align: center;
    }

    .stat-icon {
        font-size: 1.3rem;
        margin-bottom: 0.4rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    /* --- CATALOG TABS --- */
    .catalog-tabs-section {
        padding: 1.5rem 3% 3rem;
    }

    .catalog-tabs {
        max-width: 100%;
    }

    .catalog-tab {
        padding: 10px 12px;
        font-size: 0.82rem;
        gap: 5px;
    }

    /* --- CHANNELS GRID: Compact 2-column --- */
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .channel-card {
        padding: 0.7rem 0.8rem;
        border-radius: 10px;
        gap: 8px;
    }

    .channel-flag {
        font-size: 1.2rem;
    }

    .channel-name {
        font-size: 0.78rem;
    }

    .channel-count {
        font-size: 0.7rem;
    }

    .channels-total {
        margin-top: 1.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }

    .channels-total span {
        font-size: 1rem;
    }

    /* --- MEDIA GRID --- */
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .media-info {
        padding: 0.5rem 0.6rem 0.7rem;
    }

    .media-title {
        font-size: 0.8rem;
    }

    .media-grid-header {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    /* --- PAGINATION --- */
    .pagination {
        gap: 5px;
        margin-top: 1.2rem;
        flex-wrap: wrap;
    }

    .page-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    /* --- DEMO SECTION --- */
    .demo-section {
        padding: 2rem 4% 1.5rem;
    }

    .demo-video-container {
        border-radius: 12px;
        aspect-ratio: auto;
    }

    .demo-cta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .demo-cta .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* --- DETAIL MODAL --- */
    .detail-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
        align-items: center;
        text-align: center;
    }

    .detail-poster {
        flex: 0 0 auto;
        width: 160px;
        height: 240px;
    }

    .detail-info h2 {
        font-size: 1.6rem;
        text-align: center;
    }

    .detail-meta, .detail-genres {
        justify-content: center;
    }

    .detail-backdrop::after {
        background: linear-gradient(to top, rgba(20,20,25,1) 0%, rgba(20,20,25,0.8) 60%, rgba(20,20,25,0.4) 100%);
    }

    .detail-overview {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-card {
        padding: 0.6rem 0.4rem;
    }

    .channels-grid {
        gap: 0.4rem;
    }

    .channel-card {
        padding: 0.6rem;
    }

    .channel-name {
        font-size: 0.72rem;
    }
}
