/* ============================================
   PAPY CLUB - Main Stylesheet
   Multimedia Gallery Site
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables — YouTube Music Inspired ---- */
:root {
  --pc-red: #FF0000;
  --pc-red-dark: #cc0000;
  --pc-red-light: #ff3333;
  --pc-dark: #030303;
  --pc-dark2: #0f0f0f;
  --pc-dark3: #181818;
  --pc-dark4: #212121;
  --pc-dark5: #272727;
  --pc-gray: #424242;
  --pc-gray-light: #aaaaaa;
  --pc-gray-lighter: #cccccc;
  --pc-gray-dim: #717171;
  --pc-border: rgba(255,255,255,0.1);
  --pc-border-light: rgba(255,255,255,0.06);
  --pc-white: #ffffff;
  --pc-off-white: #f1f1f1;
  --pc-bg: #030303;
  --pc-bg2: #0f0f0f;
  --pc-bg3: #181818;
  --pc-bg4: #212121;
  --pc-shadow: 0 2px 8px rgba(0,0,0,0.4);
  --pc-shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
  --pc-shadow-hover: 0 8px 24px rgba(0,0,0,0.5);
  --pc-radius: 8px;
  --pc-radius-lg: 12px;
  --pc-radius-xl: 16px;
  --pc-transition: all 0.2s ease;
  --pc-header-h: 56px;
  --pc-player-h: 72px;
  --pc-gradient: linear-gradient(135deg, var(--pc-red) 0%, var(--pc-red-dark) 100%);
  --pc-gradient-dark: linear-gradient(135deg, var(--pc-dark) 0%, var(--pc-dark3) 100%);
  --pc-hover-bg: rgba(255,255,255,0.1);
  --pc-hover-bg-strong: rgba(255,255,255,0.15);
  --font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background: var(--pc-bg);
  color: var(--pc-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--pc-red);
  text-decoration: none;
  transition: var(--pc-transition);
}

a:hover {
  color: var(--pc-red-light);
}

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

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

ul, ol {
  list-style: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--pc-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--pc-gray);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pc-red);
}

/* ---- Header / Navigation ---- */
.pc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pc-header-h);
  background: var(--pc-dark);
  border-bottom: 1px solid var(--pc-border-light);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.pc-header-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.pc-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--pc-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: white;
  letter-spacing: -0.5px;
}

.pc-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--pc-white);
  letter-spacing: -0.5px;
}

.pc-logo-text span {
  color: var(--pc-red);
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pc-nav a {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 13px;
  color: var(--pc-gray-light);
  transition: var(--pc-transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.pc-nav a:hover {
  color: var(--pc-white);
  background: var(--pc-hover-bg);
}

.pc-nav a.active {
  color: var(--pc-white);
  background: rgba(255,255,255,0.22);
  font-weight: 600;
}

.pc-search-box {
  position: relative;
  flex-shrink: 0;
}

.pc-search-box input {
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  border-radius: 20px;
  padding: 8px 16px 8px 38px;
  color: var(--pc-white);
  font-size: 13px;
  width: 200px;
  transition: var(--pc-transition);
  outline: none;
  font-family: var(--font-family);
}

.pc-search-box input::placeholder {
  color: var(--pc-gray-light);
}

.pc-search-box input:focus {
  border-color: var(--pc-red);
  width: 260px;
  box-shadow: 0 0 0 3px rgba(210,40,40,0.15);
}

.pc-search-box .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pc-gray-light);
  font-size: 14px;
  pointer-events: none;
}


/* Fullscreen button */
.pc-fullscreen-btn {
    background: var(--pc-dark3);
    border: 1px solid var(--pc-border);
    border-radius: 8px;
    color: var(--pc-gray-light);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    padding: 0;
    opacity: 0.7;
}
.pc-fullscreen-btn:hover {
    color: var(--pc-white);
    background: var(--pc-red);
    border-color: var(--pc-red);
    opacity: 1;
    transform: scale(1.05);
}
.pc-fullscreen-btn svg {
    display: block;
}

.pc-mobile-toggle {
  display: none;
  background: none;
  color: var(--pc-white);
  font-size: 24px;
  padding: 8px;
  line-height: 1;
}

/* Mobile Navigation */
.pc-mobile-menu {
  display: none;
  position: fixed;
  top: var(--pc-header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pc-dark);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.pc-mobile-menu.open {
  display: flex;
}

.pc-mobile-menu a {
  display: block;
  padding: 14px 20px;
  border-radius: var(--pc-radius);
  font-size: 16px;
  font-weight: 500;
  color: var(--pc-gray-light);
  transition: var(--pc-transition);
}

.pc-mobile-menu a:hover,
.pc-mobile-menu a.active {
  color: var(--pc-white);
  background: var(--pc-dark3);
}

.pc-mobile-menu a.active {
  color: var(--pc-red);
}

.pc-mobile-search {
  margin-top: 16px;
}

.pc-mobile-search input {
  width: 100%;
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 12px 16px;
  color: var(--pc-white);
  font-size: 15px;
  outline: none;
  font-family: var(--font-family);
}

/* ---- Main Content ---- */
.pc-main {
  margin-top: var(--pc-header-h);
  min-height: calc(100vh - var(--pc-header-h));
}

.pc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.pc-section {
  padding: 40px 0;
}

.pc-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.pc-section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-section-title .icon {
  font-size: 32px;
}

.pc-section-subtitle {
  color: var(--pc-gray-light);
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

/* ---- Hero Section ---- */
.pc-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0000 0%, var(--pc-dark) 40%, #0a0a0a 100%);
}

.pc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(210,40,40,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(210,40,40,0.08) 0%, transparent 50%);
  z-index: 1;
}

.pc-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.pc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.pc-hero-badge {
  display: inline-block;
  background: rgba(210,40,40,0.15);
  color: var(--pc-red);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(210,40,40,0.3);
}

.pc-hero h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.pc-hero h1 .highlight {
  background: var(--pc-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-hero p {
  font-size: 17px;
  color: var(--pc-gray-light);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 32px;
}

.pc-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pc-hero-stat {
  text-align: center;
}

.pc-hero-stat .number {
  font-size: 32px;
  font-weight: 800;
  color: var(--pc-white);
}

.pc-hero-stat .number span {
  color: var(--pc-red);
}

.pc-hero-stat .label {
  font-size: 12px;
  color: var(--pc-gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Floating particles animation */
.pc-hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.pc-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--pc-red);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ---- Section Cards (Homepage) ---- */
.pc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pc-section-card {
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--pc-transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pc-section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pc-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pc-section-card:hover {
  transform: translateY(-6px);
  border-color: rgba(210,40,40,0.3);
  box-shadow: var(--pc-shadow-hover);
}

.pc-section-card:hover::before {
  transform: scaleX(1);
}

.pc-section-card .card-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}

.pc-section-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pc-section-card p {
  color: var(--pc-gray-light);
  font-size: 14px;
  margin-bottom: 20px;
}

.pc-section-card .card-count {
  display: inline-block;
  background: rgba(210,40,40,0.12);
  color: var(--pc-red);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ---- Video Grid ---- */
.pc-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.pc-video-card {
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  overflow: hidden;
  transition: var(--pc-transition);
  cursor: pointer;
  position: relative;
}

.pc-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pc-shadow-hover);
  border-color: rgba(210,40,40,0.3);
}

.pc-video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--pc-dark2);
  overflow: hidden;
}

.pc-video-thumb img,
.pc-video-thumb video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pc-video-card:hover .pc-video-thumb img,
.pc-video-card:hover .pc-video-thumb video {
  transform: scale(1.05);
}

.pc-video-thumb-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pc-dark2) 0%, var(--pc-dark4) 100%);
  color: var(--pc-gray);
  font-size: 40px;
}

.pc-video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.pc-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: var(--pc-transition);
}

.pc-video-card:hover .pc-play-overlay {
  opacity: 1;
}

.pc-play-btn {
  width: 56px;
  height: 56px;
  background: var(--pc-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(210,40,40,0.4);
  transition: var(--pc-transition);
  transform: scale(0.8);
}

.pc-video-card:hover .pc-play-btn {
  transform: scale(1);
}

.pc-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}

.pc-video-info {
  padding: 14px 16px;
}

.pc-video-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
  color: var(--pc-white);
}

.pc-video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pc-video-cat {
  background: rgba(210,40,40,0.12);
  color: var(--pc-red);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.pc-video-size {
  color: var(--pc-gray-light);
  font-size: 11px;
}

/* ---- Filter Tabs ---- */
.pc-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 4px;
}

