/* ===================================
   MYSTERY BREAKS - PREMIUM DESIGN SYSTEM
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --purple-900: #581c87;
    
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;
    
    --white: #ffffff;
    
    /* Spacing - Compact */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 2.5rem;
    --spacing-4xl: 3rem;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition-base: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Live Notification (Hangs Below Nav) */
.live-banner {
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    pointer-events: auto;
    max-width: 500px;
    width: calc(100% - 32px);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.95) 0%, rgba(34, 197, 94, 0.95) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50px;
    padding: 10px 14px 10px 18px;
    box-shadow: 
        0 4px 20px rgba(147, 51, 234, 0.3),
        0 8px 40px rgba(147, 51, 234, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
    animation: slideDownFloat 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-banner:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(147, 51, 234, 0.35),
        0 12px 48px rgba(147, 51, 234, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

@keyframes slideDownFloat {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.live-banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.live-banner-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.live-banner-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
}

.live-banner-close:active {
    transform: scale(0.95);
}

.live-banner-close svg {
    width: 10px;
    height: 10px;
}

.live-banner-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.live-pulse-banner {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseBanner 1.5s ease-in-out infinite;
}

@keyframes pulseBanner {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.live-banner-text {
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.live-banner-details {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.live-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 20px;
    background: white;
    color: #9333ea;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50px;
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: auto;
    z-index: 10000;
    position: relative;
}

.live-banner-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.95);
}

.live-banner-cta:active {
    transform: translateY(0) scale(1.02);
}

@media (max-width: 768px) {
    .live-banner {
        top: 76px;
        padding: 10px 14px;
    }
    
    .live-banner-details {
        display: none;
    }
    
    .live-banner-text {
        font-size: 0.75rem;
    }
    
    .live-banner-cta {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .live-banner-close {
        width: 24px;
        height: 24px;
        margin-left: 6px;
    }
    
    .live-banner-close svg {
        width: 10px;
        height: 10px;
    }
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Better text rendering on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Prevent horizontal overflow */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--gray-950);
    color: var(--white);
    line-height: 1.6;
    /* Prevent horizontal scroll */
    overflow-x: hidden;
    overflow-y: visible;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Container */
.container-large {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

@media (max-width: 768px) {
    .container-large {
        padding: 0 var(--spacing-lg);
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99998 !important;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100vw;
    overflow: visible;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    position: relative;
}

.nav-logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.nav-link {
    color: var(--gray-300);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-600), var(--green-500));
    transition: width 0.3s ease;
}

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

.nav-btn {
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

.nav-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(3, 7, 18, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99999 !important;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        pointer-events: none;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-link,
    .nav-btn {
        padding: 0.875rem 1rem;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link:hover,
    .nav-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(147, 51, 234, 0.3);
        transform: translateX(4px);
    }
    
    .nav-btn {
        background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(147, 51, 234, 0.15));
        border-color: rgba(147, 51, 234, 0.4);
        color: var(--purple-400);
        font-weight: 600;
    }
    
    .nav-btn:hover {
        background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(147, 51, 234, 0.2));
        border-color: rgba(147, 51, 234, 0.6);
        color: var(--purple-300);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: relative;
        z-index: 999999 !important;
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-container {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    
    .nav-logo-img {
        height: 32px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    padding: 100px 0 60px;
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-2xl);
    color: var(--green-400);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
}

.hero-badge svg circle {
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-500) 0%, var(--green-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-4xl);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--gray-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    width: 280px;
    height: 390px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2), rgba(34, 197, 94, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-image,
.card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.card-video {
    /* Ensure video plays smoothly */
    display: block;
}

.floating-card.card-1 {
    top: 5%;
    right: 10%;
    animation-delay: 0s;
    z-index: 1;
}

.floating-card.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
    z-index: 3;
    width: 280px;
    height: 498px;
}

.floating-card.card-3 {
    top: 20%;
    right: 35%;
    animation-delay: 4s;
    z-index: 2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px;
        gap: var(--spacing-2xl);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 1.5rem 50px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--spacing-2xl);
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.75rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-visual {
        display: none;  /* Hide decorative cards on mobile - saves space */
    }
}

/* ===================================
   SECTION COMMON
   =================================== */

.section-header {
    margin-bottom: var(--spacing-4xl);
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-4xl);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-2xl);
    color: var(--purple-500);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title-large {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.why-us-badge {
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-400);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}
.why-us-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

@media (max-width: 768px) {
    .section-title-large {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-label {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

/* ===================================
   WHY US SECTION
   =================================== */

.why-us {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-icon.purple {
    background: rgba(147, 51, 234, 0.1);
    color: var(--purple-500);
}

.feature-icon.green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green-500);
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-description {
    color: var(--gray-400);
    line-height: 1.5;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: var(--spacing-md);
    }
    
    .feature-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .feature-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
}

/* ===================================
   LIVE SECTION
   =================================== */

.live-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-950);
}

@media (max-width: 768px) {
    .live-section {
        padding: 3rem 0;
    }
}

/* Platform Filters */
.platform-filters {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-xl);
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.625rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--gray-400);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: 44px;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
    color: var(--white);
}

