@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Roboto:wght@400;700&display=swap');

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

:root {
    --red-primary: #c8102e;
    --red-dark: #9b0d22;
    --red-light: #f28b82;
    --bg-dark: #1c2526;
    --bg-card: #2a3439;
    --bg-section: #232b2b;
    --bg-elevated: #354040;
    --text-primary: #f5f5f5;
    --text-secondary: #b0b7b7;
    --text-muted: #6e7b7b;
    --border-color: #3c4a4a;
    --border-light: #5a6a6a;
    --accent-gold: #d4a017;
    --success: #2e7d32;
    --warning: #ff8f00;
    --dolphins-aqua: #00a3c4;
    --dolphins-orange: #f58220;
}

body {
    font-family: 'Oswald', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Gritty texture overlay */
.grit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><filter id="texture"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" result="noise"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/></filter><rect width="100%" height="100%" filter="url(#texture)"/></svg>');
    z-index: 1000;
}


.contact-section {
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(200, 16, 46, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}


.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: clamp(70px, 9vw, 110px) 0;
}

/* Header with bold, rugged style */
header {
    position: sticky;
    top: 0;
    background: rgba(28, 37, 38, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border-color);
    padding: 18px 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(28, 37, 38, 0.95);
    border-bottom: 2px solid var(--red-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-f {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--red-primary);
    text-shadow: 0 0 15px rgba(200, 16, 46, 0.5);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Logo state management */
.logo-full {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.logo-compact {
    display: none;
    transition: opacity 0.3s ease;
}

header.scrolled .logo-full {
    display: none;
}

header.scrolled .logo-compact {
    display: inline-block;
}

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    border-radius: 6px;
    background: rgba(200, 16, 46, 0.1);
    transition: background 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(200, 16, 46, 0.2);
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background: var(--red-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

nav {
    display: flex;
    gap: 6px;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-primary);
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: var(--red-primary);
    background: rgba(200, 16, 46, 0.1);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(28, 37, 38, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--border-color);
    padding: 20px 0;
    z-index: 99;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-nav.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.mobile-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--border-color);
    background: rgba(42, 52, 57, 0.6);
}

.mobile-nav a:hover {
    background: rgba(200, 16, 46, 0.2);
    color: var(--red-primary);
    border-color: var(--red-primary);
}

/* Hero section */
.hero {
    background: 
        linear-gradient(135deg, rgba(28, 37, 38, 0.85) 0%, rgba(35, 43, 43, 0.85) 100%),
        url('../images/shattered-hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 80vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(200, 16, 46, 0.15) 0%, transparent 50%);
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    padding: 0 28px;
    width: 100%;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(200, 16, 46, 0.2);
    border: 2px solid var(--red-primary);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(200, 16, 46, 0.3);
    transform: scale(1.05);
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(200, 16, 46, 0.5);
    text-align: center;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.episode-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

.episode-links-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.episode-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: rgba(42, 52, 57, 0.7);
}

.episode-link:hover {
    color: var(--text-primary);
    border-color: var(--red-primary);
    background: rgba(200, 16, 46, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.episode-link svg {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.episode-link:hover svg {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.5);
}

.btn-secondary {
    background: rgba(245, 245, 245, 0.1);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
}

.btn-secondary:hover {
    background: rgba(200, 16, 46, 0.2);
    border-color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section styling */
.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 70px);
}

.section-title {
    font-size: clamp(2.2rem, 5.5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.callout-text {
    background: rgba(200, 16, 46, 0.15);
    border: 2px solid var(--red-primary);
    border-radius: 12px;
    padding: 20px 28px;
    margin: 20px auto 40px;
    max-width: 600px;
    text-align: center;
}

.callout-text p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--red-primary);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--accent-gold));
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-description {
    font-family: 'Roboto', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 24px;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.card-action:hover {
    background: linear-gradient(135deg, var(--red-dark), var(--red-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
}

.voice-note-card {
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 2px solid var(--accent-gold);
}

.voice-note-card .card-icon {
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
}

.disclaimer {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 40px auto 0 auto; /* top auto bottom auto */
    max-width: 800px;
}

.disclaimer p {
    font-family: 'Roboto', sans-serif;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-elevated);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-link:hover {
    background: rgba(200, 16, 46, 0.2);
    border-color: var(--red-primary);
    color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 800px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 800px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 50px;
            }
        }

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-card {
        padding: 28px 24px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Recording animation for voice note button */
.recording {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(200, 16, 46, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: var(--red-primary);
    transform: translateX(-50%);
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards */
.card {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--red-primary);
}

.card-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--accent-gold));
    background-size: 200% 100%;
    animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Coming Soon Section */
.coming-soon-main {
    margin-bottom: 60px;
}

.coming-soon-content {
    text-align: center;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red-primary), var(--red-dark));
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(200, 16, 46, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(200, 16, 46, 0.6); }
}

.coming-soon-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.coming-soon-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(42, 52, 57, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-align: left;
}

.feature:hover {
    background: rgba(200, 16, 46, 0.1);
    border-color: var(--red-primary);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1rem;
    color: var(--red-primary);
    font-weight: 900;
    margin-top: 2px;
    flex-shrink: 0;
}

.preview-quote {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.preview-quote blockquote {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    padding: 24px;
    background: rgba(42, 52, 57, 0.4);
    border-left: 4px solid var(--red-primary);
    border-radius: 8px;
    margin: 0;
    position: relative;
}

.preview-quote blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--red-primary);
    position: absolute;
    top: -5px;
    left: 10px;
    font-family: Georgia, serif;
}

.preview-quote blockquote::after {
    content: '"';
    font-size: 3rem;
    color: var(--red-primary);
    position: absolute;
    bottom: -25px;
    right: 15px;
    font-family: Georgia, serif;
}

/* Clips Section */
.clips-section {
    margin: 80px 0 60px;
    text-align: center;
}

.clips-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.clips-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
    gap: 24px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.clip-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 200px;
    height: 400px;
}

.clip-card:hover {
    transform: translateY(-6px);
    border-color: var(--red-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.clip-card.video-loading {
    pointer-events: none;
}

.clip-embed-container {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.clip-embed-container.loading-video {
    opacity: 0.7;
}

.clip-embed-container.video-loaded {
    cursor: default;
}

.clip-embed-container.video-loaded iframe {
    border-radius: 16px 16px 0 0;
}

.clip-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-section), var(--bg-elevated));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.clip-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.clip-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise"/><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/></filter><rect width="100%" height="100%" filter="url(#grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.clip-play-icon {
    color: var(--red-primary);
    background: rgba(200, 16, 46, 0.2);
    padding: 16px;
    border-radius: 50%;
    border: 2px solid var(--red-primary);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.clip-card:hover .clip-play-icon {
    background: var(--red-primary);
    color: var(--text-primary);
    transform: scale(1.1);
}

.clip-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.clip-info {
    padding: 16px;
    text-align: left;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clip-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.clip-platform {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Follow Section */
.follow-section {
    text-align: center;
    padding: 40px;
    background: rgba(42, 52, 57, 0.4);
    border: 2px solid var(--border-color);
    border-radius: 16px;
}

.follow-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.follow-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.social-follow-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-follow-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    min-width: 120px;
    transition: all 0.3s ease;
}

.social-follow-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.social-follow-link.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.social-follow-link.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
    color: #e4405f;
}

.social-follow-link.tiktok:hover {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.follow-count {
    font-size: 0.8rem;
    padding: 6px 12px;
    background: rgba(200, 16, 46, 0.2);
    border-radius: 12px;
    color: var(--red-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Episodes */
.episode-grid {
    display: grid;
    gap: 28px;
}

.episode-card {
    padding: 40px;
}

.episode-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.episode-badge {
    background: var(--red-primary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.episode-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.episode-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.4;
}

.episode-topics {
    font-family: 'Roboto', sans-serif;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.episode-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Picks Section */
.featured-pick {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
    border: 2px solid var(--red-primary);
    border-radius: 16px;
    margin-bottom: 48px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(200, 16, 46, 0.2);
}

.featured-pick-header {
    background: var(--red-primary);
    padding: 16px 24px;
    text-align: center;
}

.featured-pick-header h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-pick-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    padding: 32px;
    align-items: center;
}

.featured-bet-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.featured-bet-details {
    margin-bottom: 20px;
}

.bet-line {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
}

.bet-line .highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

.bet-picks {
    display: grid;
    gap: 8px;
}

.picker {
    font-size: 1rem;
    color: var(--text-secondary);
    font-family: 'Roboto', sans-serif;
}

.picker strong {
    color: var(--text-primary);
    font-weight: 700;
}

.featured-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    margin-top: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--red-primary);
}

.featured-pick-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.odds-display {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Oswald', sans-serif;
    text-shadow: 0 0 10px rgba(212, 160, 23, 0.3);
}

/* Organized Picks Grid */
.picks-grid-organized {
    display: grid;
    gap: 32px;
    margin-bottom: 48px;
}

.picks-category {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.picks-category:hover {
    border-color: var(--red-primary);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.category-title {
    background: linear-gradient(135deg, var(--bg-section), var(--bg-elevated));
    padding: 16px 24px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}

.picks-list {
    padding: 0;
}

.pick-row {
    display: grid;
    grid-template-columns: 2fr 1fr 100px 120px;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(60, 74, 74, 0.3);
    transition: background 0.2s ease;
}

.pick-row:last-child {
    border-bottom: none;
}

.pick-row:hover {
    background: rgba(200, 16, 46, 0.05);
}

.pick-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pick-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pick-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Roboto', sans-serif;
}

.pick-choice {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.pick-odds {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.pick-confidence {
    text-align: center;
}

.confidence-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--accent-gold);
    color: var(--bg-dark);
}

.confidence-badge.high {
    background: var(--success);
    color: var(--text-primary);
}

.confidence-badge.medium {
    background: var(--warning);
    color: var(--bg-dark);
}

.confidence-badge.wild {
    background: var(--red-primary);
    color: var(--text-primary);
}

/* Track Record Section */
.track-record {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.track-record h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
}

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

.record-item {
    padding: 20px;
    background: rgba(42, 52, 57, 0.4);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.record-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.record-stats {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-family: 'Roboto', sans-serif;
}

.record-profit {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
}

/* Predictions section */
.predictions-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.host-card {
    text-align: center;
    padding: 36px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.host-card:hover {
    transform: translateY(-6px);
    border-color: white;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.4);
}

.host-card.daniel { border-top: 4px solid var(--dolphins-aqua); }
.host-card.anthony { border-top: 4px solid var(--dolphins-orange); }
.host-card.eric { border-top: 4px solid var(--red-primary); }
.host-card.jonathan { border-top: 4px solid #3b2f85; }


.host-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.host-card.daniel .host-name { color: var(--dolphins-aqua); }
.host-card.anthony .host-name { color: var(--dolphins-orange); }
.host-card.eric .host-name { color: var(--red-primary); }

.prediction-record {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.host-role {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Table Styles - Fixed Column Layout */
.table-container {
    background: var(--bg-elevated);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    margin: 40px 0;
}

.table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--accent-gold), var(--red-primary));
    background-size: 200% 100%;
    animation: gradient-sweep 3s ease-in-out infinite;
}

@keyframes gradient-sweep {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.table-header {
    background: linear-gradient(135deg, var(--bg-section), var(--bg-card));
    padding: 20px 24px;
    border-bottom: 2px solid var(--border-color);
}

.table-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.table-responsive {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--red-primary) var(--bg-section);
}

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: var(--bg-section);
}

.table-responsive::-webkit-scrollbar-thumb {
    background: var(--red-primary);
    border-radius: 4px;
}

/* Fixed Table Structure - AGGRESSIVE FIX */
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed !important;
    min-width: 700px;
    display: table !important;
}

thead {
    display: table-header-group !important;
}

tbody {
    display: table-row-group !important;
}

tr {
    display: table-row !important;
    transition: background 0.2s ease;
}

/* FORCE each td to be a table-cell */
td {
    display: table-cell !important;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(60, 74, 74, 0.2);
    color: var(--text-secondary);
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

th {
    display: table-cell !important;
    background: linear-gradient(135deg, var(--bg-section), var(--bg-elevated));
    color: var(--text-primary);
    padding: 18px 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--red-primary);
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

/* Critical: Column Width Specifications - FORCED */
th:nth-child(1), td:nth-child(1) { 
    width: 80px !important; 
    max-width: 80px !important;
    min-width: 80px !important;
}

th:nth-child(2), td:nth-child(2) { 
    width: 200px !important; 
    max-width: 200px !important;
    min-width: 200px !important;
}

th:nth-child(3), td:nth-child(3) { 
    width: 100px !important; 
    max-width: 100px !important;
    min-width: 100px !important;
}

th:nth-child(4), td:nth-child(4) { 
    width: 100px !important; 
    max-width: 100px !important;
    min-width: 100px !important;
}

th:nth-child(5), td:nth-child(5) { 
    width: 100px !important; 
    max-width: 100px !important;
    min-width: 100px !important;
}

th:nth-child(6), td:nth-child(6) { 
    width: 100px !important; 
    max-width: 100px !important;
    min-width: 100px !important;
}

.week-badge {
    background: var(--red-primary);
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.3);
}

.opponent-name {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pick-result {
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    width: 40px;
    height: 36px;
    text-align: center;
    line-height: 20px;
    vertical-align: middle;
}

.pick-w { 
    color: var(--success);
    background: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.pick-l { 
    color: var(--red-primary);
    background: rgba(200, 16, 46, 0.15);
    border: 1px solid rgba(200, 16, 46, 0.3);
}

.pick-tbd { 
    color: var(--text-muted);
    background: rgba(110, 123, 123, 0.1);
    border: 1px solid rgba(110, 123, 123, 0.2);
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.table-stats {
    background: var(--bg-section);
    padding: 20px 24px;
    border-top: 2px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
}

.stat-value.positive {
    color: var(--success);
}


.team-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.opponent-name.away {
    color: #b0b7b7;
    font-style: italic;
}

.opponent-name.away::before {
    content: '@';
    color: #6e7b7b;
    font-weight: 400;
    margin-right: 4px;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

/* Force 2x2 layout on larger screens */
@media (min-width: 900px) {
    .hosts-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.host-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.host-card:hover {
    transform: translateY(-4px);
    border-color: var(--red-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.host-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.host-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.host-card.anthony .host-initial { background: var(--dolphins-orange); }
.host-card.daniel .host-initial { background: var(--dolphins-aqua); }
.host-card.eric .host-initial { background: var(--red-dark); }
.host-card.jonathan .host-initial { background: #3b2f85; }

.host-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

.host-card.anthony h3 { color: var(--white); }
.host-card.daniel h3 { color: var(--white); }
.host-card.eric h3 { color: var(--white); }
.host-card.jonathan h3 { color: white; }

.host-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.host-bio {
    font-family: 'Roboto', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 16px;
}

.host-quote {
    background: rgba(200, 16, 46, 0.1);
    border-left: 3px solid var(--red-primary);
    padding: 12px 16px;
    font-style: italic;
    color: var(--text-primary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hosts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .host-card {
        padding: 24px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-section));
    border-top: 2px solid var(--border-color);
    padding: 50px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
}

.footer-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 22px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.social-link:hover {
    background: rgba(200, 16, 46, 0.2);
    border-color: var(--red-primary);
    color: var(--red-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-text {
    font-family: 'Roboto', sans-serif;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    margin-top: 15px;
}

/* Utility styles */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--red-primary), var(--bg-dark));
    z-index: 1001;
    transition: width 0.2s ease;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--red-primary);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 70vh;
        padding: clamp(70px, 10vw, 90px) 0 clamp(50px, 7vw, 70px);
    }
    
    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    
    .cta-group {
        justify-content: center;
        gap: 14px;
    }
    
    .episode-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .episode-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    
    .predictions-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hosts-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 14px;
    }
    
    .social-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .table-container {
        margin: 20px -20px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    table {
        table-layout: fixed;
        min-width: 600px;
    }
    
    /* Mobile Column Widths */
    th:nth-child(1) { width: 60px; }   /* Week */
    th:nth-child(2) { width: 140px; }  /* Opponent */
    th:nth-child(3) { width: 80px; }   /* Daniel */
    th:nth-child(4) { width: 80px; }   /* Anthony */
    th:nth-child(5) { width: 80px; }   /* Eric */
    th:nth-child(6) { width: 80px; }   /* Result */
    
    th, td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    th:first-child, td:first-child {
        padding-left: 16px;
        text-align: center;
    }
    
    th:nth-child(2), td:nth-child(2) {
        text-align: left;
        padding-left: 12px;
    }
    
    .week-badge {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .pick-result {
        font-size: 0.9rem;
        padding: 6px 8px;
        width: 32px;
        height: 32px;
        line-height: 18px;
    }
    
    .table-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 16px;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .clips-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 180px));
        gap: 20px;
    }
    
    .clip-card {
        width: 180px;
        height: 360px;
    }
    
    .clip-embed-container {
        height: 280px;
    }
    
    .social-follow-links {
        gap: 16px;
    }
    
    .social-follow-link {
        min-width: 100px;
        padding: 20px 16px;
    }
    
    .follow-section {
        padding: 30px 20px;
    }
    
    .featured-pick-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .featured-bet-title {
        font-size: 1.4rem;
    }
    
    .odds-display {
        font-size: 2.5rem;
    }
    
    .pick-row {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }
    
    .pick-info {
        text-align: center;
    }
    
    .record-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        background-size: cover;
        background-position: center top;
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .episode-card {
        padding: 28px 20px;
    }
    
    .host-bio-card {
        padding: 28px 20px;
    }
    
    .episode-links {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    
    .episode-links-label {
        margin-bottom: 10px;
    }
    
    .table-header {
        padding: 16px;
    }
    
    .table-title {
        font-size: 1.2rem;
    }
    
    th, td {
        padding: 10px 6px;
    }
    
    th:first-child, td:first-child {
        padding-left: 12px;
    }
    
    .coming-soon-features {
        gap: 12px;
    }
    
    .feature {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .clips-section {
        margin: 60px 0 40px;
    }
    
    .clips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        justify-items: center;
    }
    
    .clip-card {
        width: 160px;
        height: 320px;
    }
    
    .clip-embed-container {
        height: 240px;
    }
    
    .social-follow-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-follow-link {
        width: 100%;
        max-width: 200px;
    }
    
    .featured-pick-content {
        padding: 24px;
    }
    
    .picks-category {
        margin: 0 -16px;
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    
    .pick-row {
        padding: 16px 20px;
    }
}

/* Accessibility */
@media (prefers-contrast: high) {
    :root {
        --border-color: #4a5a5a;
        --border-light: #6a7a7a;
        --text-secondary: #d0d7d7;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .coming-soon-badge {
        animation: none;
    }
    
    .clip-card:hover .clip-play-icon {
        transform: none;
    }
}

*:focus {
    outline: 3px solid var(--red-primary);
    outline-offset: 3px;
}

.btn:focus,
.episode-link:focus,
.social-link:focus,
nav a:focus,
.mobile-nav a:focus {
    outline: 3px solid var(--red-primary);
    outline-offset: 3px;
}