@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
--bg-primary: #0b0a0d;
--bg-secondary: #141218;
--bg-card: #1c1820;
--bg-elevated: #241e28;

--accent: #ff2e63; /* rojo sensual */
--accent-dim: rgba(255, 46, 99, 0.15);
--accent-hover: #e02656;

--red: #ff4d6d;
--blue: #6c5ce7; /* toque púrpura más adulto */

--text-primary: #f5f5f7;
--text-secondary: #a09bb0;
--text-muted: #6b657a;

--border: rgba(255,255,255,0.05);
--border-accent: rgba(255, 46, 99, 0.35);

--radius: 8px;
--radius-lg: 14px;

--shadow: 0 6px 28px rgba(0,0,0,0.65);

--sidebar-w: 220px;
--header-h: 64px;

--font-display: 'Bebas Neue', sans-serif;
--font-cond: 'Barlow Condensed', sans-serif;
--font-body: 'Barlow', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--bg-elevated); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

/* ===== LAYOUT ===== */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.content-area {
  display: flex;
  flex: 1;
  padding-top: var(--header-h);
}
.main-content {
  flex: 1;
  min-width: 0;
  padding: 32px 32px 48px;
  margin-left: var(--sidebar-w);
}
.main-content.no-sidebar {
  margin-left: 0;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 24px;
  z-index: 1000;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.85; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { color: #0a0a0f; }
.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--text-primary);
  line-height: 1;
}
.logo-text span { color: var(--accent); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.header-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.header-nav a.active {
  color: var(--accent);
}

.header-search {
  flex: 1;
  max-width: 420px;
  margin-left: auto;
  position: relative;
}
.header-search input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 9px 44px 9px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s;
  outline: none;
}
.header-search input::placeholder { color: var(--text-muted); }
.header-search input:focus {
  border-color: var(--border-accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.header-search .search-icon {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: color 0.2s;
}
.header-search input:focus ~ .search-icon { color: var(--accent); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost {
  color: var(--text-secondary);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.15); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.hamburger:hover { background: var(--bg-elevated); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== SIDEBAR ===== */
.site-sidebar {
  width: var(--sidebar-w);
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  position: fixed;
  top: var(--header-h);
  left: 0;
  bottom: 0;
  overflow-y: auto;
  padding: 24px 0;
  z-index: 900;
  transition: transform 0.3s ease;
}
.sidebar-section {
  padding: 0 12px;
  margin-bottom: 28px;
}
.sidebar-label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 10px 10px;
}
.sidebar-nav a,
.sidebar-cats a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s;
  border-left: 2px solid transparent;
}
.sidebar-nav a:hover,
.sidebar-cats a:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}
.sidebar-nav a.active {
  color: var(--accent);
  background: var(--accent-dim);
  border-left-color: var(--accent);
}
.sidebar-nav a svg,
.sidebar-cats a svg { flex-shrink: 0; opacity: 0.7; }
.sidebar-nav a.active svg { opacity: 1; }

.cat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.sidebar-cats a:nth-child(1) .cat-dot { background: #ff3d57; }
.sidebar-cats a:nth-child(2) .cat-dot { background: #3d8bff; }
.sidebar-cats a:nth-child(3) .cat-dot { background: var(--accent); }
.sidebar-cats a:nth-child(4) .cat-dot { background: #ff8c3d; }
.sidebar-cats a:nth-child(5) .cat-dot { background: #b03dff; }
.sidebar-cats a:nth-child(6) .cat-dot { background: #3dffcc; }
.sidebar-cats a:nth-child(7) .cat-dot { background: #ff3daa; }
.sidebar-cats a:nth-child(8) .cat-dot { background: #ffd93d; }
.sidebar-cats a:nth-child(9) .cat-dot { background: #4dff3d; }
.sidebar-cats a:nth-child(10) .cat-dot { background: #3dfff2; }
.sidebar-cats a:nth-child(11) .cat-dot { background: #ff6f3d; }
.sidebar-cats a:nth-child(12) .cat-dot { background: #6a3dff; }
.sidebar-cats a:nth-child(13) .cat-dot { background: #3dff8b; }
.sidebar-cats a:nth-child(14) .cat-dot { background: #ff3d8b; }
.sidebar-cats a:nth-child(15) .cat-dot { background: #8bff3d; }
.sidebar-cats a:nth-child(16) .cat-dot { background: #3daaff; }
.sidebar-cats a:nth-child(17) .cat-dot { background: #ffbd3d; }
.sidebar-cats a:nth-child(18) .cat-dot { background: #a13dff; }
.sidebar-cats a:nth-child(19) .cat-dot { background: #3dff5e; }
.sidebar-cats a:nth-child(20) .cat-dot { background: #ff3d6a; }
.sidebar-cats a:nth-child(21) .cat-dot { background: #3d6aff; }
.sidebar-cats a:nth-child(22) .cat-dot { background: #ff3df2; }
.sidebar-cats a:nth-child(23) .cat-dot { background: #3dffb5; }
.sidebar-cats a:nth-child(24) .cat-dot { background: #ff573d; }
.sidebar-cats a:nth-child(25) .cat-dot { background: #573dff; }
.sidebar-cats a:nth-child(26) .cat-dot { background: #3dff99; }
.sidebar-cats a:nth-child(27) .cat-dot { background: #ff3d47; }
.sidebar-cats a:nth-child(28) .cat-dot { background: #3dcfff; }
.sidebar-cats a:nth-child(29) .cat-dot { background: #cfff3d; }
.sidebar-cats a:nth-child(30) .cat-dot { background: #ff3dc1; }
.sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 12px 24px;
}

/* ===== SECTION TITLE (h2) ===== */
.section-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title .see-all {
  margin-left: auto;
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.section-title .see-all:hover { color: var(--accent); border-color: var(--border-accent); }

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

/* ===== VIDEO CARD ===== */
.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
  position: relative;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,255,71,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,255,71,0.1);
}
.video-card:hover .card-play { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.video-card:hover .card-thumb img { transform: scale(1.06); }

.card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-elevated);
}
.card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-thumb .no-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-elevated), #1a1a2e);
  color: var(--text-muted);
}

.card-duration {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--accent);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

.card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  opacity: 0;
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 0 30px rgba(232,255,71,0.4);
}
.card-play svg { color: #0a0a0f; margin-left: 3px; }

.card-body {
  padding: 12px 14px 14px;
}
.card-cat {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}
.card-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0 8px;
}
.pagination button,
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s;
  gap: 6px;
}
.pagination button:hover,
.pagination a:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-elevated);
}
.pagination button.active,
.pagination a.active {
  background: var(--accent);
  color: #0a0a0f;
  border-color: var(--accent);
  font-weight: 700;
}
.pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.pagination .pg-dots {
  color: var(--text-muted);
  font-size: 16px;
  padding: 0 4px;
  cursor: default;
}

/* ===== ARTICLE STYLE ===== */
.article-content {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
}
.article-content h1, .article-content h2, .article-content h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  margin: 36px 0 14px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.article-content h1 { font-size: 48px; }
.article-content h2 { font-size: 34px; }
.article-content h3 { font-size: 26px; }
.article-content p { margin-bottom: 20px; }
.article-content strong { color: var(--text-primary); font-weight: 600; }
.article-content em { color: var(--accent); font-style: italic; }
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  background: var(--bg-card);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 28px 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
}
.article-content a { color: var(--accent); border-bottom: 1px solid rgba(232,255,71,0.3); transition: border-color 0.2s; }
.article-content a:hover { border-bottom-color: var(--accent); }
.article-content img { border-radius: var(--radius-lg); margin: 28px 0; width: 100%; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 20px; }
.article-content ul li, .article-content ol li { margin-bottom: 8px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content code {
  font-family: 'Courier New', monospace;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--accent);
}
.article-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 48px 24px;
  margin-left: var(--sidebar-w);
}
.site-footer.no-sidebar { margin-left: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ===== HERO FEATURED ===== */
.hero-featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  aspect-ratio: 21/8;
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-end;
}
.hero-featured img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,15,0.95) 35%, transparent 75%),
              linear-gradient(to top, rgba(10,10,15,0.7) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  max-width: 55%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; align-items: center; }
.btn-play {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-play:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ===== BADGE / TAGS ===== */
.tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}
.tag:hover { color: var(--accent); border-color: var(--border-accent); background: var(--accent-dim); }

/* ===== TOAST / SEARCH PAGE ===== */
.search-hero {
  text-align: center;
  padding: 48px 24px;
  margin-bottom: 32px;
}
.search-hero h1 {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.search-hero h1 span { color: var(--accent); }
.search-big {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.search-big input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 16px 58px 16px 28px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: all 0.25s;
}
.search-big input:focus {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}
.search-big button {
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #0a0a0f;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.search-big button:hover { background: var(--accent-hover); }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.filter-label {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 4px;
}
.filter-chip {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-elevated);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-chip:hover, .filter-chip.active {
  color: #0a0a0f;
  background: var(--accent);
  border-color: var(--accent);
}

/* ===== CATEGORY PAGE ===== */
.cat-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--accent-dim);
  filter: blur(60px);
}
.cat-icon-big {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cat-icon-big svg { color: #0a0a0f; width: 36px; height: 36px; }
.cat-hero-text h1 {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.cat-hero-text p { font-size: 15px; color: var(--text-secondary); }
.cat-stats {
  margin-left: auto;
  display: flex;
  gap: 32px;
}
.cat-stat {
  text-align: center;
}
.cat-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.cat-stat .lbl {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== VER PAGE ===== */
.ver-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.ver-main {}
.ver-aside {}

.video-player-wrapper {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;

  /* CONTROL ALTURA */
  aspect-ratio: auto;
  height: 500px; /* ajusta aquí */
  max-height: 70vh;
}

.video-player-wrapper iframe,
.video-player-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e0e18, #1a1a2e);
}
.video-placeholder .play-big {
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(232,255,71,0.35);
}
.video-placeholder .play-big:hover { transform: scale(1.08); box-shadow: 0 0 60px rgba(232,255,71,0.5); }
.video-placeholder .play-big svg { color: #0a0a0f; margin-left: 5px; }

.video-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.video-tab {
  padding: 10px 22px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  cursor: pointer;
}
.video-tab:hover { color: var(--text-secondary); }
.video-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.ver-title {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ver-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.ver-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.ver-meta-item strong { color: var(--text-primary); }
.ver-meta-item svg { color: var(--accent); }

.ver-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}
.ver-desc p { margin-bottom: 14px; }

.related-card {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  border-radius: var(--radius);
  padding: 10px 8px;
  margin: 0 -8px;
}
.related-card:hover { background: var(--bg-elevated); }
.related-thumb {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-elevated);
  position: relative;
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-thumb .rd-dur {
  position: absolute;
  bottom: 5px; right: 5px;
  background: rgba(10,10,15,0.85);
  color: var(--accent);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 3px;
}
.related-info { flex: 1; min-width: 0; }
.related-info .rt { font-weight: 600; font-size: 13px; line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-info .rm { font-size: 11px; color: var(--text-muted); font-family: var(--font-cond); font-weight: 600; }

/* ===== MOBILE ===== */
@media (max-width: 1200px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ver-layout { grid-template-columns: 1fr; }
  .ver-aside { max-width: 700px; }
}
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-search { max-width: 280px; }
  .cat-stats { display: none; }
  .main-content { margin-left: 0; padding: 24px 20px; }
  .site-footer { margin-left: 0; padding: 36px 24px 20px; }
  .site-sidebar {
    transform: translateX(-100%);
  }
  .site-sidebar.open { transform: translateX(0); }
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 850;
  }
  .sidebar-overlay.open { display: block; }
  .hero-title { font-size: 32px; }
  .hero-content { max-width: 80%; padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .header-search { display: none; }
  .hero-featured { aspect-ratio: 4/3; }
  .hero-content { max-width: 100%; }
  .cat-hero { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .ver-title { font-size: 28px; }
  .section-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
}
.video-player-wrapper{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    background:#000;
    border-radius:2px;
    overflow:hidden;
}

.video-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:15px;
}

.video-tab{
    border:none;
    background:#1c1c1c;
    color:#fff;
    padding:10px 16px;
    border-radius:10px;
    cursor:pointer;
    transition:.25s;
    font-weight:600;
}

.video-tab:hover{
    background:#333;
}

.video-tab.active{
    background:#e50914;
    color: #F0F8FF;
}

.tab-panel{
    position:absolute;
    inset:0;
    display:none;
}

.tab-panel.active{
    display:block;
}

.tab-panel iframe{
    width:100%;
    height:100%;
    border:none;
}
   .related-grid{
        display:grid;
        grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
        gap:18px;
    }

    .related-card{
        display:block;
        text-decoration:none;
        color:var(--text-primary);
        transition:.2s ease;
    }

    .related-card:hover{
        transform:translateY(-3px);
    }

    .related-thumb{
        position:relative;
        overflow:hidden;
        border-radius:12px;
        background:#111;
        aspect-ratio:16/9;
    }

    .related-thumb img{
        width:100%;
        height:100%;
        object-fit:cover;
        display:block;
        transition:.25s ease;
    }

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

    .video-time{
        position:absolute;
        right:8px;
        bottom:8px;
        background:rgba(0,0,0,.85);
        color:#fff;
        padding:3px 7px;
        border-radius:6px;
        font-size:12px;
        font-weight:600;
    }

    .related-body{
        padding-top:10px;
    }

    .related-title{
        font-size:15px;
        font-weight:600;
        line-height:1.35;
        margin:0 0 6px;

        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .related-meta{
        font-size:13px;
        color:var(--text-secondary);
    }

    .no-thumb{
        width:100%;
        height:100%;
        background:#ddd;
    }
