* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #2563eb;
    --accent-dark: #1e40af;
    --accent-light: #3b82f6;
    --highlight-color: #3b82f6;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --youtube-red: #FF0000;
    --instagram-purple: #E4405F;
    --tiktok-black: #000000;
    --facebook-blue: #1877F2;
    --baseball-orange: #FF6B35;
    --football-green: #00A859;
    --text-color: rgba(226, 232, 240, 0.95);
    --text-light: rgba(203, 213, 225, 0.8);
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-2: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-3: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.95);
    overflow-x: hidden;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 30%, #2d3560 70%, #0a0e27 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header & Navigation */
header {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #60a5fa;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(226, 232, 240, 0.9);
    transition: all 0.3s;
}

/* Simple Hero Section (Homepage) */
.hero-simple {
    background: var(--white);
    padding: 6rem 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/other/banneritkcolor-min.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-simple .container {
    position: relative;
    z-index: 1;
}

.main-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 2;
}

.main-logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

/* Compact Homepage Hero */
.hero-compact-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    padding: 1.5rem 0 0.75rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: background 1.5s ease-in-out;
}

/* Brand-specific gradient colors */
.hero-compact-home.gradient-media {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 25%, #1d4ed8 50%, #60a5fa 75%, #93c5fd 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-compact-home.gradient-gaming {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 25%, #b91c1c 50%, #f87171 75%, #fca5a5 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-compact-home.gradient-music {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 25%, #7e22ce 50%, #c084fc 75%, #d8b4fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-compact-home.gradient-sports {
    background: linear-gradient(135deg, #10b981 0%, #059669 25%, #047857 50%, #34d399 75%, #6ee7b7 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-compact-home::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    z-index: 1;
    opacity: 0.5;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.banner-background-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/other/banneritkcolor-min.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    filter: blur(3px);
}

.banner-background-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4) 0%, rgba(118, 75, 162, 0.4) 100%);
    z-index: 1;
    transition: background 1s ease-in-out;
}

.hero-compact-home.gradient-media .banner-background-home::after {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(37, 99, 235, 0.4) 100%);
}

.hero-compact-home.gradient-gaming .banner-background-home::after {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, rgba(220, 38, 38, 0.4) 100%);
}

.hero-compact-home.gradient-music .banner-background-home::after {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.4) 0%, rgba(147, 51, 234, 0.4) 100%);
}

.hero-compact-home.gradient-sports .banner-background-home::after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(5, 150, 105, 0.4) 100%);
}

.hero-compact-home .container {
    position: relative;
    z-index: 2;
}

/* Hero Ticker Bar */
.hero-ticker-bar {
    margin-top: 1rem;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.ticker-segments {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.ticker-segment {
    flex: 1;
    height: 100%;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.ticker-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    transition: width 1.5s linear;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    will-change: width;
    transform: translateZ(0); /* Force hardware acceleration */
}

.ticker-segment:not(.active):not(.completed)::before {
    width: 0% !important;
    transition: none;
}

.ticker-segment.active::before {
    width: 100%;
}

.ticker-segment.completed::before {
    width: 100%;
    background: rgba(255, 255, 255, 1);
}

.hero-content-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.main-logo-container-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.2));
    position: relative;
    height: 50px;
}

.logo-carousel-wrapper {
    position: relative;
    width: 120px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-logo-compact.logo-slide {
    max-width: 120px;
    width: auto;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3)) brightness(1.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.main-logo-compact.logo-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.main-logo-compact.logo-slide.exiting {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
}

.hero-text-compact {
    text-align: left;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text-compact h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.2);
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 255, 255, 0.3); }
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Featured Channels Section */
.featured-channels {
    padding: 5rem 0;
    background: var(--white);
}

.featured-channels h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: rgba(226, 232, 240, 0.95);
}

/* Homepage Featured Channels */
.featured-channels-home {
    padding: 2rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 200px);
}

.featured-channels-home .container {
    position: relative;
    z-index: 1;
}

.featured-channels-home h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Channels Carousel */
.channels-carousel-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0 4rem;
}

.channels-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 20px;
}

.channels-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.channel-card-home.carousel-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-sizing: border-box;
}