.filter-btn.active {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.5);
    color: var(--purple-400);
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    padding: 0.125rem 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.filter-btn.active .filter-count {
    background: rgba(147, 51, 234, 0.3);
    color: var(--purple-300);
}

.show-card.hidden {
    display: none;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-2xl);
    color: var(--green-400);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.live-grid {
    display: block;  /* Changed from grid - children handle their own layout */
    margin-top: var(--spacing-2xl);
}

@media (max-width: 767px) {
    .live-grid {
        margin-left: calc(-1 * var(--spacing-lg));  /* Extend to screen edges */
        margin-right: calc(-1 * var(--spacing-lg));
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
        overflow: visible;  /* Don't clip the scrollable content */
        touch-action: auto;  /* Allow all touch interactions */
    }
}

.live-card-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.empty-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--spacing-xl);
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-500);
}

.live-card-empty h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.live-card-empty p {
    color: var(--gray-400);
    margin-bottom: var(--spacing-xl);
}

.empty-cta {
    display: inline-flex;
    align-items: center;
    color: var(--purple-500);
    font-weight: 600;
    transition: var(--transition-base);
}

.empty-cta:hover {
    color: var(--purple-400);
}

/* ===================================
   PLATFORMS SECTION
   =================================== */

.platforms-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
}

@media (max-width: 768px) {
    .platforms-section {
        padding: 3rem 0;
    }
}

.platforms-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    align-items: stretch;
}

@media (max-width: 768px) {
    .platforms-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .platforms-grid-new {
        grid-template-columns: repeat(2, 1fr);  /* 2x2 grid */
        gap: 0.5rem;  /* Tighter spacing for 2 columns */
    }
}

.platform-card-new {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.platform-card-new.featured {
    border-color: rgba(147, 51, 234, 0.3);
    background: rgba(147, 51, 234, 0.05);
}

.platform-card-new:hover {
    border-color: rgba(147, 51, 234, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

/* Platform Stats */
.platform-stats {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    margin: var(--spacing-sm) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: center;
    min-height: 60px;
    flex-shrink: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.6875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.platform-logo-container {
    width: 100%;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.platform-logo-container.fanatics-bg {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.platform-logo-container.whatnot-bg {
    background: linear-gradient(135deg, #ffd60a 0%, #ffc300 100%);
}

.platform-logo-container.whatnot-alt-bg {
    background: linear-gradient(135deg, #ffc300 0%, #ffb700 100%);
}

.platform-logo-container.ebay-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.platform-logo-new {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
}

.platform-logo-container.fanatics-bg .platform-logo-new {
    filter: brightness(0) invert(1);
}

/* eBay Live logo: show in full color (no white invert) - selector must beat .ebay-bg .platform-logo-new */
.platform-logo-container.ebay-bg .platform-logo-new.ebay-logo {
    filter: none;
}

.platform-logo-container.whatnot-bg .platform-logo-new,
.platform-logo-container.whatnot-alt-bg .platform-logo-new {
    filter: none;
}

.platform-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 0;
}

.platform-name {
    font-size: 0.9375rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    min-height: 1.5em;
    flex-shrink: 0;
}

.channel-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-md);
    color: var(--purple-400);
}

.platform-handle {
    color: var(--gray-500);
    font-size: 0.75rem;
    display: none; /* Hide handle for compact view */
}

.platform-description {
    color: var(--gray-400);
    line-height: 1.4;
    font-size: 0.75rem;
    min-height: 3em;
    flex-shrink: 0;
}

.platform-features {
    display: none; /* Hide features for compact view */
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gray-300);
    font-size: 0.8125rem;
}

.platform-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
    margin-top: auto;
    color: var(--white);
    min-height: 42px;
    flex-shrink: 0;
}

.platform-cta:hover {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

@media (max-width: 768px) {
    .platform-card-new {
        padding: 0.5rem;
    }
    
    .platform-logo-container {
        height: 32px;
        margin-bottom: 0.375rem;
    }
    
    .platform-logo-new {
        max-width: 70px;
        max-height: 32px;
    }
    
    .platform-name {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
        line-height: 1.1;
        font-weight: 700;
    }
    
    .platform-description {
        font-size: 0.625rem;
        line-height: 1.3;
        margin-bottom: 0.375rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .platform-cta {
        padding: 6px 10px;
        font-size: 0.6875rem;
        min-height: 36px;
        font-weight: 700;
    }
    
    /* Compact platform stats */
    .platform-stats {
        gap: 0.375rem;
        min-height: 38px;
        padding: 0.25rem 0;
        margin: 0.25rem 0;
    }
    
    .stat-item {
        gap: 0px;
    }
    
    .stat-value {
        font-size: 0.75rem;
        font-weight: 700;
    }
    
    .stat-label {
        font-size: 0.5625rem;
    }
    
    /* Hide features on mobile to save space */
    .platform-features {
        display: none;
    }
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-950);
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-4xl);
    padding: var(--spacing-4xl);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-2xl);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    color: var(--gray-400);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.cta-buttons-group {
    display: flex;
    gap: var(--spacing-lg);
}

.social-heading {
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    font-size: 0.875rem;
    color: var(--gray-400);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
    color: var(--white);
}

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .cta-buttons-group {
        flex-direction: column;
    }
}

/* ===================================
   SUPPORT SECTION
   =================================== */

.support-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
}

@media (max-width: 768px) {
    .support-section {
        padding: 3.5rem 0;
    }
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.support-card-new {
    padding: var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition-smooth);
}

.support-card-new.featured {
    border-color: rgba(147, 51, 234, 0.3);
    background: rgba(147, 51, 234, 0.05);
}

.support-card-new:hover {
    border-color: rgba(147, 51, 234, 0.5);
    transform: translateY(-4px);
}

.support-icon-new {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-lg);
    background: rgba(147, 51, 234, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-500);
}

