* {
    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: #1f2937;
    --text-light: #6b7280;
    --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: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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;
}

.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: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--blue-600);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-600);
    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: var(--text-color);
    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, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 50%, rgba(96, 165, 250, 0.1) 100%);
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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.8;
    z-index: 0;
}

.banner-background-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-compact-home .container {
    position: relative;
    z-index: 2;
}

.hero-content-compact {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.main-logo-container-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

.main-logo-compact {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5)) brightness(1.1);
}

.hero-text-compact {
    text-align: left;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-text-compact h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* 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: var(--text-color);
}

/* Homepage Featured Channels */
.featured-channels-home {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, var(--blue-50) 0%, rgba(59, 130, 246, 0.1) 50%, var(--blue-50) 100%);
}

.featured-channels-home h2 {
    text-align: center;
    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;
    font-weight: 700;
}

.channels-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .channels-grid-home {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.channel-card-home {
    background: linear-gradient(135deg, var(--white) 0%, rgba(239, 246, 255, 0.7) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 83, 0.2), 
                0 0 0 2px rgba(0, 0, 83, 0.3);
    transition: all 0.3s;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.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(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 83, 0.4), 
                0 0 0 3px rgba(0, 0, 83, 0.5);
}

.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(0, 0, 83, 0.05);
    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: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.channel-info-home h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #000053;
    font-weight: 700;
}

.channel-card-home:nth-child(1) .channel-info-home h3 {
    color: #000053;
}

.channel-card-home:nth-child(2) .channel-info-home h3 {
    color: #1f2b44;
}

.channel-desc-home {
    color: var(--text-light);
    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.75rem 1.5rem;
    background: #000053;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 83, 0.3);
    align-self: flex-start;
    margin-top: auto;
}

.channel-card-home:nth-child(1) .channel-link-home {
    background: #000053;
    box-shadow: 0 4px 15px rgba(0, 0, 83, 0.3);
}

.channel-card-home:nth-child(1) .channel-link-home:hover {
    background: #000066;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 83, 0.4);
}

.channel-card-home:nth-child(2) .channel-link-home {
    background: #1f2b44;
    box-shadow: 0 4px 15px rgba(31, 43, 68, 0.3);
}

.channel-card-home:nth-child(2) .channel-link-home:hover {
    background: #2a3a5a;
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(31, 43, 68, 0.4);
}

.view-all-shows {
    text-align: center;
    margin-top: 2rem;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    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);
}

.view-all-button:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.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: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-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;
}

.page-hero h1 {
    font-size: 3rem;
    animation: fadeInUp 0.8s ease;
    margin-bottom: 1rem;
}

.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;
}

/* Channel Hero */
.channel-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1e40af 100%);
    color: var(--white);
    padding: 4rem 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);
}

.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: var(--white);
}

.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);
}

/* 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);
}

.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: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.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: var(--text-color);
    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: var(--text-light);
    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: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.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: var(--text-color);
    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: var(--text-color);
    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: var(--accent-color);
    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);
}

.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);
}

/* 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 {
    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: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 50%, var(--white) 100%);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .shows-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.show-card-featured {
    background: linear-gradient(135deg, var(--white) 0%, rgba(239, 246, 255, 0.4) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.12), 
                0 0 0 2px rgba(59, 130, 246, 0.15);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.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 15px 40px rgba(59, 130, 246, 0.25), 
                0 0 0 3px rgba(59, 130, 246, 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: 300px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.show-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 400px;
}

.show-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-content h2 {
    font-size: 2rem;
    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: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.7;
    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;
}

.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);
}

/* Channel Content */
.channel-content {
    padding: 5rem 0;
    background: var(--white);
}

.channel-content .content-section:nth-child(even) {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.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: var(--text-color);
    margin-bottom: 2rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* 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: 3rem 0;
    background: linear-gradient(180deg, var(--blue-50) 0%, rgba(59, 130, 246, 0.08) 30%, var(--blue-50) 60%, var(--white) 100%);
}

.page-content .content-section {
    padding: 1.5rem 0;
}

.page-content .content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.2) 100%);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--blue-600);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.page-content .content-section:nth-child(odd) {
    padding: 2rem 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: 1rem;
}

.page-content .content-section h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 2rem 1.5rem !important;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    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: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.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;
    }
}

.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: var(--text-color);
    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: #000000;
}

.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: var(--text-color);
}

.work-with-us-section {
    margin: 4rem 0 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.work-with-us-content {
    max-width: 600px;
    margin: 0 auto;
}

.work-with-us-content i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: block;
}

.work-with-us-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    background: none;
    -webkit-text-fill-color: var(--white);
}

.work-with-us-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.work-email-link {
    display: inline-block;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s;
    margin-top: 0.5rem;
}

.work-email-link:hover {
    color: var(--blue-100);
}

.page-content .content-section h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    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, var(--white) 0%, rgba(239, 246, 255, 0.5) 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.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: var(--white);
}

.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: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 50%, var(--white) 100%);
}

.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: var(--text-color);
    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, var(--white) 0%, rgba(239, 246, 255, 0.8) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
    max-width: 500px;
    width: 100%;
}

.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: var(--primary-color);
    font-weight: 700;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    word-break: break-all;
}

.email-link:hover {
    color: var(--highlight-color);
    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, var(--white) 0%, rgba(239, 246, 255, 0.6) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.12);
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.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: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Jobs Page */
.jobs-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 30%, var(--white) 100%);
}

.jobs-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    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: var(--text-color);
    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: var(--text-color);
    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: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* 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: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .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-text-compact h1 {
        font-size: 2rem;
    }

    .main-logo-compact {
        max-width: 200px;
    }

    .channels-grid-home {
        grid-template-columns: 1fr;
    }

    .channel-card-home {
        flex-direction: column;
    }

    .channel-image-home {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }

    .channel-image-home img {
        max-width: 250px;
    }

    /* 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: 1.1rem;
        word-wrap: break-word;
    }
}