.pc-filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  color: var(--pc-gray-light);
  cursor: pointer;
  transition: var(--pc-transition);
  white-space: nowrap;
}

.pc-filter-tab:hover {
  color: var(--pc-white);
  border-color: var(--pc-gray);
}

.pc-filter-tab.active {
  background: var(--pc-red);
  border-color: var(--pc-red);
  color: white;
}

/* ---- Category Section Headers ---- */
.pc-category-header {
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pc-border);
}

.pc-category-header:first-of-type {
  margin-top: 0;
}

.pc-category-header h3 {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-category-header h3 .count {
  font-size: 13px;
  color: var(--pc-gray-light);
  font-weight: 400;
}

/* ---- Breadcrumb ---- */
.pc-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 13px;
  color: var(--pc-gray-light);
  flex-wrap: wrap;
}

.pc-breadcrumb a {
  color: var(--pc-gray-light);
}

.pc-breadcrumb a:hover {
  color: var(--pc-red);
}

.pc-breadcrumb .separator {
  color: var(--pc-gray);
}

.pc-breadcrumb .current {
  color: var(--pc-white);
  font-weight: 500;
}

/* ---- Video Player Page ---- */
.pc-player-wrapper {
  background: var(--pc-dark2);
  border-radius: var(--pc-radius-lg);
  overflow: hidden;
  box-shadow: var(--pc-shadow-lg);
}

.pc-player-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.pc-player-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pc-player-info {
  padding: 24px;
  border-top: 1px solid var(--pc-border);
}

.pc-player-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pc-player-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--pc-gray-light);
  font-size: 13px;
  flex-wrap: wrap;
}

.pc-player-meta .badge {
  background: rgba(210,40,40,0.12);
  color: var(--pc-red);
  padding: 3px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.pc-share-buttons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.pc-share-btn {
  padding: 8px 16px;
  border-radius: var(--pc-radius);
  font-size: 13px;
  font-weight: 500;
  background: var(--pc-dark4);
  border: 1px solid var(--pc-border);
  color: var(--pc-gray-light);
  transition: var(--pc-transition);
}

.pc-share-btn:hover {
  background: var(--pc-red);
  border-color: var(--pc-red);
  color: white;
}

/* ---- Sidebar ---- */
.pc-sidebar {
  margin-top: 24px;
}

.pc-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-sidebar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}

.pc-sidebar-card {
  display: flex;
  gap: 12px;
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 10px;
  cursor: pointer;
  transition: var(--pc-transition);
}

.pc-sidebar-card:hover {
  border-color: rgba(210,40,40,0.3);
  background: var(--pc-dark4);
}

.pc-sidebar-thumb {
  width: 120px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--pc-dark2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pc-gray);
  font-size: 24px;
}

.pc-sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-sidebar-info {
  flex: 1;
  min-width: 0;
}

.pc-sidebar-info h4 {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.pc-sidebar-info span {
  font-size: 11px;
  color: var(--pc-gray-light);
}

/* ---- Two Column Layout ---- */
.pc-layout-two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pc-layout-two .pc-sidebar {
  margin-top: 0;
}

/* ---- Back Button ---- */
.pc-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--pc-radius);
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  color: var(--pc-gray-light);
  font-size: 14px;
  font-weight: 500;
  transition: var(--pc-transition);
  margin-bottom: 20px;
}

.pc-btn-back:hover {
  background: var(--pc-dark4);
  color: var(--pc-white);
  border-color: var(--pc-gray);
}

.pc-btn-back::before {
  content: '\2190';
}

/* ---- Buttons ---- */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--pc-radius);
  font-size: 14px;
  font-weight: 600;
  transition: var(--pc-transition);
}

.pc-btn-primary {
  background: var(--pc-gradient);
  color: white;
  border: none;
}

.pc-btn-primary:hover {
  background: linear-gradient(135deg, var(--pc-red-light) 0%, var(--pc-red) 100%);
  box-shadow: 0 4px 16px rgba(210,40,40,0.3);
  transform: translateY(-1px);
  color: white;
}

.pc-btn-outline {
  background: transparent;
  color: var(--pc-white);
  border: 1px solid var(--pc-border);
}

.pc-btn-outline:hover {
  border-color: var(--pc-red);
  color: var(--pc-red);
}

/* ---- Recent Videos Carousel ---- */
.pc-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.pc-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0;
}

.pc-carousel::-webkit-scrollbar {
  display: none;
}

.pc-carousel .pc-video-card {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.pc-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.pc-carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  color: var(--pc-white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--pc-transition);
}

.pc-carousel-nav button:hover {
  background: var(--pc-red);
  border-color: var(--pc-red);
}

/* ---- Music Player (Sticky Bottom) ---- */
.pc-music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--pc-player-h);
  background: var(--pc-dark);
  border-top: 1px solid var(--pc-border);
  z-index: 1001;
  display: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(17,17,17,0.97);
}

.pc-music-player.active {
  display: flex;
  align-items: center;
}

.pc-music-player-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 20px;
}

.pc-player-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pc-player-track-art {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--pc-dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.pc-player-track-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-player-track-info {
  min-width: 0;
}

.pc-player-track-name {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-player-track-artist {
  font-size: 11px;
  color: var(--pc-gray-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-player-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pc-player-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pc-player-btn {
  background: none;
  border: none;
  color: var(--pc-gray-light);
  font-size: 16px;
  cursor: pointer;
  transition: var(--pc-transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-player-btn:hover {
  color: var(--pc-white);
}

.pc-player-btn.play-btn {
  width: 40px;
  height: 40px;
  background: var(--pc-red);
  border-radius: 50%;
  color: white;
  font-size: 16px;
}

.pc-player-btn.play-btn:hover {
  background: var(--pc-red-light);
  transform: scale(1.05);
}

.pc-player-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 600px;
}

.pc-player-progress .time {
  font-size: 11px;
  color: var(--pc-gray-light);
  min-width: 40px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.pc-player-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--pc-dark4);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  transition: height 0.15s ease;
}

.pc-player-progress-bar:hover {
  height: 6px;
}

.pc-player-progress-fill {
  height: 100%;
  background: var(--pc-red);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
  position: relative;
}

.pc-player-progress-fill::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--pc-red);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.pc-player-progress-bar:hover .pc-player-progress-fill::after {
  opacity: 1;
}

.pc-player-volume {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.pc-player-volume button {
  background: none;
  border: none;
  color: var(--pc-gray-light);
  font-size: 16px;
  cursor: pointer;
}

.pc-player-volume button:hover {
  color: var(--pc-white);
}

.pc-player-volume input[type="range"] {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--pc-dark4);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.pc-player-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--pc-red);
  border-radius: 50%;
  cursor: pointer;
}

.pc-player-volume input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--pc-red);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Waveform Visualization */
.pc-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
}

.pc-waveform canvas {
  width: 100%;
  height: 100%;
}

/* ---- Photos Coming Soon ---- */
.pc-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  min-height: 50vh;
}

.pc-coming-soon-icon {
  font-size: 80px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.pc-coming-soon h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.pc-coming-soon p {
  color: var(--pc-gray-light);
  font-size: 16px;
  max-width: 400px;
  margin-bottom: 32px;
}

/* ---- Stats Bar ---- */
.pc-stats-bar {
  background: var(--pc-dark2);
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
  padding: 20px 0;
}

.pc-stats-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.pc-stat-item {
  text-align: center;
}

.pc-stat-item .stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--pc-white);
}

.pc-stat-item .stat-value span {
  color: var(--pc-red);
}

.pc-stat-item .stat-label {
  font-size: 12px;
  color: var(--pc-gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* ---- Footer ---- */
.pc-footer {
  background: var(--pc-dark);
  border-top: 1px solid var(--pc-border);
  padding: 32px 0;
  margin-top: 40px;
}

.pc-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.pc-footer-text {
  font-size: 13px;
  color: var(--pc-gray-light);
}

.pc-footer-text a {
  color: var(--pc-red);
}

.pc-footer-links {
  display: flex;
  gap: 20px;
}

.pc-footer-links a {
  font-size: 13px;
  color: var(--pc-gray-light);
}

.pc-footer-links a:hover {
  color: var(--pc-white);
}

/* ---- Pagination ---- */
.pc-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.pc-pagination button,
.pc-pagination a {
  width: 40px;
  height: 40px;
  border-radius: var(--pc-radius);
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  color: var(--pc-gray-light);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--pc-transition);
  cursor: pointer;
}

.pc-pagination button:hover,
.pc-pagination a:hover {
  border-color: var(--pc-red);
  color: var(--pc-red);
}

.pc-pagination button.active,
.pc-pagination a.active {
  background: var(--pc-red);
  border-color: var(--pc-red);
  color: white;
}

/* ---- Loading / Empty States ---- */
.pc-loading {
  text-align: center;
  padding: 60px 24px;
  color: var(--pc-gray-light);
}

.pc-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--pc-dark4);
  border-top-color: var(--pc-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.pc-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--pc-gray-light);
}