.support-card-new h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.support-card-new p {
    color: var(--gray-400);
    margin-bottom: var(--spacing-lg);
}

.support-contact {
    color: var(--purple-500);
    font-weight: 600;
    transition: var(--transition-base);
    display: block;
    margin-bottom: var(--spacing-md);
}

.support-contact:hover {
    color: var(--purple-400);
}

.response-time {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-card-new {
        padding: 2rem 1.5rem;
    }
    
    .support-card-new h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .support-card-new p {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }
    
    .support-contact {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }
    
    .response-time {
        font-size: 0.875rem;
    }
}

/* ===================================
   CAREERS SECTION
   =================================== */

.careers-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-950) 100%);
    position: relative;
}

.careers-section .section-header {
    margin-bottom: 3.5rem;
}

.careers-section .section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 2rem;
    color: var(--purple-500);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.position-card {
    padding: 2.25rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.position-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
}

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

.position-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.position-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.08));
    color: var(--purple-500);
    box-shadow: 0 8px 16px rgba(139, 92, 246, 0.15);
}

.position-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
    color: var(--green-500);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.15);
}

.position-card:hover .position-icon {
    transform: scale(1.1) rotateZ(5deg);
}

.position-card:hover .position-icon.purple {
    box-shadow: 0 12px 24px rgba(139, 92, 246, 0.25);
}

.position-card:hover .position-icon.green {
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

.position-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.position-description {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.careers-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
    border: 1.5px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.careers-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), rgba(34, 197, 94, 0.6), transparent);
}

.careers-form-container::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 2rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(34, 197, 94, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.form-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #a855f7 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.form-subheading {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 3.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.careers-form {
    position: relative;
}

.hidden {
    display: none;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1.125rem 1.5rem;
    background: rgba(17, 24, 39, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 1rem;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-500);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(17, 24, 39, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    background: rgba(17, 24, 39, 0.9);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15), 0 8px 20px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23a855f7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3.5rem;
    font-weight: 500;
}

