/**
 * ppv-guide.css - GameFace Live PPV Channel Guide
 * Dark theme with teal accent
 */

/* ================================================================
   CSS VARIABLES
   ================================================================ */
:root {
    /* Colors */
    --ppv-bg-deep: #0a0a0f;
    --ppv-bg-dark: #12121a;
    --ppv-bg-card: #1a1a24;
    --ppv-bg-elevated: #22222e;
    --ppv-bg-hover: #2a2a38;
    
    --ppv-teal: #00D4FF;
    --ppv-teal-dark: #00a8cc;
    --ppv-teal-glow: rgba(0, 212, 255, 0.3);
    --ppv-teal-subtle: rgba(0, 212, 255, 0.1);
    
    --ppv-live-red: #ff3b5c;
    --ppv-live-glow: rgba(255, 59, 92, 0.4);
    
    --ppv-text-primary: #ffffff;
    --ppv-text-secondary: #a0a0b0;
    --ppv-text-muted: #606070;
    
    --ppv-border: rgba(255, 255, 255, 0.08);
    --ppv-border-light: rgba(255, 255, 255, 0.12);
    
    /* Sizing */
    --ppv-container: 1400px;
    --ppv-header-height: 64px;
    --ppv-card-width: 280px;
    --ppv-card-gap: 16px;
    
    /* Timing */
    --ppv-transition: 0.2s ease;
    --ppv-transition-slow: 0.3s ease;
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.ppv-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--ppv-bg-deep);
    color: var(--ppv-text-primary);
    min-height: 100vh;
    line-height: 1.5;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ================================================================
   HEADER
   ================================================================ */
.ppv-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ppv-border);
    height: var(--ppv-header-height);
}

.ppv-header-inner {
    max-width: var(--ppv-container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.ppv-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ppv-logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ppv-teal), var(--ppv-teal-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--ppv-teal-glow);
}

.ppv-logo-mark svg {
    width: 20px;
    height: 20px;
    color: white;
    margin-left: 2px;
}

.ppv-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.ppv-logo-gameface {
    font-size: 18px;
    font-weight: 700;
}

.ppv-logo-gameface .game {
    color: var(--ppv-text-primary);
}

.ppv-logo-gameface .face {
    color: var(--ppv-teal);
}

.ppv-logo-live {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ppv-teal);
}

/* Live indicator */
.ppv-live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 59, 92, 0.15);
    border: 1px solid rgba(255, 59, 92, 0.3);
    border-radius: 20px;
}

.ppv-live-pulse {
    width: 8px;
    height: 8px;
    background: var(--ppv-live-red);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

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

.ppv-live-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--ppv-live-red);
}

/* Header buttons */
.ppv-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ppv-header-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--ppv-bg-card);
    border: 1px solid var(--ppv-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ppv-text-secondary);
    transition: var(--ppv-transition);
}

.ppv-header-btn:hover {
    background: var(--ppv-bg-elevated);
    color: var(--ppv-text-primary);
    border-color: var(--ppv-border-light);
}

.ppv-header-btn--primary {
    background: var(--ppv-teal);
    border-color: var(--ppv-teal);
    color: #000;
}

.ppv-header-btn--primary:hover {
    background: var(--ppv-teal-dark);
    border-color: var(--ppv-teal-dark);
    color: #000;
}

.ppv-header-btn svg {
    width: 16px;
    height: 16px;
}

/* ================================================================
   MAIN CONTENT
   ================================================================ */
.ppv-main {
    min-height: calc(100vh - var(--ppv-header-height) - 80px);
    padding-bottom: 48px;
}