.pc-empty .icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* ---- Playlist Sidebar ---- */
.pc-playlist {
  background: var(--pc-dark2);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius-lg);
  overflow: hidden;
}

.pc-playlist-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--pc-border);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-playlist-count {
  font-size: 12px;
  color: var(--pc-gray-light);
  font-weight: 400;
}

.pc-playlist-items {
  max-height: 500px;
  overflow-y: auto;
}

.pc-playlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  cursor: pointer;
  transition: var(--pc-transition);
  border-bottom: 1px solid rgba(51,51,51,0.5);
}

.pc-playlist-item:last-child {
  border-bottom: none;
}

.pc-playlist-item:hover {
  background: var(--pc-dark3);
}

.pc-playlist-item.active {
  background: rgba(210,40,40,0.08);
  border-left: 3px solid var(--pc-red);
}

.pc-playlist-item .pl-num {
  width: 24px;
  font-size: 12px;
  color: var(--pc-gray-light);
  text-align: center;
  flex-shrink: 0;
}

.pc-playlist-item.active .pl-num {
  color: var(--pc-red);
}

.pc-playlist-item .pl-info {
  flex: 1;
  min-width: 0;
}

.pc-playlist-item .pl-title {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-playlist-item .pl-duration {
  font-size: 11px;
  color: var(--pc-gray-light);
}

/* ---- Animations ---- */
.fade-in {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

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

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ---- No Results ---- */
.pc-no-results {
  text-align: center;
  padding: 60px 24px;
  color: var(--pc-gray-light);
}

.pc-no-results .icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.pc-no-results h3 {
  color: var(--pc-white);
  margin-bottom: 8px;
}

/* ---- Responsive Design ---- */

/* Tablet */
@media (max-width: 1024px) {
  .pc-hero h1 {
    font-size: 40px;
  }

  .pc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pc-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }

  .pc-music-player-inner {
    grid-template-columns: 160px 1fr 160px;
  }

  .pc-stats-inner {
    gap: 40px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pc-header {
    padding: 0 16px;
  }

  .pc-nav,
  .pc-search-box {
    display: none;
  }

  .pc-mobile-toggle {
    display: block;
  }

  .pc-hero {
    height: 360px;
  }

  .pc-hero h1 {
    font-size: 32px;
  }

  .pc-hero p {
    font-size: 15px;
  }

  .pc-hero-stats {
    gap: 24px;
  }

  .pc-hero-stat .number {
    font-size: 24px;
  }

  .pc-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pc-section-card {
    padding: 28px 24px;
  }

  .pc-section-title {
    font-size: 22px;
  }

  .pc-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
  }

  .pc-section {
    padding: 24px 0;
  }

  .pc-container {
    padding: 0 16px;
  }

  .pc-music-player-inner {
    grid-template-columns: 1fr;
    padding: 8px 16px;
    gap: 6px;
  }

  .pc-player-track {
    display: none;
  }

  .pc-player-volume {
    display: none;
  }

  .pc-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .pc-stats-inner {
    gap: 24px;
  }

  .pc-stat-item .stat-value {
    font-size: 22px;
  }

  .pc-player-title {
    font-size: 18px;
  }

  .pc-sidebar-grid {
    grid-template-columns: 1fr;
  }

  .pc-filter-tabs {
    gap: 6px;
  }

  .pc-filter-tab {
    padding: 6px 14px;
    font-size: 12px;
  }

  body.has-music-player {
    padding-bottom: var(--pc-player-h);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pc-hero {
    height: 300px;
  }

  .pc-hero h1 {
    font-size: 26px;
  }

  .pc-video-grid {
    grid-template-columns: 1fr;
  }

  .pc-carousel .pc-video-card {
    min-width: 240px;
    max-width: 240px;
  }
}

/* ---- Utility Classes ---- */
.text-red { color: var(--pc-red); }
.text-gray { color: var(--pc-gray-light); }
.text-white { color: var(--pc-white); }
.fw-bold { font-weight: 700; }
.fw-semibold { font-weight: 600; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* ============================================
   SLICK SLIDER STYLES
   ============================================ */
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css');
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css');

/* Slick Slider customization for PAPY CLUB */
.pc-slick-slider {
  position: relative;
  margin-bottom: 32px;
}

.pc-slick-slider .slick-list {
  overflow: hidden;
  margin: 0 -10px;
}

.pc-slick-slider .slick-track {
  display: flex;
}

.pc-slick-slider .slick-slide {
  padding: 0 10px;
  outline: none;
}

.pc-slick-slider .slick-slide > div {
  outline: none;
}

/* Slick arrows */
.pc-slick-slider .slick-prev,
.pc-slick-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(210,40,40,0.9);
  border: 2px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0;
  z-index: 10;
  cursor: pointer;
  transition: var(--pc-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-slick-slider .slick-prev::before {
  content: '\2190';
  font-size: 18px;
  color: white;
}

.pc-slick-slider .slick-next::before {
  content: '\2192';
  font-size: 18px;
  color: white;
}

.pc-slick-slider .slick-prev:hover,
.pc-slick-slider .slick-next:hover {
  background: var(--pc-red);
  border-color: var(--pc-red);
  transform: translateY(-50%) scale(1.1);
}

.pc-slick-slider .slick-prev {
  left: -22px;
}

.pc-slick-slider .slick-next {
  right: -22px;
}

/* Slick dots */
.pc-slick-slider .slick-dots {
  position: relative;
  bottom: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

.pc-slick-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
}

.pc-slick-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pc-dark4);
  border: 2px solid var(--pc-gray);
  padding: 0;
  cursor: pointer;
  transition: var(--pc-transition);
}

.pc-slick-slider .slick-dots li button::before {
  display: none;
}

.pc-slick-slider .slick-dots li.slick-active button {
  background: var(--pc-red);
  border-color: var(--pc-red);
  transform: scale(1.2);
}

/* Slick slider transitions */
.pc-slick-slider .slick-slide {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ============================================
   SIDEBAR OVERLAY STYLES
   ============================================ */
.pc-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--pc-dark);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid var(--pc-border);
  box-shadow: 4px 0 24px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}

.pc-sidebar-overlay.open {
  transform: translateX(0);
}

.pc-sidebar-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.pc-sidebar-overlay-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.pc-sidebar-overlay-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pc-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.pc-sidebar-overlay-header .pc-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--pc-white);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.pc-sidebar-overlay-header .pc-logo span {
  color: var(--pc-red);
}

.pc-sidebar-close {
  background: none;
  border: none;
  color: var(--pc-gray-light);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: var(--pc-transition);
  line-height: 1;
}

.pc-sidebar-close:hover {
  color: var(--pc-white);
  background: var(--pc-dark3);
}

.pc-sidebar-overlay-body {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.pc-sidebar-overlay-body a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: var(--pc-gray-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--pc-transition);
  white-space: nowrap;
}

.pc-sidebar-overlay-body a:hover {
  color: var(--pc-white);
  background: var(--pc-dark3);
}

.pc-sidebar-overlay-body a.active {
  color: var(--pc-red);
  background: rgba(210,40,40,0.08);
  border-right: 3px solid var(--pc-red);
}

.pc-sidebar-overlay-body a .sidebar-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.pc-sidebar-section-title {
  padding: 16px 24px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pc-gray);
}

.pc-sidebar-overlay-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--pc-border);
  flex-shrink: 0;
}

.pc-sidebar-overlay-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--pc-gray-light);
  text-decoration: none;
  font-size: 13px;
  transition: var(--pc-transition);
}

.pc-sidebar-overlay-footer a:hover {
  color: var(--pc-red);
}

/* ============================================
   SANDWICH BUTTON
   ============================================ */
.pc-sandwich-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--pc-radius);
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  color: var(--pc-white);
  font-size: 24px;
  cursor: pointer;
  transition: var(--pc-transition);
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
  }