.form-select option {
    background: var(--gray-900);
    color: var(--white);
    padding: 1rem;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.form-submit {
    min-width: 280px;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #9333ea 0%, #7e22ce 100%);
    border: none;
    border-radius: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4), 0 0 0 1px rgba(147, 51, 234, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(147, 51, 234, 0.5), 0 0 0 1px rgba(147, 51, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.form-submit:hover::before {
    opacity: 1;
}

.form-submit:active {
    transform: translateY(-1px);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-submit svg {
    transition: transform 0.3s ease;
}

.form-submit:hover svg {
    transform: translateX(4px);
}

.form-message {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    margin-top: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.form-message.show {
    display: flex;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message svg {
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
}

.form-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
    border: 1.5px solid rgba(34, 197, 94, 0.4);
    color: var(--green-500);
}

.form-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.08));
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.form-message strong {
    display: block;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.form-message p {
    color: var(--gray-300);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .positions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .careers-form-container {
        padding: 3rem 2.5rem;
    }
    
    .form-heading {
        font-size: 2.25rem;
    }
    
    .form-submit {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .careers-section {
        padding: 4rem 0 5rem;
    }
    
    .careers-section .section-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 640px) {
    .careers-form-container {
        padding: 2.5rem 1.75rem;
        border-radius: 1.5rem;
    }
    
    .form-heading {
        font-size: 2rem;
    }
    
    .form-subheading {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .form-grid {
        gap: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .form-submit {
        min-width: auto;
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }
    
    .form-message {
        padding: 1.25rem 1.5rem;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: var(--gray-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-4xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-logo {
    max-width: 140px;
    margin-bottom: var(--spacing-lg);
}

.footer-tagline {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: rgba(147, 51, 234, 0.2);
    color: var(--purple-500);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-base);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--purple-500);
}

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-legal a {
    color: var(--gray-500);
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--purple-500);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* ===================================
   SHOW CARDS (Live/Upcoming) - ENHANCED
   =================================== */

.all-shows-grid,
.live-shows-grid,
.upcoming-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 1400px) {
    .all-shows-grid,
    .live-shows-grid,
    .upcoming-shows-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .all-shows-grid,
    .live-shows-grid,
    .upcoming-shows-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .all-shows-grid,
    .live-shows-grid,
    .upcoming-shows-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    /* All shows grids become horizontal scrolling on mobile */
    .all-shows-grid,
    .live-shows-grid,
    .upcoming-shows-grid {
        display: flex !important;  /* Override grid */
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px;
        padding-bottom: 0.75rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;  /* Remove grid */
        touch-action: pan-x;  /* CRITICAL: Enable horizontal touch scrolling */
        cursor: grab;
    }
    
    .all-shows-grid:active,
    .live-shows-grid:active,
    .upcoming-shows-grid:active {
        cursor: grabbing;
    }
    
    /* Live show cards in horizontal scroll - 10% LARGER */
    .all-shows-grid .show-card.live,
    .live-shows-grid .show-card {
        flex: 0 0 auto;
        width: 132px;  /* 10% larger than 120px upcoming cards */
        scroll-snap-align: start;
        touch-action: auto;  /* Don't block touch on cards */
    }
    
    /* Upcoming show cards in horizontal scroll - COMPACT */
    .all-shows-grid .show-card:not(.live),
    .upcoming-shows-grid .show-card {
        flex: 0 0 auto;
        width: 120px;
        scroll-snap-align: start;
        touch-action: auto;  /* Don't block touch on cards */
    }
    
    /* Live show cards styling - slightly larger */
    .live-shows-grid .show-card,
    .all-shows-grid .show-card.live {
        width: 132px;  /* 10% larger than upcoming */
    }
    
    .live-shows-grid .show-thumbnail,
    .all-shows-grid .show-card.live .show-thumbnail {
        aspect-ratio: 3 / 4;
    }
    
    .live-shows-grid .show-body,
    .all-shows-grid .show-card.live .show-body {
        padding: 7px;
        gap: 4px;
    }
    
    .live-shows-grid .show-title,
    .all-shows-grid .show-card.live .show-title {
        font-size: 0.75rem;
        line-height: 1.15;
        margin-bottom: 2px;
        -webkit-line-clamp: 2;
    }
    
    .live-shows-grid .show-host,
    .all-shows-grid .show-card.live .show-host {
        font-size: 0.6875rem;
        margin-bottom: 3px;
    }
    
    .live-shows-grid .show-cta,
    .all-shows-grid .show-card.live .show-cta {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        min-height: 38px;
    }
    
    /* Upcoming show cards styling - more compact */
    .upcoming-shows-grid .show-thumbnail,
    .all-shows-grid .show-card:not(.live) .show-thumbnail {
        aspect-ratio: 3 / 4;
    }
    
    .upcoming-shows-grid .show-body,
    .all-shows-grid .show-card:not(.live) .show-body {
        padding: 6px;
        gap: 3px;
    }
    
    .upcoming-shows-grid .show-title,
    .all-shows-grid .show-card:not(.live) .show-title {
        font-size: 0.6875rem;
        line-height: 1.1;
        margin-bottom: 2px;
        -webkit-line-clamp: 2;
    }
    
    .upcoming-shows-grid .show-host,
    .all-shows-grid .show-card:not(.live) .show-host {
        font-size: 0.625rem;
        margin-bottom: 3px;
    }
    
    .upcoming-shows-grid .platform-badge,
    .all-shows-grid .show-card:not(.live) .platform-badge {
        padding: 3px 5px;
        font-size: 0.5625rem;
    }
    
    .upcoming-shows-grid .platform-logo-pill,
    .all-shows-grid .show-card:not(.live) .platform-logo-pill {
        height: 20px;
        padding: 4px 8px;
    }
    
    .upcoming-shows-grid .pill-logo,
    .all-shows-grid .show-card:not(.live) .pill-logo {
        height: 12px;
    }
    
    .upcoming-shows-grid .upcoming-badge,
    .all-shows-grid .show-card:not(.live) .upcoming-badge {
        padding: 3px 6px;
        font-size: 0.5625rem;
    }
    
    .upcoming-shows-grid .show-cta,
    .all-shows-grid .show-card:not(.live) .show-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.6875rem;
        min-height: 36px;
        gap: 0.25rem;
    }
    
    /* Subtle scrollbar for all horizontal show grids */
    .all-shows-grid::-webkit-scrollbar,
    .live-shows-grid::-webkit-scrollbar,
    .upcoming-shows-grid::-webkit-scrollbar {
        height: 3px;
    }
    
    .all-shows-grid::-webkit-scrollbar-track,
    .live-shows-grid::-webkit-scrollbar-track,
    .upcoming-shows-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 2px;
    }
    
    .all-shows-grid::-webkit-scrollbar-thumb,
    .live-shows-grid::-webkit-scrollbar-thumb,
    .upcoming-shows-grid::-webkit-scrollbar-thumb {
        background: rgba(147, 51, 234, 0.4);
        border-radius: 2px;
    }
    
    .all-shows-grid::-webkit-scrollbar-thumb:hover,
    .live-shows-grid::-webkit-scrollbar-thumb:hover,
    .upcoming-shows-grid::-webkit-scrollbar-thumb:hover {
        background: rgba(147, 51, 234, 0.6);
    }
}

.upcoming-shows-compact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.upcoming-separator {
    margin: var(--spacing-3xl) 0 var(--spacing-xl);
    text-align: center;
}

.upcoming-separator h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
    position: relative;
    display: inline-block;
    padding: 0 var(--spacing-xl);
}

.upcoming-separator h3::before,
.upcoming-separator h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.upcoming-separator h3::before {
    right: 100%;
}

.upcoming-separator h3::after {
    left: 100%;
}

.more-live-indicator,
.more-upcoming-indicator {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    margin-top: var(--spacing-xl);
}

.view-all-link {
    color: var(--purple-500);
    font-weight: 600;
    transition: var(--transition-base);
    margin-top: var(--spacing-sm);
    display: inline-block;
}

.view-all-link:hover {
    color: var(--purple-400);
}

/* ===================================
   NEXT SHOW FEATURE (Hero Style)
   =================================== */

.next-show-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-xl);
    margin-bottom: var(--spacing-xl);
    align-items: center;
}

.next-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-2xl);
    color: var(--purple-400);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.next-show-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.next-show-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    color: var(--gray-400);
}