.channel-card-home.carousel-slide.blurred-card {
    filter: blur(8px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.channel-card-home.carousel-slide.blurred-card .channel-link-home {
    pointer-events: none;
    cursor: not-allowed;
}

.blurred-card {
    filter: blur(8px);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.blurred-card .show-link-button,
.blurred-card a {
    pointer-events: none;
    cursor: not-allowed;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(59, 130, 246, 0.4),
        0 0 0 0 rgba(96, 165, 250, 0.4);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 1) 0%, rgba(59, 130, 246, 1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 12px 32px rgba(59, 130, 246, 0.6),
        0 0 0 4px rgba(96, 165, 250, 0.3);
    transform: translateY(-50%) scale(1.15);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn i {
    color: var(--white);
    font-size: 1.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.carousel-btn-prev {
    left: -1rem;
}

.carousel-btn-next {
    right: -1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(96, 165, 250, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.3);
    transition: transform 0.3s;
}

.carousel-dot:hover {
    border-color: rgba(96, 165, 250, 0.8);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.5);
}

.carousel-dot:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
}

.carousel-dot.active {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    border-color: #60a5fa;
    transform: scale(1.4);
    box-shadow: 0 0 16px rgba(96, 165, 250, 0.8);
}

.carousel-dot.active::before {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(96, 165, 250, 0.2);
}

@media (max-width: 768px) {
    .channels-carousel-wrapper {
        padding: 0 3rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: -0.5rem;
    }
    
    .carousel-btn-next {
        right: -0.5rem;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    .channel-card-home.carousel-slide {
        flex-direction: column;
    }
}

.channel-card-home {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(96, 165, 250, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.channel-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.channel-card-home:hover::before {
    opacity: 1;
}

.channel-card-home:nth-child(1) {
    box-shadow: 0 4px 20px rgba(0, 0, 83, 0.2), 
                0 0 0 2px rgba(0, 0, 83, 0.3);
}

.channel-card-home:nth-child(2) {
    box-shadow: 0 4px 20px rgba(31, 43, 68, 0.2), 
                0 0 0 2px rgba(31, 43, 68, 0.3);
}

.channel-card-home:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.5),
        0 0 0 1px rgba(96, 165, 250, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 60px rgba(96, 165, 250, 0.4);
    border-color: rgba(96, 165, 250, 0.3);
}

.channel-card-home.carousel-slide:hover {
    transform: translateY(-12px) scale(1.02);
}

.channel-card-home:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(31, 43, 68, 0.4), 
                0 0 0 3px rgba(31, 43, 68, 0.5);
}

.channel-image-home {
    width: 200px;
    min-width: 200px;
    background: rgba(15, 23, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.channel-card-home:nth-child(1) .channel-image-home {
    background: rgba(0, 0, 83, 0.05);
}

.channel-card-home:nth-child(2) .channel-image-home {
    background: rgba(31, 43, 68, 0.05);
}

.channel-image-home img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 180px;
}

.channel-info-home {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    position: relative;
    z-index: 1;
}

.channel-info-home h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.channel-card-home:nth-child(1) .channel-info-home h3 {
    color: rgba(226, 232, 240, 0.95);
}

.channel-card-home:nth-child(2) .channel-info-home h3 {
    color: rgba(226, 232, 240, 0.95);
}

.channel-desc-home {
    color: rgba(226, 232, 240, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.channel-stats-home {
    margin-bottom: 1rem;
}

.stat-mini {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.channel-link-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    align-self: flex-start;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.channel-link-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.channel-link-home:hover::before {
    left: 100%;
}

.channel-card-home:nth-child(1) .channel-link-home,
.channel-card-home.carousel-slide:nth-child(1) .channel-link-home {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.channel-card-home:nth-child(1) .channel-link-home:hover,
.channel-card-home.carousel-slide:nth-child(1) .channel-link-home:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
}

.channel-card-home:nth-child(2) .channel-link-home,
.channel-card-home.carousel-slide:nth-child(2) .channel-link-home {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.4);
}

.channel-card-home:nth-child(2) .channel-link-home:hover,
.channel-card-home.carousel-slide:nth-child(2) .channel-link-home:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.6);
}

.view-all-shows {
    text-align: center;
    margin-top: 2rem;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #a78bfa 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: var(--white);
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(96, 165, 250, 0.4),
        0 0 0 0 rgba(96, 165, 250, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.view-all-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.view-all-button:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #7c3aed 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 32px rgba(96, 165, 250, 0.6),
        0 0 0 4px rgba(96, 165, 250, 0.2);
}

.view-all-button:hover::before {
    left: 100%;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.channel-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 
                0 0 0 2px rgba(59, 130, 246, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.channel-card:nth-child(1) {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15), 
                0 0 0 2px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.2);
}

.channel-card:nth-child(2) {
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15), 
                0 0 0 2px rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.2);
}

.channel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25), 
                0 0 0 3px rgba(59, 130, 246, 0.3);
    background: var(--white);
}

.channel-card:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.25), 
                0 0 0 3px rgba(96, 165, 250, 0.3);
}