.ppv-container {
    max-width: var(--ppv-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.ppv-hero {
    position: relative;
    min-height: 340px;
    height: auto;
    margin: 0 -24px 32px;
    overflow: visible;
}

.ppv-hero-bg {
    position: absolute;
    inset: 0;
    min-height: 100%;
}

.ppv-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.ppv-hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to top, var(--ppv-bg-deep) 0%, transparent 50%),
        linear-gradient(to right, var(--ppv-bg-deep) 0%, transparent 60%),
        linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.ppv-hero-content {
    position: relative;
    z-index: 2;
    xmax-width: 900px;
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-areas:
        'badges  badges'
        'title   title'
        'meta    meta'
        'desc    actions'
        'countdown actions';
    column-gap: 24px;
    align-items: end;
    padding: 32px 24px;
}

/* Hero grid area assignments */
.ppv-hero-badges    { grid-area: badges; }
.ppv-hero-title     { grid-area: title; }
.ppv-hero-meta      { grid-area: meta; }
.ppv-hero-desc      { grid-area: desc; margin-bottom: 0; }
.ppv-hero-actions   { grid-area: actions; display: flex; flex-direction: column; gap: 10px; align-self: center; }
.ppv-hero-countdown { grid-area: countdown; margin-top: 12px; }

/* Badges */
.ppv-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.ppv-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ppv-badge svg {
    width: 12px;
    height: 12px;
}

.ppv-badge--live {
    background: var(--ppv-live-red);
    color: white;
    box-shadow: 0 0 20px var(--ppv-live-glow);
    animation: liveGlow 2s ease-in-out infinite;
}

@keyframes liveGlow {
    0%, 100% { box-shadow: 0 0 20px var(--ppv-live-glow); }
    50% { box-shadow: 0 0 30px var(--ppv-live-glow), 0 0 40px var(--ppv-live-glow); }
}

.ppv-badge-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1s infinite;
}

.ppv-badge--video {
    background: var(--ppv-teal);
    color: #000;
}

.ppv-badge--upcoming {
    background: var(--ppv-bg-elevated);
    color: var(--ppv-text-secondary);
    border: 1px solid var(--ppv-border-light);
}

.ppv-badge--brand {
    background: var(--brand-color, var(--ppv-teal));
    color: white;
}

/* Hero text */
.ppv-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.ppv-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: var(--ppv-text-secondary);
    margin-bottom: 12px;
}

.ppv-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ppv-hero-meta svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.ppv-hero-desc {
    font-size: 15px;
    color: var(--ppv-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Hero actions: layout via grid-area assignment above */
.ppv-hero-actions {
    gap: 10px;
}

/* Countdown */
.ppv-hero-countdown {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--ppv-border);
    border-radius: 12px;
    width: fit-content;
}

.ppv-countdown-label {
    font-size: 13px;
    color: var(--ppv-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ppv-countdown-timer {
    display: flex;
    gap: 4px;
}

.ppv-countdown-unit {
    text-align: center;
    padding: 0 8px;
}

.ppv-countdown-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--ppv-teal);
    font-variant-numeric: tabular-nums;
}

.ppv-countdown-text {
    font-size: 10px;
    color: var(--ppv-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.ppv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--ppv-transition);
    cursor: pointer;
    border: none;
}

.ppv-btn svg {
    width: 16px;
    height: 16px;
}

.ppv-btn--primary {
    background: var(--ppv-teal);
    color: #000;
}

.ppv-btn--primary:hover {
    background: var(--ppv-teal-dark);
    box-shadow: 0 4px 20px var(--ppv-teal-glow);
}

.ppv-btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.ppv-btn--lg svg {
    width: 20px;
    height: 20px;
}

.ppv-btn--outline {
    background: transparent;
    border: 1px solid var(--ppv-border-light);
    color: var(--ppv-text-secondary);
}

.ppv-btn--outline:hover {
    background: var(--ppv-bg-card);
    border-color: var(--ppv-teal);
    color: var(--ppv-teal);
}

.ppv-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ppv-text-primary);
}

.ppv-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================================================================
   CONTROLS BAR
   ================================================================ */
.ppv-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--ppv-border);
}

.ppv-controls-left,
.ppv-controls-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* View toggle dropdown */
.ppv-view-toggle {
    position: relative;
}

.ppv-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--ppv-bg-card);
    border: 1px solid var(--ppv-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ppv-text-primary);
    transition: var(--ppv-transition);
}

.ppv-view-btn:hover {
    background: var(--ppv-bg-elevated);
    border-color: var(--ppv-border-light);
}

.ppv-view-btn svg {
    width: 16px;
    height: 16px;
}

.ppv-view-chevron {
    opacity: 0.5;
    transition: transform 0.2s;
}

.ppv-view-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 160px;
    background: var(--ppv-bg-elevated);
    border: 1px solid var(--ppv-border-light);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--ppv-transition);
    overflow: hidden;
    z-index: 50;
}