.next-platform {
    color: var(--purple-400);
    font-weight: 600;
}

.next-time {
    font-size: 1.125rem;
    color: var(--green-400);
    font-weight: 600;
}

.next-show-thumbnail {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.next-show-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.countdown-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.countdown {
    text-align: center;
    color: var(--white);
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-xs);
}

.countdown-time {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, var(--purple-400), var(--green-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 1024px) {
    .next-show-feature {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   COMPACT UPCOMING CARDS
   =================================== */

.upcoming-compact-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    align-items: center;
    transition: var(--transition-smooth);
}

.upcoming-compact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(147, 51, 234, 0.3);
}

.compact-thumbnail {
    width: 100px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.compact-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.compact-content {
    min-width: 0; /* Fix text overflow */
}

.compact-platform {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.compact-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.compact-time {
    font-size: 0.875rem;
    color: var(--green-500);
    font-weight: 500;
}

.compact-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: var(--transition-smooth);
}

.compact-link:hover {
    background: rgba(147, 51, 234, 0.2);
    color: var(--purple-400);
}

/* ===================================
   SHOW TAGS
   =================================== */

.show-tags {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.show-tags .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-sm);
    color: var(--purple-400);
    font-weight: 500;
}

/* ===================================
   CTA BUTTONS FOR SHOWS
   =================================== */

.show-cta.cta-live {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    border: none;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(34, 197, 94, 0.5);
    }
}

.show-cta.cta-upcoming {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.show-cta.cta-upcoming:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
}

/* ===================================
   EMPTY STATE IMPROVEMENTS
   =================================== */

.empty-cta-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-top: var(--spacing-xl);
}

@media (max-width: 640px) {
    .empty-cta-buttons {
        flex-direction: column;
    }
    
    .upcoming-compact-card {
        grid-template-columns: 100px 1fr auto;
        gap: 1rem;
        padding: 1rem;
    }
    
    .compact-thumbnail {
        width: 100px;
    }
    
    .compact-title {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .compact-time {
        font-size: 0.9375rem;
    }
    
    .compact-platform {
        font-size: 0.8125rem;
    }
    
    .compact-link {
        width: 44px;
        height: 44px;
    }
}

/* ===================================
   SHOW CARDS (Live/Upcoming)
   =================================== */

.show-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
}