.channel-image {
    width: 100%;
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.channel-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.channel-card h3 {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.channel-link {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    margin: 1rem 0 2rem;
    transition: all 0.3s;
    position: relative;
}

.channel-link:hover {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

/* Page Hero (for other pages) */
.page-hero {
    background: transparent;
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: 3rem;
    animation: fadeInUp 0.8s ease;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.98);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.2s both;
    margin: 0;
    padding-bottom: 0.5rem;
}

/* Channel Hero */
.channel-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.channel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.channel-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.channel-logo {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    animation: fadeInUp 0.8s ease;
}

.channel-hero h1 {
    font-size: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Compact Channel Hero */
.channel-hero-compact {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* The Windup Theme */
.windup-page .channel-hero-compact {
    background: #000053;
}

.windup-page .channel-content-compact {
    background: #000053;
    color: var(--white);
}

.windup-page .content-section-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.windup-page .content-section-compact h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.windup-page .content-section-compact p {
    color: rgba(255, 255, 255, 0.9);
}

.windup-page .host-item {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.windup-page .host-image-wrapper {
    border-color: rgba(255, 255, 255, 0.3);
}

.windup-page .host-item strong {
    color: var(--white);
}

.windup-page .stats-chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.windup-page .bar-label {
    color: rgba(255, 255, 255, 0.9);
}

.windup-page .total-label {
    color: rgba(255, 255, 255, 0.8);
}

.windup-page .total-value {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

/* Tailgate Talk Theme */
.tailgate-page .channel-hero-compact {
    background: #1f2b44;
}

.tailgate-page .channel-content-compact {
    background: #1f2b44;
    color: var(--white);
}

.tailgate-page .content-section-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tailgate-page .content-section-compact h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.tailgate-page .content-section-compact p {
    color: rgba(255, 255, 255, 0.9);
}

.tailgate-page .host-item {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.tailgate-page .host-image-wrapper {
    border-color: rgba(255, 255, 255, 0.3);
}

.tailgate-page .host-item strong {
    color: var(--white);
}

.tailgate-page .stats-chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.tailgate-page .bar-label {
    color: rgba(255, 255, 255, 0.9);
}

.tailgate-page .total-label {
    color: rgba(255, 255, 255, 0.8);
}

.tailgate-page .total-value {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

/* Couch QB's Theme - Purple & Orange (logo color match) */
.newshow-page .channel-hero-compact {
    background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 50%, #6b21a8 100%);
}

.newshow-page .channel-content-compact {
    background: linear-gradient(180deg, #4c1d95 0%, #5b21b6 30%, #4c1d95 100%);
    color: var(--white);
}

.newshow-page .content-section-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.newshow-page .content-section-compact h2 {
    color: var(--white);
    background: linear-gradient(135deg, #ff9800 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newshow-page .content-section-compact p {
    color: rgba(255, 255, 255, 0.9);
}

.newshow-page .host-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff9800;
    color: rgba(255, 255, 255, 0.9);
}

.newshow-page .host-image-wrapper {
    border-color: rgba(255, 152, 0, 0.5);
}

.newshow-page .host-item strong {
    color: var(--white);
}

.newshow-page .stats-chart-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.newshow-page .bar-label {
    color: rgba(255, 255, 255, 0.9);
}

.newshow-page .total-label {
    color: rgba(255, 255, 255, 0.8);
}

.newshow-page .total-value {
    color: #ff9800;
    background: none;
    -webkit-text-fill-color: #ff9800;
}

.newshow-page .stats-section-prominent h2,
.newshow-page .social-section-prominent h2,
.newshow-page .content-showcase-section h2 {
    color: var(--white);
    background: linear-gradient(135deg, #ff9800 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newshow-page .sponsorship-cta {
    background: linear-gradient(135deg, rgba(91, 33, 182, 0.9) 0%, rgba(76, 29, 149, 0.95) 100%);
    border: 2px solid rgba(255, 152, 0, 0.4);
}

.newshow-page .chart-bar,
.newshow-page .chart-bar-wrapper:nth-child(1) .chart-bar,
.newshow-page .chart-bar-wrapper:nth-child(2) .chart-bar,
.newshow-page .chart-bar-wrapper:nth-child(3) .chart-bar {
    background: linear-gradient(180deg, #ff9800 0%, #f97316 100%);
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.4);
}

.channel-hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.channel-header-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.channel-logo-compact {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
}

.channel-info-compact {
    text-align: left;
}

.channel-info-compact h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.channel-tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Compact Channel Content */
.channel-content-compact {
    padding: 1.5rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.channel-content-compact .container {
    position: relative;
    z-index: 1;
}

.above-fold-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.stats-section-prominent h2,
.social-section-prominent h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* TikTok Video Section */
.tiktok-video-section {
    display: flex;
    flex-direction: column;
}

.tiktok-video-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tiktok-embed-container {
    width: 100%;
    max-width: 325px;
    margin: 0 auto;
    min-height: 600px;
}

.windup-page .tiktok-video-section h2,
.tailgate-page .tiktok-video-section h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.newshow-page .tiktok-video-section h2 {
    background: linear-gradient(135deg, #ff9800 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Compact Social Section */
.social-section-compact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(59, 130, 246, 0.1);
}

.windup-page .social-section-compact {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.tailgate-page .social-section-compact {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.newshow-page .social-section-compact {
    border-top-color: rgba(255, 152, 0, 0.3);
}

.social-section-compact h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
}

.windup-page .social-section-compact h2,
.tailgate-page .social-section-compact h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.social-links-compact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.85rem;
    min-width: 70px;
}

.social-link-compact i {
    font-size: 1.5rem;
}

.social-label-compact {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

.social-link-compact.youtube {
    background: var(--youtube-red);
}

.social-link-compact.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

.social-link-compact.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-compact.instagram:hover {
    transform: translateY(-3px);
}

.social-link-compact.tiktok {
    background: var(--tiktok-black);
}

.social-link-compact.tiktok:hover {
    background: #333;
    transform: translateY(-3px);
}

.social-link-compact.facebook {
    background: var(--facebook-blue);
}

.social-link-compact.facebook:hover {
    background: #1565c0;
    transform: translateY(-3px);
}

.windup-page .stats-section-prominent h2,
.windup-page .social-section-prominent h2,
.windup-page .content-showcase-section h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.tailgate-page .stats-section-prominent h2,
.tailgate-page .social-section-prominent h2,
.tailgate-page .content-showcase-section h2 {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.stats-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card-prominent {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
}

.stat-card-prominent:nth-child(2) {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.stat-card-prominent:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 20px rgba(79, 172, 254, 0.3);
}

.stat-card-prominent:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 20px rgba(67, 233, 123, 0.3);
}

.stat-card-prominent:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.stat-value-prominent {
    font-size: 3rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.stat-label-prominent {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-period-prominent {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Stats Chart */
.stats-chart-container {
    background: rgba(15, 23, 42, 0.6);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(96, 165, 250, 0.2);
    backdrop-filter: blur(10px);
}

.chart-wrapper {
    width: 100%;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 1rem;
    height: 300px;
    padding: 1rem 0;
    position: relative;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.chart-bar {
    width: 100%;
    max-width: 80px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
    min-height: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.chart-bar:nth-child(1) {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.chart-bar-wrapper:nth-child(2) .chart-bar {
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.chart-bar-wrapper:nth-child(3) .chart-bar {
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 2px 10px rgba(79, 172, 254, 0.3);
}

.chart-bar-wrapper:nth-child(4) .chart-bar {
    background: linear-gradient(180deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 2px 10px rgba(67, 233, 123, 0.3);
}

.chart-bar:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    filter: brightness(1.1);
}

.bar-value {
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.bar-label {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.9);
    color: rgba(226, 232, 240, 0.95);
    text-align: center;
}

.chart-total {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(59, 130, 246, 0.1);
    text-align: center;
}

.total-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.total-label {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.total-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links-prominent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-prominent {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.social-link-prominent i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.social-link-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    flex: 1;
}

.social-link-content span:first-child {
    font-weight: 600;
    font-size: 1.1rem;
}

.follower-count {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.social-link-prominent.youtube {
    background: var(--youtube-red);
}

.social-link-prominent.youtube:hover {
    background: #cc0000;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.social-link-prominent.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-prominent.instagram:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.social-link-prominent.tiktok {
    background: var(--tiktok-black);
}

.social-link-prominent.tiktok:hover {
    background: #333;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-link-prominent.facebook {
    background: var(--facebook-blue);
}

.social-link-prominent.facebook:hover {
    background: #1565c0;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.content-grid-above-fold {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0;
    margin-bottom: 2rem;
}

.content-section-compact {
    background: rgba(15, 23, 42, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(10px);
}

.content-section-compact h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.content-section-compact p {
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    margin: 0;
}

.hosts-list-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.host-item {
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--blue-600);
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.6;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.host-image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--blue-100);
    background: var(--bg-light);
}

.host-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.host-info {
    flex: 1;
}

.host-item strong {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.host-alias-compact {
    color: #fff;
    font-style: italic;
}

/* Sponsorship CTA Section */
.sponsorship-cta {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.sponsorship-content {
    max-width: 700px;
    margin: 0 auto;
}

.sponsorship-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sponsorship-content > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.sponsorship-content a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.sponsorship-content a:hover {
    color: var(--blue-100);
}

/* Channel page specific sponsorship styling */
.windup-page .sponsorship-cta {
    background: linear-gradient(135deg, rgba(0, 0, 83, 0.9) 0%, rgba(0, 0, 83, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.windup-page .sponsorship-content .media-kit-link {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
}
.windup-page .sponsorship-content .media-kit-link:hover {
    text-decoration: underline;
}

.tailgate-page .sponsorship-cta {
    background: linear-gradient(135deg, rgba(31, 43, 68, 0.9) 0%, rgba(31, 43, 68, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.tailgate-page.media-kit-page .media-kit-doc-right {
    background: #1f2b44;
}

/* Media Kit Page (e.g. Our Shows / The Windup) */
.media-kit-page .media-kit-actions {
    background: rgba(0, 0, 83, 0.6);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.media-kit-page .media-kit-actions .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.media-kit-actions-bottom .container {
    justify-content: center;
}
.media-kit-back {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.media-kit-back:hover {
    color: var(--white);
}
.media-kit-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--white);
    color: #000053;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.media-kit-download-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.media-kit-download-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}
.media-kit-preview-wrap {
    padding: 2rem 0 4rem;
}
.media-kit-doc {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Split layout: white left (~72%), black right (~28%) */
.media-kit-doc-split {
    display: grid;
    grid-template-columns: 1fr 28%;
    aspect-ratio: 297 / 210;
    min-height: 0;
    max-height: min(80vh, 600px);
}
.media-kit-doc-left {
    background: #fff;
    padding: 1rem 1.25rem 1.25rem;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}
.media-kit-doc-right {
    background: #000053;
    padding: 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 0.5rem;
}
.media-kit-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}
.media-kit-title {
    font-size: 2.1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #000;
    margin: 0;
    background: none;
    -webkit-text-fill-color: #000;
}
.media-kit-title-line {
    flex: 1;
    height: 2px;
    background: #000;
}
.media-kit-bio {
    list-style: disc;
    padding-left: 1rem;
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    line-height: 1.4;
    color: #333;
    flex-shrink: 0;
}
.media-kit-bio li {
    margin-bottom: 0.2rem;
}
.media-kit-social-hosts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}
.media-kit-social-card {
    border: 2px solid #000;
    border-radius: 6px;
    padding: 0.5rem 0.75rem 0.6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.media-kit-box-title {
    grid-column: 1 / -1;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #333;
    margin-bottom: 0.1rem;
}
.media-kit-social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    color: #111;
    font-size: 0.65rem;
    font-weight: 600;
}
.media-kit-social-item i {
    font-size: 2.9rem;
}
.media-kit-social-item.youtube i { color: #ff0000; }
.media-kit-social-item.instagram i { color: #e4405f; }
.media-kit-social-item.tiktok i { color: #000; }
.media-kit-social-item.facebook i { color: #1877f2; }
.media-kit-social-note {
    grid-column: 1 / -1;
    font-size: 0.55rem;
    color: #666;
    margin: 0.1rem 0 0;
    text-align: center;
}
.media-kit-social-stats {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.35rem;
    margin-top: 0.25rem;
    border-top: 1px solid #eee;
    font-size: 0.6rem;
    font-weight: 700;
    color: #333;
}
.media-kit-hosts-box {
    border: 2px solid #000;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.media-kit-hosts-box-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #333;
    margin-bottom: 0.1rem;
}
.media-kit-hosts-list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex: 1;
    justify-content: center;
    align-items: stretch;
}
.media-kit-host {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}
.media-kit-host-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.media-kit-host-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.8rem;
    color: #333;
    text-align: center;
}
.media-kit-host-info strong {
    font-size: 0.95rem;
}
.media-kit-host-alias,
.media-kit-host-role {
    color: #666;
    font-size: 0.65rem;
}
.media-kit-demos {
    margin-bottom: 0.4rem;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}
.media-kit-demos-label {
    background: #000;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.4rem;
    margin: 0 0 0.35rem;
    display: inline-block;
    -webkit-text-fill-color: #fff;
}
.media-kit-demos-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex: 1;
    min-height: 0;
}
.media-kit-chart {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.media-kit-chart-title {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.1rem;
}
.media-kit-bar-wrap {
    display: grid;
    grid-template-columns: 42px 1fr 32px;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
}
.media-kit-bar-label {
    color: #333;
}
.media-kit-bar {
    height: 10px;
    background: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
}
.media-kit-bar-fill {
    height: 100%;
    background: #000;
    border-radius: 2px;
    min-width: 4px;
}
.media-kit-bar-pct {
    color: #666;
    font-size: 0.55rem;
    text-align: right;
}
.media-kit-growth {
    margin-bottom: 0.4rem;
    flex-shrink: 0;
}
.media-kit-growth .media-kit-demos-label {
    margin-bottom: 0.35rem;
}
.media-kit-growth-charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.media-kit-trend-chart {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.media-kit-growth-chart-title,
.media-kit-trend-chart .media-kit-growth-chart-title {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.1rem;
}
.media-kit-line-chart-wrap {
    position: relative;
    height: 52px;
    padding: 0 2px;
}
.media-kit-line-chart {
    width: 100%;
    height: 100%;
    display: block;
}
.media-kit-line-values {
    display: flex;
    justify-content: space-between;
    gap: 0.15rem;
    padding: 0.2rem 0 0.1rem;
    font-size: 0.55rem;
    font-weight: 700;
    color: #000;
}
.media-kit-line-values span {
    flex: 1;
    text-align: center;
    min-width: 0;
}
.media-kit-trend-xlabels {
    display: flex;
    justify-content: space-between;
    gap: 0.15rem;
    padding: 0.05rem 0 0;
    font-size: 0.5rem;
    font-weight: 600;
    color: #666;
}
.media-kit-trend-xlabels span {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.media-kit-partners {
    padding-top: 0.35rem;
    border-top: 1px solid #ddd;
    flex-shrink: 0;
}
.media-kit-partners-right {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
}
.media-kit-partners-right .media-kit-partner-cta {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 0.35rem;
    font-size: 0.6rem;
}
.media-kit-partners-right .media-kit-partner-cta a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}
.media-kit-partners-right .media-kit-partner-cta a:hover {
    text-decoration: underline;
}
.media-kit-partner-cta {
    font-size: 0.65rem;
    color: #333;
    margin: 0 0 0.25rem;
}
.media-kit-partner-cta a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}
.media-kit-partner-cta a:hover {
    text-decoration: underline;
}
.media-kit-partner-logo {
    max-height: 20px;
    width: auto;
}
.media-kit-partners-right .media-kit-partner-logo {
    filter: brightness(0) invert(1);
    max-height: 22px;
}
.media-kit-brand {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 0.5rem;
}
.media-kit-hero-image-wrap {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    margin-left: 0;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 8%;
    box-sizing: border-box;
}
.media-kit-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.media-kit-brand-work {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.media-kit-brand-work-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
}
.media-kit-sponsor-logo {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .media-kit-preview-wrap {
        padding: 1rem 0 2rem;
    }
    .media-kit-preview-wrap .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .media-kit-doc {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    .media-kit-doc-split {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
        aspect-ratio: auto;
    }
    .media-kit-doc-left {
        overflow: visible;
        min-height: auto;
        padding: 1.25rem 1rem 1.5rem;
    }
    .media-kit-doc-right {
        order: -1;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        padding: 1.5rem 1rem;
        flex-wrap: nowrap;
    }
    .media-kit-title {
        font-size: 1.65rem;
    }
    .media-kit-bio {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    .media-kit-hero-image-wrap {
        margin-left: 0;
        width: 140px;
        height: 140px;
        max-width: 50vw;
    }
    .media-kit-demos-row {
        grid-template-columns: 1fr;
    }
    .media-kit-growth-charts {
        grid-template-columns: 1fr;
    }
    .media-kit-social-hosts-row {
        grid-template-columns: 1fr;
    }
    .media-kit-social-card {
        padding: 0.75rem 1rem;
    }
    .media-kit-box-title,
    .media-kit-hosts-box-title {
        font-size: 0.75rem;
    }
    .media-kit-social-item {
        font-size: 0.75rem;
    }
    .media-kit-social-item i {
        font-size: 2.25rem;
    }
    .media-kit-host-img {
        width: 80px;
        height: 80px;
    }
    .media-kit-host-info strong {
        font-size: 0.9rem;
    }
    .media-kit-demos-label {
        font-size: 0.65rem;
    }
    .media-kit-bar-wrap {
        grid-template-columns: minmax(0, 1fr) 1fr minmax(0, 2.5rem);
        gap: 0.35rem;
        font-size: 0.7rem;
    }
    .media-kit-bar-pct {
        font-size: 0.65rem;
    }
    .media-kit-partners-right .media-kit-partner-cta {
        font-size: 0.7rem;
        text-align: center;
    }
    .media-kit-actions .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .media-kit-doc-split {
        display: flex;
        flex-direction: column;
    }
    .media-kit-doc-left,
    .media-kit-doc-right {
        min-width: 0;
    }
    .media-kit-title {
        font-size: 1.4rem;
    }
    .media-kit-hero-image-wrap {
        width: 120px;
        height: 120px;
    }
    .media-kit-hosts-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Coming Soon Banner */
.coming-soon-banner {
    margin: 2rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    border: 3px solid rgba(255, 193, 7, 0.4);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.2);
}

.coming-soon-content {
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-content i {
    font-size: 3.5rem;
    color: #ff9800;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 1rem;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: #ff9800;
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: rgba(226, 232, 240, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Content Showcase Section */
.content-showcase-section {
    margin: 2rem 0;
    padding: 2rem 0;
}

.content-showcase-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: center;
}

.windup-page .content-showcase-section,
.tailgate-page .content-showcase-section,
.newshow-page .content-showcase-section {
    background: transparent;
}

.content-embeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .content-embeds-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.embed-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.embed-wrapper:has(.instagram-embed) {
    justify-content: center;
}

.embed-container {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: var(--bg-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.embed-container.instagram-embed {
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.embed-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.youtube-embed {
    aspect-ratio: 16 / 9;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tiktok-embed {
    min-height: 600px;
    max-width: 325px;
    margin: 0 auto;
}

.instagram-embed {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    min-height: 500px;
}

.instagram-embed blockquote {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 540px !important;
}

.instagram-embed iframe {
    width: 100% !important;
    max-width: 540px !important;
    min-width: 326px !important;
}

/* Our Shows Page */
.shows-showcase {
    padding: 3rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}


.shows-showcase .container {
    position: relative;
    z-index: 1;
}

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

@media (max-width: 768px) {
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.show-card-featured {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(96, 165, 250, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(96, 165, 250, 0.15);
}

.show-card-featured:nth-child(1) {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15), 
                0 0 0 2px rgba(59, 130, 246, 0.2);
}

.show-card-featured:nth-child(2) {
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.15), 
                0 0 0 2px rgba(96, 165, 250, 0.2);
}

.show-card-featured:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.5),
        0 0 0 1px rgba(96, 165, 250, 0.4);
    border-color: rgba(96, 165, 250, 0.3);
}

.show-card-featured:nth-child(2):hover {
    box-shadow: 0 15px 40px rgba(96, 165, 250, 0.25), 
                0 0 0 3px rgba(96, 165, 250, 0.3);
}

.show-image-large {
    width: 100%;
    height: 160px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.show-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 220px;
}

.show-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.show-content h2 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
}

.show-description {
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.show-stats-preview {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.stat-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-badge.coming-soon-badge {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: #ff9800;
}

.social-icons-preview {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-icon-preview.youtube {
    background: var(--youtube-red);
}

.social-icon-preview.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.social-icon-preview.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-preview.instagram:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.social-icon-preview.tiktok {
    background: var(--tiktok-black);
}

.social-icon-preview.tiktok:hover {
    background: #333;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-icon-preview.facebook {
    background: var(--facebook-blue);
}

.social-icon-preview.facebook:hover {
    background: #1565c0;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.show-link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.show-link-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.show-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
    align-items: center;
}
.show-links-row .show-link-button {
    margin-top: 0;
}
.show-link-secondary {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
.show-link-secondary:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Channel Content */
.channel-content {
    padding: 2rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.channel-content .container {
    position: relative;
    z-index: 1;
}

.channel-content .content-section:nth-child(even) {
    background: rgba(15, 23, 42, 0.5);
    padding: 1.5rem 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
    border: 1px solid rgba(96, 165, 250, 0.15);
    backdrop-filter: blur(10px);
}

.content-section {
    margin-bottom: 4rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    font-weight: 700;
}

.channel-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.95);
    margin-bottom: 2rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 0.5rem;
}

/* Hosts Grid */
.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.host-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.host-card:nth-child(2) {
    border-color: rgba(96, 165, 250, 0.15);
}

.host-card:nth-child(3) {
    border-color: rgba(79, 172, 254, 0.15);
}

.host-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: var(--white);
}

.host-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.host-alias {
    font-style: italic;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.host-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.stat-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    box-shadow: 0 4px 15px rgba(67, 233, 123, 0.3);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.stat-period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.social-link i {
    font-size: 1.25rem;
}

.social-link.youtube {
    background: var(--youtube-red);
}

.social-link.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
}

.social-link.tiktok {
    background: var(--tiktok-black);
}

.social-link.tiktok:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-link.facebook {
    background: var(--facebook-blue);
}

.social-link.facebook:hover {
    background: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* What We Do Page */
.page-content {
    padding: 0.5rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.page-content .container {
    position: relative;
    z-index: 1;
}

.page-content .content-section {
    padding: 0.25rem 0;
}

.page-content .content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 41, 59, 0.5) 100%);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    margin: 0.25rem 0;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-left: 4px solid rgba(96, 165, 250, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.page-content .content-section:nth-child(odd) {
    padding: 0.25rem 0;
    background: transparent;
}

.page-content .content-section h2 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-content .content-section h3 {
    font-size: 1.3rem;
    color: rgba(226, 232, 240, 0.95);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.page-content .content-section.service-card h3 {
    font-size: 1.25rem;
    text-align: center;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(96, 165, 250, 0.2) !important;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-radius: 15px;
    border: 1px solid rgba(96, 165, 250, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon-wrapper::before {
    opacity: 1;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: #60a5fa;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon-wrapper i {
    transform: scale(1.1);
    color: #93c5fd;
}

.page-content .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, auto) !important;
    gap: 1rem;
    margin: 1rem 0;
    max-width: 100%;
    width: 100%;
}

.page-content .services-grid .service-card {
    grid-column: span 1;
    width: 100%;
}

.page-content .content-section.service-card {
    padding: 1.25rem 1rem;
    margin: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.6) 100%);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-left: 4px solid rgba(96, 165, 250, 0.6);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .page-content .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
}

.intro-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 0.25rem;
    padding: 0.5rem 1rem !important;
    margin-top: -0.5rem;
}

.intro-text {
    font-size: 0.8rem !important;
    line-height: 1.5;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 0.4rem;
    word-break: normal;
    hyphens: none;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.section-header i {
    font-size: 2rem;
    color: var(--blue-600);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    padding: 1rem;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    margin: 0;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

.section-intro {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.6;
}

.page-content .content-section.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid .service-item:nth-child(4),
    .services-grid .service-item:nth-child(5) {
        grid-column: span 1;
    }
}

.services-grid .service-item:nth-child(1),
.services-grid .service-item:nth-child(2),
.services-grid .service-item:nth-child(3) {
    grid-column: span 2;
}

.services-grid .service-item:nth-child(4) {
    grid-column: 2 / 4;
}

.services-grid .service-item:nth-child(5) {
    grid-column: 4 / 6;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-item:nth-child(1),
    .services-grid .service-item:nth-child(2),
    .services-grid .service-item:nth-child(3),
    .services-grid .service-item:nth-child(4),
    .services-grid .service-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid .service-item:nth-child(4),
    .services-grid .service-item:nth-child(5) {
        grid-column: span 1;
    }
    
    .services-grid .service-item:nth-child(4) {
        grid-column: 1;
    }
    
    .services-grid .service-item:nth-child(5) {
        grid-column: 2;
    }
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.services-list li {
    display: flex;
    align-items: flex-start;
    padding: 0.4rem 0;
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li i {
    color: #60a5fa;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(239, 246, 255, 0.5) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    transition: all 0.3s;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--blue-600);
    margin-bottom: 1rem;
    display: block;
}

.service-item h4 {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.95);
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}

.platforms-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.platform-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.6) 0%, var(--white) 100%);
    border-radius: 15px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
    min-width: 120px;
    max-width: 100%;
    box-sizing: border-box;
}

.platform-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.4);
}

.platform-icon i {
    font-size: 2.5rem;
}

.platform-icon:nth-child(1) i {
    color: #FF0000;
}

.platform-icon:nth-child(2) i {
    color: rgba(255, 255, 255, 0.9);
}

.platform-icon:nth-child(3) i {
    color: #E4405F;
}

.platform-icon:nth-child(4) i {
    color: #1877F2;
}

.platform-icon span {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(226, 232, 240, 0.95);
}

.work-with-us-section {
    margin: 2rem 0 1rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(96, 165, 250, 0.3);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.work-with-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.work-with-us-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.work-with-us-content i {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.work-with-us-content h2 {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.work-with-us-content p {
    color: rgba(226, 232, 240, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.work-email-link {
    display: inline-block;
    color: #60a5fa;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.work-email-link:hover {
    color: #93c5fd;
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.page-content .content-section h3 {
    font-size: 1.5rem;
    color: rgba(226, 232, 240, 0.95);
    margin-bottom: 1rem;
    font-weight: 600;
}

.channels-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.12);
}

@media (max-width: 768px) {
    .channels-preview {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

.channel-preview-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}

.channel-preview-card:nth-child(2) {
    border-color: rgba(96, 165, 250, 0.15);
}

.channel-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.channel-preview-card h3 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.channel-preview-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: transparent;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-intro {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.contact-email-section {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.email-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(20px);
}

.email-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.4);
}

.email-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.email-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(226, 232, 240, 0.95);
    font-weight: 700;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    word-break: break-all;
}

.email-link:hover {
    color: #93c5fd;
    transform: scale(1.05);
}

.contact-opportunities {
    margin-top: 4rem;
}

.contact-opportunities h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.opportunity-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(20px);
}

.opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.opportunity-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.opportunity-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.opportunity-card p {
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Jobs Page */
.jobs-section {
    padding: 1.5rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.jobs-section .container {
    position: relative;
    z-index: 1;
}

.jobs-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
    padding: 1.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.jobs-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.jobs-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.jobs-intro {
    font-size: 1.25rem;
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.jobs-message {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.jobs-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(59, 130, 246, 0.1);
}

.jobs-cta p {
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.jobs-contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.jobs-contact-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-form button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    color: rgba(226, 232, 240, 0.8);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease-in-out;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        z-index: 1000;
        border-top: 1px solid rgba(96, 165, 250, 0.2);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(96, 165, 250, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1.25rem 2rem;
        color: rgba(226, 232, 240, 0.95) !important;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
    }

    .nav-menu a:hover {
        background: rgba(96, 165, 250, 0.15);
        color: #60a5fa !important;
        padding-left: 2.5rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        padding: 0.5rem;
        margin-right: -0.5rem;
    }

    .hamburger span {
        background: rgba(226, 232, 240, 0.95);
        width: 28px;
        height: 3px;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .main-logo {
        max-width: 300px;
    }

    .hero-simple {
        padding: 4rem 0;
        min-height: 50vh;
    }

    .page-hero h1,
    .channel-hero h1 {
        font-size: 2rem;
    }

    .channel-logo {
        max-width: 200px;
    }

    .channels-grid,
    .channels-preview {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    /* Compact channel page responsive */
    .channel-header-compact {
        flex-direction: column;
        text-align: center;
    }

    .channel-info-compact {
        text-align: center;
    }

    .channel-info-compact h1 {
        font-size: 2rem;
    }

    .above-fold-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tiktok-embed-container {
        max-width: 100%;
        min-height: 500px;
    }

    .social-links-compact {
        gap: 0.75rem;
    }

    .social-link-compact {
        padding: 0.6rem 0.8rem;
        min-width: 60px;
    }

    .social-link-compact i {
        font-size: 1.25rem;
    }

    .stats-grid-compact {
        grid-template-columns: 1fr;
    }

    .content-grid,
    .content-grid-above-fold {
        grid-template-columns: 1fr;
    }

    .host-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .host-image-wrapper {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    /* Chart responsive */
    .chart-bars {
        height: 250px;
        gap: 0.5rem;
    }

    .chart-bar {
        max-width: 60px;
    }

    .bar-value {
        font-size: 0.75rem;
    }

    .bar-label {
        font-size: 0.8rem;
    }

    .total-value {
        font-size: 1.5rem;
    }

    .stat-value-prominent {
        font-size: 2.5rem;
    }

    .social-link-prominent {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }

    /* Our Shows page responsive */
    .shows-grid {
        grid-template-columns: 1fr;
    }

    .show-content h2 {
        font-size: 1.75rem;
    }

    .show-description {
        font-size: 1rem;
    }

    /* Content embeds responsive */
    .content-embeds-grid {
        grid-template-columns: 1fr;
    }

    .content-showcase-section h2 {
        font-size: 1.75rem;
    }

    .sponsorship-cta {
        margin: 1.5rem 0;
        padding: 1.25rem 1.5rem;
    }

    .sponsorship-content h3 {
        font-size: 1.1rem;
    }

    .sponsorship-content > p {
        font-size: 0.9rem;
    }

    /* Homepage compact responsive */
    .hero-content-compact {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-compact {
        text-align: center;
    }

    .hero-compact-home {
        padding: 1.5rem 0;
    }
    
    .hero-content-compact {
        gap: 1.5rem;
    }

    .hero-text-compact h1 {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .main-logo-container-compact {
        height: 60px;
    }
    
    .logo-carousel-wrapper {
        width: 140px;
        height: 60px;
    }
    
    .main-logo-compact.logo-slide {
        max-width: 140px;
        height: 60px;
    }

    .channel-card-home {
        flex-direction: column;
    }

    .channel-image-home {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .channel-image-home img {
        max-width: 250px;
    }
    
    .channels-carousel-wrapper {
        padding: 0 1.5rem;
    }

    /* Contact page responsive */
    .email-card {
        padding: 2rem 1.5rem;
    }

    .email-link {
        font-size: 1.2rem;
    }

    .opportunities-grid {
        grid-template-columns: 1fr;
    }

    .contact-opportunities h3 {
        font-size: 1.5rem;
    }
    
    .page-content .content-section:nth-child(even) {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .intro-section {
        padding: 1.5rem 1rem !important;
    }
    
    .channels-preview {
        padding: 1.5rem 1rem;
    }
    
    .section-header {
        flex-wrap: wrap;
    }
    
    .section-header i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        padding: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        word-break: break-word;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .services-grid .service-item:nth-child(4),
    .services-grid .service-item:nth-child(5) {
        grid-column: 1 !important;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .service-item h4 {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .platforms-showcase {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .platform-icon {
        min-width: auto;
        width: calc(50% - 0.5rem);
        max-width: 150px;
        padding: 1.25rem 1rem;
        box-sizing: border-box;
    }
    
    .work-with-us-section {
        padding: 2rem 1.5rem;
        margin: 2.5rem 0 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .work-with-us-content {
        max-width: 100%;
        width: 100%;
    }
    
    .work-email-link {
        font-size: 1.1rem;
        word-break: break-all;
    }
    
    .jobs-content {
        padding: 2rem 1.5rem;
    }
    
    .embed-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .embed-container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .instagram-embed {
        max-width: 100%;
        width: 100%;
    }
    
    .instagram-embed blockquote {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .instagram-embed iframe {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .page-content .content-section h3 {
        font-size: 1.25rem;
        word-wrap: break-word;
    }
    
    .intro-text {
        font-size: 0.8rem !important;
        word-wrap: normal;
    }
}