.ppv-view-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ppv-view-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--ppv-text-secondary);
    transition: var(--ppv-transition);
}

.ppv-view-option:hover {
    background: var(--ppv-bg-hover);
    color: var(--ppv-text-primary);
}

.ppv-view-option.active {
    background: var(--ppv-teal-subtle);
    color: var(--ppv-teal);
}

.ppv-view-option svg {
    width: 16px;
    height: 16px;
}

/* Filters */
.ppv-filters {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--ppv-bg-card);
    border-radius: 10px;
}

.ppv-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ppv-text-muted);
    transition: var(--ppv-transition);
}

.ppv-filter:hover {
    color: var(--ppv-text-secondary);
    background: var(--ppv-bg-elevated);
}

.ppv-filter.active {
    background: var(--ppv-bg-elevated);
    color: var(--ppv-text-primary);
}

.ppv-filter-dot {
    width: 6px;
    height: 6px;
    background: var(--ppv-live-red);
    border-radius: 50%;
}

.ppv-filter--live.active .ppv-filter-dot {
    animation: livePulse 1s infinite;
}

.ppv-filter-count {
    padding: 2px 6px;
    background: var(--ppv-bg-hover);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.ppv-filter.active .ppv-filter-count {
    background: var(--ppv-teal-subtle);
    color: var(--ppv-teal);
}

/* ================================================================
   EMPTY STATE
   ================================================================ */
.ppv-empty {
    text-align: center;
    padding: 80px 24px;
}

.ppv-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--ppv-bg-card);
    border: 1px solid var(--ppv-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppv-empty-icon svg {
    width: 36px;
    height: 36px;
    color: var(--ppv-text-muted);
}

.ppv-empty-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.ppv-empty-text {
    font-size: 15px;
    color: var(--ppv-text-secondary);
    max-width: 400px;
    margin: 0 auto 24px;
}

/* ================================================================
   CHANNEL RAILS
   ================================================================ */
.ppv-channels {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ppv-channel {
    
}

.ppv-channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ppv-channel-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ppv-channel-title h2 {
    font-size: 20px;
    font-weight: 600;
}

.ppv-channel-live-dot {
    width: 10px;
    height: 10px;
    background: var(--ppv-live-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--ppv-live-glow);
    animation: livePulse 1.5s infinite;
}

.ppv-channel-count {
    padding: 4px 10px;
    background: var(--ppv-bg-card);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ppv-text-muted);
}

.ppv-channel-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ppv-teal);
    transition: var(--ppv-transition);
}

.ppv-channel-link:hover {
    gap: 10px;
}

.ppv-channel-link svg {
    width: 16px;
    height: 16px;
}

/* Rail wrapper */
.ppv-rail-wrapper {
    position: relative;
    margin: 0 -24px;
    padding: 0 24px;
}

.ppv-rail {
    display: flex;
    gap: var(--ppv-card-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 8px 0;
}

.ppv-rail::-webkit-scrollbar {
    display: none;
}

/* Rail arrows */
.ppv-rail-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--ppv-bg-elevated);
    border: 1px solid var(--ppv-border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ppv-text-primary);
    z-index: 10;
    transition: var(--ppv-transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.ppv-rail-arrow:hover:not(:disabled) {
    background: var(--ppv-teal);
    border-color: var(--ppv-teal);
    color: #000;
    box-shadow: 0 4px 20px var(--ppv-teal-glow);
}

.ppv-rail-arrow:disabled {
    opacity: 0;
    pointer-events: none;
}

.ppv-rail-arrow svg {
    width: 20px;
    height: 20px;
}

.ppv-rail-arrow--prev {
    left: 8px;
}

.ppv-rail-arrow--next {
    right: 8px;
}

/* ================================================================
   CONTENT CARDS
   ================================================================ */
.ppv-card {
    flex: 0 0 var(--ppv-card-width);
    background: var(--ppv-bg-card);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--ppv-transition);
    border: 1px solid transparent;
}

.ppv-card:hover {
    transform: translateY(-4px);
    border-color: var(--ppv-border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ppv-card:hover .ppv-card-overlay {
    opacity: 1;
}

.ppv-card:hover .ppv-card-play {
    transform: scale(1);
}

/* Card thumbnail */
.ppv-card-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--ppv-bg-dark);
    overflow: hidden;
}