.pc-sandwich-btn:hover {
  background: var(--pc-dark3);
  border-color: var(--pc-red);
  color: var(--pc-red);
}

/* ============================================
   LOGIN EYE TOGGLE
   ============================================ */
.pc-login-eye-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--pc-gray-light);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  transition: var(--pc-transition);
  line-height: 1;
}

.pc-login-eye-toggle:hover {
  color: var(--pc-red);
}

.pc-password-wrapper {
  position: relative;
}

.pc-password-wrapper input {
  padding-right: 44px;
}

/* ============================================
   DISCREET LOGIN LINK
   ============================================ */
.pc-discreet-link {
  position: fixed;
  bottom: 8px;
  right: 12px;
  z-index: 900;
  opacity: 0.15;
  transition: opacity 0.3s ease;
  font-size: 11px;
  color: var(--pc-gray);
  text-decoration: none;
}

.pc-discreet-link:hover {
  opacity: 0.6;
  color: var(--pc-red);
}

/* ============================================
   Video Player - Responsive & Fullscreen Fix
   ============================================ */
.pc-player-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
video:fullscreen,
video:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  max-height: 100vh !important;
  border-radius: 0 !important;
}
.pc-player-container:fullscreen,
.pc-player-container:-webkit-full-screen {
  background: #000;
  width: 100vw;
  height: 100vh;
}
.pc-player-container:fullscreen video,
.pc-player-container:-webkit-full-screen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: none;
}

/* Fullscreen button for video player */
.pc-video-fullscreen-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  transition: background 0.2s;
  opacity: 0.7;
}
.pc-video-fullscreen-btn:hover {
  background: rgba(210,40,40,0.8);
  opacity: 1;
}

/* ============================================
   Slick Slider Integration
   ============================================ */
.pc-carousel.pc-slick-slider .slick-list {
  overflow: hidden;
}
.pc-carousel.pc-slick-slider .slick-track {
  display: flex;
  gap: 16px;
}
.pc-carousel.pc-slick-slider .slick-slide {
  min-width: 280px;
  max-width: 280px;
}
.pc-carousel.pc-slick-slider .slick-prev,
.pc-carousel.pc-slick-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  color: var(--pc-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--pc-transition);
}
.pc-carousel.pc-slick-slider .slick-prev:hover,
.pc-carousel.pc-slick-slider .slick-next:hover {
  background: var(--pc-red);
  border-color: var(--pc-red);
}
.pc-carousel.pc-slick-slider .slick-prev { left: -20px; }
.pc-carousel.pc-slick-slider .slick-next { right: -20px; }
.pc-carousel.pc-slick-slider .slick-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
  padding: 0;
}
.pc-carousel.pc-slick-slider .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  color: transparent;
  cursor: pointer;
  font-size: 0;
  padding: 0;
  transition: var(--pc-transition);
}
.pc-carousel.pc-slick-slider .slick-dots li.slick-active button {
  background: var(--pc-red);
  border-color: var(--pc-red);
  transform: scale(1.2);
}

/* Mobile: hide slick arrows, show dots */
@media (max-width: 768px) {
  .pc-carousel.pc-slick-slider .slick-prev,
  .pc-carousel.pc-slick-slider .slick-next {
    display: none !important;
  }
  .pc-carousel.pc-slick-slider .slick-slide {
    min-width: 240px;
    max-width: 240px;
  }
}

/* ============================================
   Layout two columns for player on desktop
   ============================================ */
@media (min-width: 1024px) {
  .pc-layout-two {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
  }
}

/* Video card clickable cursor */
.pc-video-card[data-item-id] {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pc-video-card[data-item-id]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ============================================
   Player share buttons
   ============================================ */
.pc-share-buttons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  color: var(--pc-gray-light);
  font-size: 13px;
  cursor: pointer;
  transition: var(--pc-transition);
  font-family: var(--pc-font);
}
.pc-share-btn:hover {
  background: var(--pc-red);
  color: #fff;
  border-color: var(--pc-red);
}