.show-card.live {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.08);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
}

.show-card:hover {
    border-color: rgba(147, 51, 234, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.show-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gray-800);
}

.show-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.show-card:hover .show-thumbnail img {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.live-pulse {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 12px;
    height: 12px;
    background: var(--green-500);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 1);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.show-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.show-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.platform-badge {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.platform-logo-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    height: 28px;
}

.pill-logo {
    height: 16px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .platform-logo-pill {
        height: 32px;
        padding: 7px 14px;
    }
    
    .pill-logo {
        height: 18px;
        max-width: 80px;
    }
}

/* Whatnot logos - show in color on yellow background */
.show-card[data-show-platform*="whatnot"] .platform-logo-pill {
    background: linear-gradient(135deg, #ffd60a 0%, #ffc300 100%);
}

.show-card[data-show-platform*="whatnot"] .pill-logo {
    filter: none;
}

/* eBay logo - show in color */
.platform-logo-pill:has(img[src*="eBay"]) .pill-logo {
    filter: none;
    height: 12px;
}

.platform-badge .channel-name {
    font-size: 0.75rem;
    opacity: 0.9;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 6px;
    color: var(--green-400);
    font-size: 0.75rem;
    font-weight: 700;
}

.viewer-count {
    font-size: 0.75rem;
    opacity: 0.8;
}

.upcoming-badge {
    padding: 5px 10px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 6px;
    color: var(--purple-400);
    font-size: 0.75rem;
    font-weight: 600;
}

.show-content {
    flex-grow: 1;
}

.show-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.show-host {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.show-footer {
    margin-top: auto;
}

.show-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    width: 100%;
    justify-content: center;
    min-height: 44px;
}

.show-cta.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-700));
    border: none;
    color: var(--white);
}

.show-cta.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.4);
}

.show-cta.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.show-cta.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.next-show-card {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--spacing-4xl) var(--spacing-xl);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: var(--radius-2xl);
}

.next-show-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto var(--spacing-xl);
    background: rgba(147, 51, 234, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-500);
}

.next-show-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.next-show-details {
    margin: var(--spacing-xl) 0;
}

.show-platform {
    color: var(--purple-400);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.next-show-card .show-title {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.show-time {
    color: var(--gray-400);
    font-size: 1rem;
}

/* ===================================
   LOADING STATE
   =================================== */

.loading-spinner {
    text-align: center;
    padding: var(--spacing-4xl);
}

.loading-spinner p {
    margin-top: var(--spacing-lg);
    color: var(--gray-400);
}

.shows-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    font-size: 0.9375rem;
    color: var(--gray-400);
    flex-wrap: wrap;
}

.summary-stat {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple-400);
}

.summary-divider {
    color: var(--gray-600);
}