.ppv-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ppv-card:hover .ppv-card-thumb img {
    transform: scale(1.05);
}

.ppv-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ppv-bg-elevated), var(--ppv-bg-dark));
}

.ppv-card-thumb-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--ppv-text-muted);
    opacity: 0.5;
}

/* Card overlay */
.ppv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--ppv-transition);
}

.ppv-card-play {
    width: 56px;
    height: 56px;
    background: var(--ppv-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--ppv-transition);
    box-shadow: 0 4px 20px var(--ppv-teal-glow);
}

.ppv-card-play svg {
    width: 24px;
    height: 24px;
    color: #000;
    margin-left: 2px;
}

/* Card badges */
.ppv-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.ppv-card-badge--live {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--ppv-live-red);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px var(--ppv-live-glow);
}

.ppv-card-badge-dot {
    width: 5px;
    height: 5px;
    background: white;
    border-radius: 50%;
    animation: livePulse 1s infinite;
}

.ppv-card-badge--upcoming {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
}

.ppv-card-badge--duration {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    font-variant-numeric: tabular-nums;
}

.ppv-card-brand {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: var(--brand-color, var(--ppv-teal));
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Card info */
.ppv-card-info {
    padding: 14px 16px 16px;
}

.ppv-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ppv-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--ppv-text-muted);
}

.ppv-card-team {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ppv-card-viewers {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ppv-live-red);
}

.ppv-card-viewers svg {
    width: 12px;
    height: 12px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.ppv-footer {
    margin-top: auto;
    padding: 24px 0;
    border-top: 1px solid var(--ppv-border);
    background: var(--ppv-bg-dark);
}

.ppv-footer-inner {
    max-width: var(--ppv-container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.ppv-footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ppv-footer-logo {
    font-size: 18px;
    font-weight: 700;
}

.ppv-footer-logo .game {
    color: var(--ppv-text-primary);
}

.ppv-footer-logo .face {
    color: var(--ppv-teal);
}

.ppv-footer-copy {
    font-size: 13px;
    color: var(--ppv-text-muted);
}

.ppv-footer-links {
    display: flex;
    gap: 24px;
}

.ppv-footer-links a {
    font-size: 13px;
    color: var(--ppv-text-muted);
    transition: var(--ppv-transition);
}

.ppv-footer-links a:hover {
    color: var(--ppv-teal);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .ppv-hero {
        min-height: 300px;
        height: auto;
    }

    .ppv-hero-content {
        grid-template-columns: 1fr 180px;
        max-width: 100%;
    }
    
    .ppv-hero-title {
        font-size: 32px;
    }
    
    .ppv-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .ppv-controls-left,
    .ppv-controls-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --ppv-card-width: 240px;
    }
    
    .ppv-header-inner {
        padding: 0 16px;
    }
    
    .ppv-logo-text {
        display: none;
    }
    
    .ppv-live-indicator {
        padding: 6px 12px;
    }
    
    .ppv-live-text {
        font-size: 12px;
    }
    
    .ppv-header-btn span {
        display: none;
    }
    
    .ppv-container {
        padding: 0 16px;
    }
    
    .ppv-hero {
        height: auto;
        min-height: 280px;
        margin: 0 -16px 24px;
    }

    .ppv-hero-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            'badges'
            'title'
            'meta'
            'desc'
            'actions'
            'countdown';
        padding: 24px 16px;
    }

    .ppv-hero-actions {
        flex-direction: row;
        margin-top: 8px;
    }
    
    .ppv-hero-title {
        font-size: 26px;
    }
    
    .ppv-hero-actions {
        flex-direction: column;
    }
    
    .ppv-hero-countdown {
        flex-direction: column;
        gap: 8px;
    }
    
    .ppv-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    
    .ppv-filter {
        white-space: nowrap;
    }
    
    .ppv-rail-wrapper {
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .ppv-rail-arrow {
        display: none;
    }
    
    .ppv-channel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ppv-footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .ppv-footer-brand {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    :root {
        --ppv-card-width: 200px;
    }
    
    .ppv-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .ppv-countdown-value {
        font-size: 22px;
    }
}