/* Related sidebar */
.pc-sidebar .pc-sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--pc-white);
  margin-bottom: 16px;
}
.pc-sidebar .pc-sidebar-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pc-sidebar .pc-sidebar-card {
  display: flex;
  gap: 10px;
  padding: 10px;
  background: var(--pc-dark3);
  border-radius: 8px;
  text-decoration: none;
  color: var(--pc-white);
  transition: var(--pc-transition);
}
.pc-sidebar .pc-sidebar-card:hover {
  background: var(--pc-dark2);
}
.pc-sidebar .pc-sidebar-thumb {
  width: 60px;
  height: 40px;
  background: var(--pc-dark4);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.pc-sidebar .pc-sidebar-info h4 {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pc-sidebar .pc-sidebar-info span {
  font-size: 11px;
  color: var(--pc-gray);
}


/* ============================================
   FULL-WIDTH HERO SLIDER — NO DOTS, STYLISH BUTTONS
   ============================================ */
.pc-hero-slider-section {
  position: relative;
  width: 100%;
  margin-top: var(--pc-header-h);
  background: #000;
  overflow: hidden;
}

.pc-hero-slider-section .pc-hero-slider .slick-list { margin: 0; }
.pc-hero-slider-section .pc-hero-slider .slick-track { display: flex; gap: 0; }
.pc-hero-slider-section .pc-hero-slider .slick-slide { padding: 0; height: auto; }
.pc-hero-slider-section .pc-hero-slider .slick-slide > div { height: 100%; }

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-card {
  min-width: 100%; max-width: 100%; height: 65vh; min-height: 380px; max-height: 560px;
  border: none; border-radius: 0; background: #000; position: relative;
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-thumb {
  width: 100%; height: 100%; padding-top: 0; position: relative;
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-thumb::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70%;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 45%, transparent 100%);
  pointer-events: none; z-index: 2;
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px 48px; z-index: 5;
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-title {
  font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6); max-width: 70%;
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-meta .pc-video-cat {
  font-size: 12px; padding: 3px 12px; background: rgba(210,40,40,0.7); backdrop-filter: blur(4px);
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-play-overlay { opacity: 1; background: transparent; }

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-play-btn {
  width: 68px; height: 68px; transform: scale(1); border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px); transition: all 0.3s ease;
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-play-btn:hover {
  transform: scale(1.1); border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 30px rgba(210,40,40,0.4);
}

.pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-duration {
  bottom: 100px; right: 48px; font-size: 13px; padding: 3px 10px; z-index: 5;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
}

/* NO DOTS — hide them completely */
.pc-hero-slider-section .pc-hero-slider .slick-dots { display: none !important; }

/* STYLISH NAV BUTTONS — bottom of slider, rectangular, not circles */
.pc-hero-slider-section .pc-hero-slider .slick-prev,
.pc-hero-slider-section .pc-hero-slider .slick-next {
  position: absolute; bottom: 32px; z-index: 20; cursor: pointer;
  width: auto; height: 44px; border-radius: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 0; padding: 0 18px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease; display: flex; align-items: center; justify-content: center;
}

.pc-hero-slider-section .pc-hero-slider .slick-prev { left: 48px; right: auto; }
.pc-hero-slider-section .pc-hero-slider .slick-next { right: 48px; left: auto; }

.pc-hero-slider-section .pc-hero-slider .slick-prev::before {
  content: '\2190  Précédent'; font-size: 13px; color: #fff; font-weight: 500; letter-spacing: 0.5px;
}
.pc-hero-slider-section .pc-hero-slider .slick-next::before {
  content: 'Suivant  \2192'; font-size: 13px; color: #fff; font-weight: 500; letter-spacing: 0.5px;
}

.pc-hero-slider-section .pc-hero-slider .slick-prev:hover,
.pc-hero-slider-section .pc-hero-slider .slick-next:hover {
  background: rgba(210,40,40,0.7); border-color: rgba(210,40,40,0.5);
}

/* Progress bar at bottom */
.pc-slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,0.1); z-index: 20;
}
.pc-slider-progress-fill {
  height: 100%; background: var(--pc-red); width: 0%;
  transition: width 0.5s linear;
}

/* Slide counter */
.pc-slider-counter {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: rgba(255,255,255,0.4); z-index: 20;
  font-weight: 500; letter-spacing: 1px;
}

@media (max-width: 768px) {
  .pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-card { height: 45vh; min-height: 260px; }
  .pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-info { padding: 20px; }
  .pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-title { font-size: 15px; max-width: 90%; }
  .pc-hero-slider-section .pc-hero-slider .slick-prev,
  .pc-hero-slider-section .pc-hero-slider .slick-next {
    bottom: 20px; width: 40px; padding: 0; border-radius: 50%;
  }
  .pc-hero-slider-section .pc-hero-slider .slick-prev { left: 16px; }
  .pc-hero-slider-section .pc-hero-slider .slick-next { right: 16px; }
  .pc-hero-slider-section .pc-hero-slider .slick-prev::before { content: '\2190'; font-size: 16px; }
  .pc-hero-slider-section .pc-hero-slider .slick-next::before { content: '\2192'; font-size: 16px; }
  .pc-hero-slider-section .pc-hero-slider .slick-slide .pc-play-btn { width: 52px; height: 52px; }
  .pc-hero-slider-section .pc-hero-slider .slick-slide .pc-video-duration { bottom: 70px; right: 20px; }
  .pc-slider-counter { bottom: 28px; }
}


/* FOOTER ADMIN LINK */
.pc-footer-admin {
  font-size: 11px; color: var(--pc-gray); opacity: 0.4; transition: opacity 0.3s ease; text-decoration: none;
}
.pc-footer-admin:hover { opacity: 0.8; color: var(--pc-red); }

/* MUSIC VISUALIZER */
.pc-visualizer-canvas-wrapper {
  position: relative; width: 100%; max-width: 800px; height: 300px; margin: 0 auto 40px;
  background: var(--pc-dark2); border-radius: var(--pc-radius-xl); border: 1px solid var(--pc-border);
  overflow: hidden; box-shadow: var(--pc-shadow-lg);
}
.pc-visualizer-canvas-wrapper canvas { width: 100%; height: 100%; }
.pc-visualizer-title {
  font-size: 48px; font-weight: 900; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--pc-red), #ff6b6b, var(--pc-red));
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift { 0%,100%{background-position:0% center;} 50%{background-position:100% center;} }
.pc-visualizer-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 32px;
}
.pc-visualizer-btn {
  width: 56px; height: 56px; border-radius: 50%; background: var(--pc-red); color: white;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(210,40,40,0.3);
}
.pc-visualizer-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(210,40,40,0.5); }
.pc-visualizer-btn-secondary {
  width: 44px; height: 44px; background: var(--pc-dark3); border: 1px solid var(--pc-border);
  box-shadow: none; color: var(--pc-gray-light); font-size: 16px;
}
.pc-visualizer-btn-secondary:hover {
  background: var(--pc-dark4); color: var(--pc-white); transform: scale(1.05); box-shadow: none;
}
.pc-waveform-bars {
  display: flex; align-items: flex-end; justify-content: center; gap: 3px; height: 120px;
  max-width: 600px; margin: 0 auto 40px; padding: 20px;
}
.pc-waveform-bar {
  flex: 1; max-width: 8px; min-width: 3px;
  background: linear-gradient(to top, var(--pc-red), #ff6b6b);
  border-radius: 4px 4px 0 0; transition: height 0.1s ease; height: 10px;
}
.pc-waveform-bars.playing .pc-waveform-bar { animation: waveBar 0.8s ease-in-out infinite alternate; }
@keyframes waveBar { 0%{height:8px;} 100%{height:var(--bar-height,80px);} }
.pc-visualizer-track {
  display: flex; align-items: center; gap: 16px; padding: 14px 16px;
  border-radius: var(--pc-radius); cursor: pointer; transition: all 0.2s ease;
  border: 1px solid transparent;
}
.pc-visualizer-track:hover { background: var(--pc-dark3); border-color: var(--pc-border); }
.pc-visualizer-track.active { background: rgba(210,40,40,0.08); border-color: rgba(210,40,40,0.3); }
.pc-vt-num { width: 28px; text-align: center; font-size: 13px; color: var(--pc-gray-light); flex-shrink: 0; }
.pc-visualizer-track.active .pc-vt-num { color: var(--pc-red); }
.pc-vt-thumb {
  width: 52px; height: 52px; border-radius: 8px; background: var(--pc-dark3);
  overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative;
}
.pc-vt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-vt-info { flex: 1; min-width: 0; }
.pc-vt-name { font-size: 14px; font-weight: 600; color: var(--pc-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.pc-vt-meta { font-size: 12px; color: var(--pc-gray-light); }
.pc-vt-duration { font-size: 13px; color: var(--pc-gray-light); flex-shrink: 0; }
.pc-hidden-audio { position: absolute; top: -9999px; left: -9999px; opacity: 0; pointer-events: none; }


/* ============================================
   BOUTON ROUGE GÉANT
   ============================================ */
.pc-explore-title-wrap {
    text-align: center;
    margin-bottom: 28px;
}
.pc-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pc-gradient);
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 16px rgba(210,40,40,0.3);
    transition: all 0.25s ease;
}
.pc-explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(210,40,40,0.4);
    color: #fff;
}
.pc-explore-subtitle {
    margin-top: 8px;
    font-size: 12px;
    color: var(--pc-gray);
    letter-spacing: 0.5px;
}

/* ============================================
   CARROUSEL STYLE MARVEL / BANDIT MANCHOT
   ============================================ */
.pc-marvel-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.pc-marvel-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--pc-border);
    background: var(--pc-dark2);
    color: var(--pc-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 5;
}
.pc-marvel-arrow:hover {
    border-color: var(--pc-red);
    background: var(--pc-red);
    transform: scale(1.1);
}
.pc-marvel-arrow-left { margin-right: 4px; }
.pc-marvel-arrow-right { margin-left: 4px; }

.pc-marvel-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: var(--pc-radius-lg);
}

.pc-marvel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 8px 4px;
}

.pc-marvel-card {
    flex-shrink: 0;
    width: 150px;
    background: var(--pc-dark3);
    border: 2px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    padding: 10px 10px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: var(--pc-white);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.pc-marvel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mc-color, var(--pc-red));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.pc-marvel-card:hover {
    transform: translateY(-6px);
    border-color: var(--mc-color, var(--pc-red));
    box-shadow: 0 12px 32px rgba(210,40,40,0.25);
    color: #fff;
}
.pc-marvel-card:hover::before {
    transform: scaleX(1);
}
.pc-marvel-card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    pointer-events: none;
}
.pc-marvel-card-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
    background: var(--pc-dark);
    border: 1px solid var(--pc-border);
}
.pc-marvel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.pc-marvel-card:hover .pc-marvel-card-img img {
    transform: scale(1.08);
}
.pc-marvel-card-icon-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    opacity: 0.4;
}
.pc-marvel-card-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc-marvel-card-count {
    font-size: 11px;
    color: var(--pc-gray-light);
    font-weight: 500;
}
.pc-marvel-card-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    color: var(--pc-red);
}
.pc-marvel-card:hover .pc-marvel-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.pc-marvel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
}
.pc-marvel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pc-dark4);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.pc-marvel-dot.active {
    background: var(--pc-red);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   FOOTER UNIQUE 4 colonnes
   ============================================ */
.pc-footer {
    background: var(--pc-dark);
    border-top: 1px solid var(--pc-border);
    padding: 48px 0 24px;
    margin-top: 40px;
}
.pc-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.pc-footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pc-white);
    margin-bottom: 16px;
}
.pc-footer-col a {
    display: block;
    color: var(--pc-gray-light);
    font-size: 13px;
    padding: 4px 0;
    transition: color 0.2s ease;
}
.pc-footer-col a:hover {
    color: var(--pc-red-light);
}
.pc-footer-desc {
    font-size: 13px;
    color: var(--pc-gray-light);
    line-height: 1.6;
}
.pc-footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}
.pc-footer-bottom p {
    font-size: 12px;
    color: var(--pc-gray);
}
.pc-footer-admin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--pc-gray);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}
.pc-footer-admin:hover {
    opacity: 1;
    color: var(--pc-red);
}

@media (max-width: 900px) {
    .pc-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .pc-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .pc-hero-red-btn {
        padding: 16px 32px;
        font-size: 18px;
    }
    .pc-marvel-card {
        width: 150px;
        padding: 18px 12px 16px;
    }
}

/* ============================================
   PAGINATION STYLE
   ============================================ */