.last-updated {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .shows-summary {
        font-size: 0.875rem;
        gap: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.375rem;
    }
    
    .last-updated {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

.spinner {
    margin: 0 auto var(--spacing-lg);
    display: block;
}

/* ===================================
   UTILITIES
   =================================== */

::selection {
    background: var(--purple-600);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-600);
}

/* ===================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   =================================== */

/* Extra small phones - 480px and below */
@media (max-width: 480px) {
    /* Typography */
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title-large {
        font-size: 1.875rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Spacing */
    .container-large {
        padding: 0 1rem;
    }
    
    /* Navigation */
    .nav-container {
        padding: var(--spacing-sm) 1rem;
    }
    
    .nav-logo-img {
        height: 28px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    /* Live Banner */
    .live-banner {
        top: 60px;
        padding: 8px 12px 8px 16px;
        max-width: calc(100% - 16px);
    }
    
    .live-banner-text {
        font-size: 0.6875rem;
    }
    
    .live-banner-cta {
        padding: 7px 14px;
        font-size: 0.6875rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 1.125rem 2rem;
        font-size: 1.0625rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 1rem 40px;
    }
    
    .hero-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Platform Filters */
    .platform-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
        min-height: 44px;
    }
    
    .filter-count {
        min-width: 20px;
        padding: 0.125rem 0.375rem;
        font-size: 0.75rem;
    }
    
    /* Platform Cards - 35% smaller for 2x2 fit */
    .platform-card-new {
        padding: 0.5rem;
    }
    
    .platform-logo-container {
        height: 30px;
        margin-bottom: 0.375rem;
    }
    
    .platform-logo-new {
        max-width: 65px;
        max-height: 30px;
    }
    
    .platform-name {
        font-size: 0.6875rem;
        line-height: 1.1;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    
    .platform-description {
        font-size: 0.5625rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 0.375rem;
    }
    
    .platform-cta {
        padding: 5px 8px;
        font-size: 0.625rem;
        min-height: 32px;
        font-weight: 700;
    }
    
    .platform-stats {
        gap: 0.25rem;
        min-height: 34px;
        padding: 0.25rem 0;
        margin: 0.25rem 0;
    }
    
    .stat-value {
        font-size: 0.6875rem;
    }
    
    .stat-label {
        font-size: 0.5rem;
    }
    
    /* All show grids inherit horizontal scroll from 767px breakpoint */
    .all-shows-grid,
    .live-shows-grid,
    .upcoming-shows-grid {
        gap: 8px;
    }
    
    /* Live show cards on small phones - 10% larger */
    .live-shows-grid .show-card,
    .all-shows-grid .show-card.live {
        width: 121px;  /* 10% larger than 110px */
    }
    
    .live-shows-grid .show-body,
    .all-shows-grid .show-card.live .show-body {
        padding: 6px;
    }
    
    .live-shows-grid .show-title,
    .all-shows-grid .show-card.live .show-title {
        font-size: 0.6875rem;
    }
    
    .live-shows-grid .show-host,
    .all-shows-grid .show-card.live .show-host {
        font-size: 0.625rem;
    }
    
    .live-shows-grid .show-cta,
    .all-shows-grid .show-card.live .show-cta {
        padding: 0.5rem 0.75rem;
        font-size: 0.6875rem;
        min-height: 36px;
    }
    
    /* Upcoming show cards on small phones - compact */
    .upcoming-shows-grid .show-card,
    .all-shows-grid .show-card:not(.live) {
        width: 110px;
    }
    
    .upcoming-shows-grid .show-body,
    .all-shows-grid .show-card:not(.live) .show-body {
        padding: 5px;
    }
    
    .upcoming-shows-grid .show-title,
    .all-shows-grid .show-card:not(.live) .show-title {
        font-size: 0.625rem;
    }
    
    .upcoming-shows-grid .show-host,
    .all-shows-grid .show-card:not(.live) .show-host {
        font-size: 0.5625rem;
    }
    
    .upcoming-shows-grid .show-cta,
    .all-shows-grid .show-card:not(.live) .show-cta {
        padding: 0.375rem 0.5rem;
        font-size: 0.625rem;
        min-height: 32px;
    }
    
    /* CTA Section */
    .cta-content {
        padding: var(--spacing-2xl) var(--spacing-lg);
        gap: var(--spacing-2xl);
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .social-link {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    /* Support Section */
    .support-grid {
        gap: 1.25rem;
    }
    
    .support-card-new {
        padding: 1.5rem;
    }
    
    .support-icon-new {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .support-card-new h3 {
        font-size: 1.125rem;
    }
    
    .support-card-new p {
        font-size: 0.9375rem;
    }
    
    /* Careers Section */
    .positions-grid {
        gap: 1.25rem;
    }
    
    .position-card {
        padding: 1.75rem 1.5rem;
    }
    
    .position-icon {
        width: 72px;
        height: 72px;
        margin-bottom: 1rem;
    }
    
    .position-title {
        font-size: 1.25rem;
    }
    
    .position-description {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* Careers Form */
    .careers-form-container {
        padding: 2rem 1.25rem;
        border-radius: 1.25rem;
    }
    
    .form-heading {
        font-size: 2rem;
    }
    
    .form-subheading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .form-grid {
        gap: 1.25rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 0.75rem;
        min-height: 48px;
    }
    
    .form-label {
        font-size: 0.9375rem;
    }
    
    .form-submit {
        min-width: auto;
        width: 100%;
        padding: 1.125rem 1.75rem;
        font-size: 1rem;
        min-height: 52px;
    }
    
    .form-message {
        padding: 1.25rem;
        margin-top: 1.25rem;
    }
    
    .form-message strong {
        font-size: 1.0625rem;
    }
    
    .form-message p {
        font-size: 0.9375rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .footer-tagline {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .footer-social a {
        width: 44px;
        height: 44px;
    }
    
    .footer-column h4 {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column a {
        font-size: 0.9375rem;
        padding: 0.5rem 0;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.875rem;
    }
}

/* Landscape mobile phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px var(--spacing-lg) 40px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 60px);
    }
}

/* Touch-friendly improvements for all mobile */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
        position: relative;
    }
    
    /* Ensure all major containers respect viewport width */
    .hero, .section, .nav-container,
    .hero-content, .hero-visual,
    .platform-filters, .live-shows-section, .platforms-section,
    .support-section, .careers-section {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Container-large: allow horizontal scroll for children */
    .container-large {
        max-width: 100%;
        overflow-x: visible;  /* Changed from hidden - allows scroll children */
    }
    
    /* Shows grids need horizontal scroll - DON'T hide overflow */
    .all-shows-grid,
    .live-shows-grid,
    .upcoming-shows-grid {
        max-width: 100%;
        overflow-x: auto;  /* Allow horizontal scrolling */
        touch-action: pan-x pan-y;  /* Enable touch scrolling */
    }
    
    /* Ensure live-section allows touch events */
    .live-section {
        touch-action: auto;
    }
    
    /* Catch-all for any element trying to exceed viewport */
    * {
        max-width: 100vw;
    }
    
    /* Allow specific elements to be full width */
    img, video {
        max-width: 100%;
        height: auto;
    }
    
    /* Larger touch targets - Apple HIG minimum 44x44px */
    a, button, .filter-btn, .platform-cta, .show-cta,
    .nav-link, .btn-primary, .btn-secondary,
    .position-card, .support-card-new, .platform-card-new {
        min-height: 44px;
    }
    
    /* Ensure buttons and links are properly sized */
    a:not(.show-card):not(.platform-card-new):not(.support-card-new),
    button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Prevent text selection on interactive elements */
    .nav-link, .btn-primary, .btn-secondary, .platform-cta, 
    .filter-btn, .show-cta, .position-card {
        -webkit-tap-highlight-color: rgba(147, 51, 234, 0.2);
        user-select: none;
        -webkit-user-select: none;
    }
    
    /* Better spacing for touch */
    .hero-cta {
        gap: 1rem;
    }
    
    .platform-filters {
        margin-bottom: 1.5rem;
    }
    
    /* Optimize tap feedback */
    button:active, a:active,
    .filter-btn:active, .platform-cta:active,
    .show-cta:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Optimize animations for mobile */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Increase interactive element spacing */
    .features-grid, .platforms-grid-new, 
    .support-grid, .positions-grid {
        gap: 1.5rem;
    }
    
    /* Reduce motion for performance */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title-large {
        font-size: 2rem;
    }
    
    .platforms-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .platform-card-new {
        padding: 1.25rem;
    }
    
    .platform-name {
        font-size: 1.0625rem;
    }
    
    .platform-description {
        font-size: 0.875rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.0625rem;
    }
    
    .feature-description {
        font-size: 0.9375rem;
    }
    
    .cta-content {
        padding: 3rem 2.5rem;
    }
    
    .all-shows-grid,
    .live-shows-grid,
    .upcoming-shows-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

/* ===================================
   PLATFORM SELECTION MODAL
   =================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.modal-content {
    position: relative;
    max-width: 360px;
    width: calc(100% - 2rem);
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-10px) scale(0.96);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: scale(1.05);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.modal-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-400);
}

.modal-icon svg {
    width: 24px;
    height: 24px;
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.modal-header p {
    color: var(--gray-400);
    font-size: 0.8125rem;
    font-weight: 400;
}

.platform-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.platform-option {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: var(--white);
}

.platform-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(147, 51, 234, 0.4);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
}

.platform-option-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.platform-option-logo img {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
}

.platform-option-logo.whatnot-bg {
    background: linear-gradient(135deg, #ffd60a 0%, #ffc300 100%);
}

.platform-option-logo.whatnot-bg img {
    filter: none;
}

.platform-option-logo.fanatics-bg {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.platform-option-logo.fanatics-bg img {
    filter: brightness(0) invert(1);
}

.platform-option-logo.ebay-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.platform-option-logo.ebay-bg img {
    filter: none;
    max-height: 20px;
}

.platform-option-content {
    flex: 1;
}

.platform-option-content h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
    color: var(--white);
    letter-spacing: -0.01em;
}

.platform-option-content p {
    font-size: 0.75rem;
    color: rgba(156, 163, 175, 0.8);
    font-weight: 400;
}

.platform-option svg {
    flex-shrink: 0;
    color: var(--gray-500);
    width: 16px;
    height: 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-option:hover svg {
    color: var(--purple-400);
    transform: translateX(2px);
}

.support-card-new.clickable {
    cursor: pointer;
}

.support-card-new.clickable:hover {
    transform: translateY(-6px);
}

@media (max-width: 640px) {
    .modal-content {
        padding: 1.5rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-header p {
        font-size: 0.875rem;
    }
    
    .modal-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .modal-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .platform-option {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
        min-height: 64px;
    }
    
    .platform-option-logo {
        width: 44px;
        height: 44px;
    }
    
    .platform-option-logo img {
        max-width: 28px;
        max-height: 28px;
    }
    
    .platform-option-content h3 {
        font-size: 1rem;
    }
    
    .platform-option-content p {
        font-size: 0.8125rem;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
    }
    
    .modal-close svg {
        width: 20px;
        height: 20px;
    }
}

.stats-coming-soon {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    font-style: italic;
    padding: var(--spacing-sm) 0;
}