.pc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    padding: 16px 0;
}
.pc-pagination-btn {
    min-width: 40px;
    height: 40px;
    border-radius: var(--pc-radius);
    border: 1px solid var(--pc-border);
    background: var(--pc-dark3);
    color: var(--pc-gray-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    transition: all 0.2s ease;
}
.pc-pagination-btn:hover {
    border-color: var(--pc-red);
    color: var(--pc-white);
    background: var(--pc-dark4);
}
.pc-pagination-btn.active {
    background: var(--pc-red);
    border-color: var(--pc-red);
    color: #fff;
}
.pc-pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.pc-pagination-info {
    font-size: 13px;
    color: var(--pc-gray);
    text-align: center;
    margin-top: 8px;
}
.pc-pagination-btn-arrow {
    font-size: 18px;
    padding: 0 14px;
}


/* ============================================
   MARVEL CAROUSEL - FULL WIDTH SECTION
   ============================================ */
.pc-marvel-section {
    background: linear-gradient(180deg, var(--pc-bg) 0%, var(--pc-bg2) 100%);
    padding: 40px 0 30px;
    overflow: hidden;
}

.pc-marvel-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.pc-marvel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pc-marvel-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--pc-white);
}

.pc-marvel-header-right {
    display: flex;
    gap: 8px;
}

/* ============================================
   SEE-ALL BANNER (remplace bouton "Tout voir")
   ============================================ */
.pc-seeall-banner {
    background: linear-gradient(135deg, var(--pc-red) 0%, var(--pc-red-dark) 100%);
    padding: 18px 0;
}

.pc-seeall-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pc-seeall-text {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.pc-seeall-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 24px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--pc-transition);
    backdrop-filter: blur(10px);
}

.pc-seeall-link:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .pc-seeall-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .pc-marvel-title {
        font-size: 20px;
    }
}


/* ============================================
   HERO COMPACT - tout visible sans scroll
   ============================================ */
.pc-hero-compact {
    height: auto !important;
    min-height: auto !important;
    padding: 28px 0 20px !important;
    text-align: center;
}

.pc-hero-compact .pc-hero-content {
    max-width: 100%;
    padding: 0 24px;
}

.pc-hero-title-compact {
    font-size: 28px !important;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 8px !important;
}

.pc-hero-desc-compact {
    font-size: 14px;
    color: var(--pc-gray-light);
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pc-hero-stats-compact {
    justify-content: center;
    gap: 24px !important;
    margin-top: 12px;
}

.pc-hero-stats-compact .pc-hero-stat .number {
    font-size: 22px;
}

.pc-hero-stats-compact .pc-hero-stat .label {
    font-size: 11px;
}

.pc-hero-compact .pc-hero-badge {
    margin-bottom: 10px;
    font-size: 10px;
    padding: 4px 12px;
}

.pc-hero-compact .pc-hero-particles { display: none; }

/* ============================================
   MARVEL SECTION - pleine largeur bien visible
   ============================================ */
.pc-marvel-section {
    background: linear-gradient(180deg, var(--pc-bg) 0%, var(--pc-bg2) 100%);
    padding: 24px 0 20px;
    overflow: visible;
}

.pc-marvel-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    overflow: visible;
}

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

.pc-marvel-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--pc-white);
}

.pc-marvel-header-right {
    display: flex;
    gap: 6px;
}

/* SEE-ALL BANNER */
.pc-seeall-banner {
    background: linear-gradient(135deg, var(--pc-red) 0%, var(--pc-red-dark) 100%);
    padding: 12px 0;
}

.pc-seeall-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pc-seeall-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.pc-seeall-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.pc-seeall-link:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .pc-seeall-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 0 16px;
    }
    .pc-hero-title-compact { font-size: 22px; }
    .pc-marvel-title { font-size: 17px; }
    .pc-hero-stats-compact { gap: 14px !important; }
    .pc-hero-stats-compact .pc-hero-stat .number { font-size: 18px; }
}
CSS_APPENDED

/* ============================================
   Mon Compte - Navigation Link
   ============================================ */
.pc-account-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    background: rgba(210,40,40,0.25);
    border: 1px solid rgba(210,40,40,0.4);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin-left: 8px;
}
.pc-account-link:hover {
    background: rgba(210,40,40,0.45);
    color: #fff;
    border-color: rgba(210,40,40,0.6);
}
.pc-account-avatar {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--primary, #d22828);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}
.pc-account-login-icon {
    background: rgba(210,40,40,0.35);
    font-size: 14px;
}
.pc-account-name {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
    line-height: 1.2;
}

/* Sidebar account link */
.pc-sidebar-account {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.pc-sidebar-account:hover {
    background: rgba(210,40,40,0.15);
    color: #fff;
}
.pc-sidebar-account .sidebar-icon {
    font-size: 18px;
}

/* Mobile: hide account name, show only avatar */
@media (max-width: 900px) {
    .pc-account-name {
        display: none;
    }
    .pc-account-link {
        padding: 6px 8px;
        margin-left: 4px;
    }
}

/* ============================================
   MEMBERSHIP PROMO - Section "Devenez Membre"
   ============================================ */
.pc-member-promo {
    position: relative;
    margin: 28px 24px 0;
    border-radius: 16px;
    overflow: visible;
    background: linear-gradient(135deg, #1a0000 0%, #0d0d0d 50%, #0a0008 100%);
    border: 1px solid rgba(210,40,40,0.2);
    box-shadow: 0 8px 40px rgba(210,40,40,0.08), 0 0 0 1px rgba(255,255,255,0.03) inset;
}

.pc-member-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(210,40,40,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 30%, rgba(210,40,40,0.06) 0%, transparent 50%);
    pointer-events: none;
}

.pc-member-promo::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(210,40,40,0.03) 10%, transparent 20%);
    animation: pcPromoShine 12s linear infinite;
    pointer-events: none;
}

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

.pc-member-promo-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 44px;
    overflow: hidden;
    border-radius: 16px;
}

.pc-member-promo-left {
    flex: 1;
    min-width: 0;
}

.pc-member-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(210,40,40,0.12);
    color: var(--pc-red);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    border: 1px solid rgba(210,40,40,0.25);
}

.pc-member-promo-badge .badge-star {
    font-size: 13px;
    animation: pcBadgePulse 2s ease-in-out infinite;
}

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

.pc-member-promo h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--pc-white);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.pc-member-promo h2 .promo-highlight {
    background: linear-gradient(135deg, var(--pc-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pc-member-promo p {
    font-size: 14px;
    color: var(--pc-gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 480px;
}

.pc-member-promo-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 24px;
}

.pc-member-benefit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.pc-member-benefit .benefit-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(210,40,40,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.pc-member-promo-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pc-member-promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--pc-red) 0%, var(--pc-red-dark) 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(210,40,40,0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pc-member-promo-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.pc-member-promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(210,40,40,0.45);
    color: #fff;
}

.pc-member-promo-cta:hover::before {
    opacity: 1;
}

.pc-member-promo-cta .cta-arrow {
    font-size: 16px;
    transition: transform 0.3s;
}

.pc-member-promo-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.pc-member-promo-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--pc-gray-light);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.pc-member-promo-secondary:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: var(--pc-white);
}

/* Right side - visual element */
.pc-member-promo-right {
    flex-shrink: 0;
    position: relative;
}

.pc-member-promo-visual {
    width: 70px;
    height: 70px;
    position: relative;
}

.pc-member-promo-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(210,40,40,0.2);
    animation: pcRingRotate 20s linear infinite;
}

.pc-member-promo-ring:nth-child(1) {
    inset: 0;
    border-color: rgba(210,40,40,0.15);
    animation-duration: 25s;
}

.pc-member-promo-ring:nth-child(2) {
    inset: 6px;
    border-color: rgba(210,40,40,0.25);
    animation-duration: 18s;
    animation-direction: reverse;
}

.pc-member-promo-ring:nth-child(3) {
    inset: 14px;
    border-color: rgba(210,40,40,0.35);
    animation-duration: 12s;
}

.pc-member-promo-ring::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--pc-red);
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(210,40,40,0.6);
}

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

.pc-member-promo-center-icon {
    position: absolute;
    inset: 22px;
    background: linear-gradient(135deg, var(--pc-red) 0%, var(--pc-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 40px rgba(210,40,40,0.3);
}

/* Close button for logged-in users who don't want to see it */
.pc-member-promo-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--pc-gray-light);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}

.pc-member-promo-close:hover {
    background: rgba(210,40,40,0.15);
    border-color: rgba(210,40,40,0.3);
    color: var(--pc-white);
}

/* Responsive */
@media (max-width: 900px) {
    .pc-member-promo-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        gap: 24px;
    }

    .pc-member-promo p {
        margin-left: auto;
        margin-right: auto;
    }

    .pc-member-promo-benefits {
        justify-content: center;
    }

    .pc-member-promo-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .pc-member-promo-right {
        order: -1;
    }

    .pc-member-promo-visual {
        width: 55px;
        height: 55px;
    }

    .pc-member-promo-ring:nth-child(2) { inset: 4px; }
    .pc-member-promo-ring:nth-child(3) { inset: 10px; }

    .pc-member-promo-center-icon {
        inset: 17px;
        font-size: 16px;
    }

    .pc-member-promo h2 {
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .pc-member-promo {
        margin: 16px 12px 0;
        border-radius: 12px;
    }

    .pc-member-promo-inner {
        padding: 20px 16px;
    }

    .pc-member-promo-visual {
        width: 45px;
        height: 45px;
    }

    .pc-member-promo-center-icon {
        inset: 13px;
        font-size: 14px;
    }

    .pc-member-promo h2 {
        font-size: 19px;
    }

    .pc-member-promo-actions {
        flex-direction: column;
        width: 100%;
    }

    .pc-member-promo-cta,
    .pc-member-promo-secondary {
        justify-content: center;
        width: 100%;
    }
}


/* ============================================
   PAPY CLUB - Zone Banniere / Pub du bandeau
   ============================================ */
.pc-banner-zone{transition:all .4s cubic-bezier(.25,.8,.25,1);box-shadow:0 8px 32px rgba(0,0,0,0.4);}
.pc-banner-zone:hover{box-shadow:0 12px 40px rgba(0,0,0,0.5);}

/* Animations de la zone banniere */
@keyframes pcMzFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes pcMzPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
@keyframes pcMzRotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
@keyframes pcMzBounce{0%,100%{transform:translateY(0)}25%{transform:translateY(-8px)}75%{transform:translateY(4px)}}
.pc-mz-anim-float{animation:pcMzFloat 3s ease-in-out infinite}
.pc-mz-anim-pulse{animation:pcMzPulse 2s ease-in-out infinite}
.pc-mz-anim-rotate{animation:pcMzRotate 8s linear infinite}
.pc-mz-anim-bounce{animation:pcMzBounce 2s ease-in-out infinite}

/* Floating media zone - overflow above/below the promo band */
.pc-promo-media-zone.pc-mz-floating {
    position: relative;
    overflow: visible !important;
}
.pc-promo-media-zone.pc-mz-layer-below {
    z-index: 0 !important;
}
.pc-promo-media-zone.pc-mz-layer-above {
    z-index: 10 !important;
}


/* ============================================================
   YouTube Music-Inspired Design System - Homogeneous dark UI
   ============================================================ */

/* --- Consistent card hover effects --- */
.pc-video-card,
.pc-playlist-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pc-video-card:hover,
.pc-playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(210, 40, 40, 0.15);
}

/* --- Filter tabs (YouTube Music pills) --- */
.pc-filter-tab {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    color: var(--pc-gray-light);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.pc-filter-tab:hover {
    background: var(--pc-dark3);
    color: var(--pc-white);
}
.pc-filter-tab.active {
    background: var(--pc-white);
    color: var(--pc-dark);
    font-weight: 600;
}

/* --- Section headers --- */
.pc-section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.pc-section-header {
    margin-bottom: 24px;
}

/* --- Playlist panel --- */
.pc-pl-panel {
    background: var(--pc-dark2);
    border-radius: var(--pc-radius-lg);
    border: 1px solid var(--pc-border);
}
.pc-pl-card:hover {
    background: var(--pc-dark3);
}

/* --- Music track items --- */
.pc-audio-track-item:hover {
    background: var(--pc-dark3);
    border-radius: var(--pc-radius);
}
.pc-audio-track-item.active {
    background: rgba(210, 40, 40, 0.1);
    border-left: 3px solid var(--pc-red);
}

/* --- Breadcrumb --- */
.pc-breadcrumb {
    font-size: 13px;
    color: var(--pc-gray-light);
}
.pc-breadcrumb a {
    color: var(--pc-gray-light);
    text-decoration: none;
    transition: color 0.2s;
}
.pc-breadcrumb a:hover {
    color: var(--pc-white);
}

/* --- Sidebar nav items --- */
.pc-sidebar-overlay .nav-item {
    transition: all 0.2s;
    border-radius: var(--pc-radius);
    margin: 2px 8px;
}
.pc-sidebar-overlay .nav-item:hover,
.pc-sidebar-overlay .nav-item.active {
    background: var(--pc-dark3);
}
.pc-sidebar-overlay .nav-item.active {
    background: rgba(210, 40, 40, 0.15);
    color: var(--pc-red-light);
}

/* --- Pagination --- */
.pc-pagination a,
.pc-pagination span {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--pc-radius);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.pc-pagination a:hover {
    background: var(--pc-dark3);
}
.pc-pagination .active {
    background: var(--pc-red);
    color: white;
}

/* --- Search bar --- */
.pc-search-box {
    background: var(--pc-dark3);
    border: 1px solid transparent;
    border-radius: 24px;
    transition: all 0.3s;
}
.pc-search-box:focus-within {
    border-color: var(--pc-red);
    box-shadow: 0 0 0 1px var(--pc-red);
}

/* --- Video card info --- */
.pc-video-info {
    padding: 10px 4px;
}
.pc-video-title,
.pc-video-info h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-video-meta {
    font-size: 12px;
    color: var(--pc-gray-light);
    margin-top: 4px;
}

/* --- Phone mode color fix --- */
.phone-main {
    --red: #d22828 !important;
    --panel: var(--pc-dark2) !important;
    --card: var(--pc-dark3) !important;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--pc-bg); }
::-webkit-scrollbar-thumb { background: var(--pc-gray); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pc-gray-light); }

/* --- Content layout --- */
/* --- Content layout --- */
.pc-main {
    min-height: 100vh;
    background: var(--pc-bg);
}
.pc-section { padding: 24px 0; }
.pc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 768px) {
    .pc-container { padding: 0 16px; }
    .pc-section { padding: 16px 0; }
}

/* ========== YouTube Music Design System ========== */

.pc-video-card,.pc-playlist-card{transition:all .25s cubic-bezier(.4,0,.2,1)}
.pc-video-card:hover,.pc-playlist-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(210,40,40,.15)}
.pc-filter-tab{padding:8px 20px;border-radius:20px;font-size:14px;font-weight:500;background:0 0;color:var(--pc-gray-light);border:1px solid transparent;cursor:pointer;transition:all .2s}
.pc-filter-tab:hover{background:var(--pc-dark3);color:#fff}
.pc-filter-tab.active{background:#fff;color:var(--pc-dark);font-weight:600}
.pc-section-title{font-size:24px;font-weight:700;letter-spacing:-.3px}
.pc-section-header{margin-bottom:24px}
.pc-pl-panel{background:var(--pc-dark2);border-radius:var(--pc-radius-lg);border:1px solid var(--pc-border)}
.pc-pl-card:hover{background:var(--pc-dark3)}
.pc-audio-track-item:hover{background:var(--pc-dark3);border-radius:var(--pc-radius)}
.pc-audio-track-item.active{background:rgba(210,40,40,.1);border-left:3px solid var(--pc-red)}
.pc-breadcrumb{font-size:13px;color:var(--pc-gray-light)}
.pc-breadcrumb a{color:var(--pc-gray-light);text-decoration:none;transition:color .2s}
.pc-breadcrumb a:hover{color:#fff}
.pc-sidebar-overlay .nav-item{transition:all .2s;border-radius:var(--pc-radius);margin:2px 8px}
.pc-sidebar-overlay .nav-item:hover,.pc-sidebar-overlay .nav-item.active{background:var(--pc-dark3)}
.pc-sidebar-overlay .nav-item.active{background:rgba(210,40,40,.15);color:var(--pc-red-light)}
.pc-pagination a,.pc-pagination span{min-width:40px;height:40px;display:inline-flex;align-items:center;justify-content:center;border-radius:var(--pc-radius);font-size:14px;font-weight:500;transition:all .2s}
.pc-pagination a:hover{background:var(--pc-dark3)}
.pc-pagination .active{background:var(--pc-red);color:#fff}
.pc-search-box{background:var(--pc-dark3);border:1px solid transparent;border-radius:24px;transition:all .3s}
.pc-search-box:focus-within{border-color:var(--pc-red);box-shadow:0 0 0 1px var(--pc-red)}
.pc-video-info{padding:10px 4px}
.pc-video-title,.pc-video-info h3{font-size:14px;font-weight:500;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.pc-video-meta{font-size:12px;color:var(--pc-gray-light);margin-top:4px}
.phone-main{--red:#d22828!important;--panel:var(--pc-dark2)!important;--card:var(--pc-dark3)!important}
::-webkit-scrollbar{width:8px;height:8px}
::-webkit-scrollbar-track{background:var(--pc-bg)}
::-webkit-scrollbar-thumb{background:var(--pc-gray);border-radius:4px}
::-webkit-scrollbar-thumb:hover{background:var(--pc-gray-light)}
.pc-main{min-height:100vh;background:var(--pc-bg)}
.pc-section{padding:24px 0}
.pc-container{max-width:1400px;margin:0 auto;padding:0 24px}
@media(max-width:768px){.pc-container{padding:0 16px}.pc-section{padding:16px 0}}


/* Ensure chatbot is always on top */
#pc-chat-btn { z-index: 99999 !important; }
#pc-chat-window { z-index: 99998 !important; }
.pc-chat-toast { z-index: 100000 !important; }

/* ============================================
   Dark-themed video controls (pseudo-elements)
   ============================================ */
video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
video::-webkit-media-controls-play-button {
    background-color: rgba(210, 40, 40, 0.85);
    border-radius: 50%;
}
video::-webkit-media-controls-play-button:hover {
    background-color: rgba(210, 40, 40, 1);
}
video::-webkit-media-controls-timeline {
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
}
video::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background: #d22828;
    border-radius: 50%;
}
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display {
    color: #ccc;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}
video::-webkit-media-controls-volume-slider {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
video::-webkit-media-controls-mute-button {
    background: none;
}
video::-webkit-media-controls-fullscreen-button {
    background: none;
}
/* Firefox pseudo-elements */
video::-moz-media-controls {
    background: rgba(0,0,0,0.85);
}

/* ===== SELECT / DROPDOWN FIX ===== */
/* Ensure dropdown text is always readable on dark backgrounds */
select option {
    background: #222 !important;
    color: #eee !important;
    padding: 6px 10px;
}
select optgroup {
    background: #1a1a2e !important;
    color: #ffd700 !important;
    font-weight: 700;
}


/* ===== YOUTUBE MUSIC STYLE: View Toggle + List View ===== */
.pc-view-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--pc-dark3, #222);
    border-radius: 8px;
    padding: 3px;
    border: 1px solid var(--pc-border, #333);
}
.pc-view-toggle-btn {
    padding: 6px 12px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: var(--pc-gray-light, #888);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pc-view-toggle-btn:hover { color: var(--pc-white, #fff); }
.pc-view-toggle-btn.active {
    background: var(--pc-red, #d22828);
    color: #fff;
}
.pc-view-toggle-btn .btn-label { font-size: 12px; font-weight: 600; }

/* List View (YouTube Music style) */
.pc-list-view {
    display: none;
    max-height: 75vh;
    overflow-y: auto;
    border-radius: var(--pc-radius-lg, 12px);
    border: 1px solid var(--pc-border, #333);
    background: var(--pc-dark2, #1a1a1a);
}
.pc-list-view.show { display: block; }
.pc-list-header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: 40px 100px 1fr 100px 80px;
    gap: 12px;
    align-items: center;
    padding: 10px 16px;
    background: var(--pc-dark3, #222);
    border-bottom: 1px solid var(--pc-border, #333);
    font-size: 11px;
    font-weight: 700;
    color: var(--pc-gray-light, #888);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pc-list-row {
    display: grid;
    grid-template-columns: 40px 100px 1fr 100px 80px;
    gap: 12px;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(51,51,51,0.3);
    text-decoration: none;
    color: inherit;
}
.pc-list-row:hover { background: var(--pc-dark3, #2a2a2a); }
.pc-list-row.active {
    background: rgba(210,40,40,0.08);
    border-left: 3px solid var(--pc-red, #d22828);
}
.pc-list-row-num {
    font-size: 12px;
    color: var(--pc-gray-light, #888);
    text-align: center;
}
.pc-list-row-thumb {
    width: 90px;
    height: 51px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--pc-dark3, #222);
    position: relative;
    flex-shrink: 0;
}
.pc-list-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pc-list-row-thumb .list-thumb-dur {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 9px;
    padding: 1px 5px;
    border-radius: 3px;
    font-weight: 600;
}
.pc-list-row-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--pc-white, #fff);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc-list-row.active .pc-list-row-title {
    color: var(--pc-red, #d22828);
    font-weight: 700;
}
.pc-list-row-cat {
    font-size: 11px;
    color: var(--pc-gray-light, #888);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc-list-row-size {
    font-size: 11px;
    color: var(--pc-gray-light, #888);
    text-align: right;
}

@media (max-width: 768px) {
    .pc-list-header { display: none; }
    .pc-list-row {
        grid-template-columns: 80px 1fr;
        gap: 10px;
        padding: 10px 12px;
    }
    .pc-list-row-num, .pc-list-row-cat, .pc-list-row-size { display: none; }
    .pc-list-row-thumb { width: 80px; height: 45px; }
}


/* ============================================
   YouTube Music Style Additions
   ============================================ */

/* Roboto font import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* Selection color */
::selection {
  background: rgba(255, 0, 0, 0.3);
}

/* Content sections - YouTube Music style */
.pc-content-section {
  padding: 16px 0;
}

.pc-content-section h2,
.pc-content-section .section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
  color: var(--pc-white);
}

/* Cards - YouTube Music hover effect */
.pc-card,
.media-card,
.video-card,
.karaoke-card {
  border-radius: var(--pc-radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--pc-dark3);
}

.pc-card:hover,
.media-card:hover,
.video-card:hover,
.karaoke-card:hover {
  transform: scale(1.02);
  box-shadow: var(--pc-shadow-hover);
}

/* Buttons - YouTube Music style */
.pc-btn,
button.pc-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--pc-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pc-btn-primary,
button.pc-btn-primary {
  background: var(--pc-red);
  color: #fff;
}

.pc-btn-primary:hover {
  background: var(--pc-red-dark);
}

.pc-btn-secondary,
button.pc-btn-secondary {
  background: var(--pc-hover-bg);
  color: var(--pc-white);
}

.pc-btn-secondary:hover {
  background: var(--pc-hover-bg-strong);
}

/* Input fields */
input[type="text"],
input[type="search"],
.pc-search-box input {
  background: var(--pc-dark3);
  border: 1px solid var(--pc-border);
  border-radius: 20px;
  color: var(--pc-white);
  transition: var(--pc-transition);
}

input[type="text"]:focus,
input[type="search"]:focus,
.pc-search-box input:focus {
  border-color: var(--pc-hover-bg-strong);
  background: #1a1a1a;
}

/* Scrollbar - YouTube Music style */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 100%, 0.3);
}

/* Footer - YouTube Music style */
.pc-footer {
  background: var(--pc-dark2);
  border-top: 1px solid var(--pc-border-light);
  padding: 32px 0;
  margin-top: 48px;
}

.pc-footer a {
  color: var(--pc-gray-light);
  transition: var(--pc-transition);
}

.pc-footer a:hover {
  color: var(--pc-white);
}

/* Sidebar overlay - YouTube Music style */
.pc-sidebar-overlay {
  background: var(--pc-dark2);
  border-right: 1px solid var(--pc-border-light);
}

.pc-sidebar-overlay a {
  color: var(--pc-gray-light);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 2px 8px;
  transition: var(--pc-transition);
}

.pc-sidebar-overlay a:hover,
.pc-sidebar-overlay a.active {
  background: var(--pc-hover-bg);
  color: var(--pc-white);
}

/* Play button overlays on cards */
.pc-card .play-overlay,
.media-card .play-overlay,
.video-card .play-overlay {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pc-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255,0,0,0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}

.pc-card:hover .play-overlay,
.media-card:hover .play-overlay,
.video-card:hover .play-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Grid items - YouTube Music card layout */
.pc-grid .pc-card img,
.pc-grid .media-card img,
.pc-grid .video-card img {
  border-radius: var(--pc-radius);
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* Tags / Chips */
.pc-tag,
.pc-chip {
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  background: var(--pc-hover-bg);
  color: var(--pc-gray-light);
  transition: var(--pc-transition);
  cursor: pointer;
  white-space: nowrap;
}

.pc-tag:hover,
.pc-tag.active,
.pc-chip:hover,
.pc-chip.active {
  background: var(--pc-hover-bg-strong);
  color: var(--pc-white);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .pc-header {
    padding: 0 12px;
  }
  .pc-nav a {
    padding: 6px 12px;
    font-size: 12px;
  }
}

