/* ==========================================================
   EAZY VIEW - CINEMATIC | Hostinger Pure CSS Styling
   Otimizado para Alta Performance em Servidor Partilhado
   ========================================================== */

:root {
  --bg-main: #07080c;
  --bg-card: #0e121d;
  --bg-card-hover: #141928;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-gold: #f59e0b;
  --accent-gold-hover: #fbbf24;
  --accent-cyan: #06b6d4;
  --accent-red: #ef4444;
  --accent-purple: #a855f7;
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(245, 158, 11, 0.5);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

html, body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #07080c;
}
::-webkit-scrollbar-thumb {
  background: #1f273b;
  border-radius: 999px;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header & Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 8, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.brand-text span {
  display: block;
  line-height: 1.1;
}

.brand-sub {
  font-size: 9px;
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-btn {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}

.nav-btn:hover, .nav-btn.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-vip {
  background: linear-gradient(135deg, var(--accent-gold), #eab308);
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  transition: transform 0.2s;
}

.btn-vip:hover {
  transform: scale(1.04);
}

/* Maintenance ticker */
.ticker {
  background: #0d121f;
  border-bottom: 1px solid var(--border-glass);
  padding: 6px 0;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.ticker-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  margin-right: 6px;
  box-shadow: 0 0 8px #10b981;
}

/* Hero section */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 30px;
  background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.05), transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.8fr 1fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

@media (min-width: 600px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-synopsis {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: #000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.25);
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-poster {
  position: relative;
  aspect-ratio: 9/13;
  max-width: 260px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  border: 2px solid var(--border-glass);
  cursor: pointer;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

/* 2-Dollar Banner */
.notice-banner {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.15), rgba(14, 18, 29, 0.8), rgba(6, 182, 212, 0.15));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .notice-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.notice-text h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.notice-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Filters & Search */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 16px;
}

.genre-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.genre-scroll::-webkit-scrollbar {
  display: none;
}

.genre-pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.2s;
}

.genre-pill:hover, .genre-pill.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 280px;
}

.search-box input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  border-radius: 999px;
  border: 1px solid var(--border-glass);
  background: rgba(14, 18, 29, 0.9);
  color: #fff;
  font-size: 0.8rem;
  outline: none;
}

.search-box input:focus {
  border-color: var(--accent-gold);
}

.search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Drama Cards Grid */
.dramas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .dramas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 900px) {
  .dramas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.drama-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}

.drama-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.card-cover {
  position: relative;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

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

.drama-card:hover .card-cover img {
  transform: scale(1.06);
}

.card-platform-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-youtube { color: #f87171; border-color: rgba(239, 68, 68, 0.4); }
.badge-tiktok { color: #38bdf8; border-color: rgba(6, 182, 212, 0.4); }

.card-rating {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0,0,0,0.7);
  font-size: 10px;
  font-weight: 800;
  color: var(--accent-gold);
}

.card-episodes-pill {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0,0,0,0.75);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

.card-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

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

.play-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.card-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.card-genre {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.card-title {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 3px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}

.card-title:hover {
  color: var(--accent-gold);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-glass);
  padding-top: 6px;
}

/* Modals Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

/* Reel Player Modal */
.player-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
}

.player-modal.active {
  display: flex;
}

.player-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 100%;
  max-height: 94vh;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
}

.player-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), transparent);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.player-video-wrap {
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-video-wrap iframe, .player-video-wrap video {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.player-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.player-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-episode-btn {
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
}

.nav-episode-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav-episode-btn.primary {
  background: var(--accent-gold);
  color: #000;
}

/* Paywall Lock Box */
.paywall-box {
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: linear-gradient(180deg, #101524, #070911);
}

.paywall-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent-gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Payment Tabs inside Modal */
.pay-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.pay-tab {
  padding: 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pay-tab.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.pay-info-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.pay-highlight {
  background: #000;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-glass);
  background: #040508;
  padding: 30px 0 60px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

/* Mobile Bottom Bar */
.mobile-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(7, 8, 12, 0.96);
  border-top: 1px solid var(--border-glass);
  z-index: 40;
  justify-content: space-around;
  align-items: center;
}

@media (min-width: 641px) {
  .mobile-bar {
    display: none;
  }
}

.mobile-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 700;
}

.mobile-item.active, .mobile-item:hover {
  color: var(--accent-gold);
}

/* ==========================================================
   EAZY VIEW - CINEMATIC | Camada Extra: 4 Idiomas, Contas,
   Cursos, Solicitações e Painel de Acesso
   ========================================================== */

/* ---- Seletor de Idioma (4 opções) ---- */
.lang-switch {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  transition: all 0.2s;
}

.lang-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: #000;
  box-shadow: 0 2px 8px rgba(245,158,11,0.35);
}

.lang-list { display: flex; flex-direction: column; gap: 8px; }

.lang-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.lang-opt span { font-size: 0.72rem; color: var(--text-muted); }

.lang-opt.active {
  background: rgba(245,158,11,0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.lang-inline { display: flex; flex-wrap: wrap; gap: 5px; }

.lang-inline-btn {
  padding: 4px 8px;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 6px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  color: #94a3b8;
}

.lang-inline-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

.lang-note {
  font-size: 0.7rem;
  color: #cbd5e1;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 10px;
  border-radius: 8px;
  text-align: center;
}

/* Badges de idioma nos cards */
.lang-badges {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 3px;
  z-index: 3;
}

.lang-badges span {
  font-size: 8px;
  font-weight: 900;
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(245,158,11,0.5);
  color: var(--accent-gold);
  padding: 2px 4px;
  border-radius: 4px;
}

.lang-badges.inline { position: static; margin-top: 6px; }

.lock-badge {
  position: absolute;
  top: 34px;
  left: 8px;
  z-index: 3;
  font-size: 8px;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(0,0,0,0.85);
  color: #fbbf24;
  border: 1px solid rgba(251,191,36,0.4);
}

.lock-badge.free {
  color: #34d399;
  border-color: rgba(52,211,153,0.4);
}

/* ---- Botão de Conta ---- */
.btn-account {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-glass);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-account:hover { background: rgba(255,255,255,0.15); }

.btn-account.logged {
  background: rgba(52,211,153,0.15);
  border-color: rgba(52,211,153,0.45);
  color: #6ee7b7;
}

.btn-vip.is-vip {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

/* ---- Cursos ---- */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.section-head h2 { font-size: 1.15rem; font-weight: 900; }

.section-head span { font-size: 0.72rem; color: var(--text-muted); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 760px) { .courses-grid { grid-template-columns: repeat(4, 1fr); } }

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s;
}

.course-card:hover { transform: translateY(-4px); border-color: var(--border-focus); }

.course-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

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

.course-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(0,0,0,0.35);
}

.course-free {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 8px;
  font-weight: 900;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--accent-gold);
  color: #000;
}

.course-free.green { background: #10b981; color: #042f1e; }
.course-free.gold { background: rgba(0,0,0,0.85); color: #fbbf24; border: 1px solid rgba(251,191,36,0.4); }

.course-info { padding: 10px 12px; }
.course-info h4 { font-size: 0.8rem; font-weight: 800; line-height: 1.3; margin: 3px 0; }
.course-info p { font-size: 0.68rem; color: var(--text-muted); }

.video-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}

.video-frame iframe, .video-frame video { width: 100%; height: 100%; border: 0; }

/* ---- Player: extras ---- */
.ph-left { display: flex; align-items: center; gap: 6px; min-width: 0; }
.ph-right { display: flex; align-items: center; gap: 6px; }

.ep-chip {
  font-size: 9px;
  font-weight: 900;
  background: var(--accent-gold);
  color: #000;
  padding: 3px 6px;
  border-radius: 4px;
}

.ph-title {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.modal-close.inline {
  position: static;
  width: 28px;
  height: 28px;
  font-size: 0.9rem;
}

.ep-counter { font-size: 11px; color: #94a3b8; font-weight: 700; }

.ep-strip { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }

.ep-dot {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.ep-dot.active { background: var(--accent-gold); color: #000; }
.ep-dot.locked { opacity: 0.55; }

/* ---- Paywall / Sobre o acesso ---- */
.lock-chip {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #fbbf24;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  padding: 4px 10px;
  border-radius: 999px;
}

.paywall-txt {
  font-size: 0.78rem;
  color: #94a3b8;
  max-width: 300px;
  line-height: 1.5;
  margin: 8px 0 16px;
}

.paywall-btns { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 270px; }

.btn-secondary.purple { color: #c084fc; border-color: rgba(168,85,247,0.4); }
.btn-secondary.cyan { color: #67e8f9; border-color: rgba(6,182,212,0.4); }
.btn-secondary.gold { color: #fbbf24; border-color: rgba(245,158,11,0.5); }

.btn-ghost {
  background: transparent;
  color: #94a3b8;
  font-size: 0.75rem;
  text-decoration: underline;
}

.unlock-box {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin: 12px 0;
  font-size: 0.8rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unlock-box strong { color: var(--accent-gold); }

/* ---- Formulários ---- */
.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #cbd5e1;
  margin: 10px 0 4px;
}

.field {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-glass);
  background: #000;
  color: #fff;
  font-size: 0.85rem;
  font-family: inherit;
}

.field:focus { outline: none; border-color: var(--accent-gold); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 560px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.form-error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-top: 8px;
}

.pay-steps { font-size: 0.78rem; color: #cbd5e1; line-height: 1.55; margin-bottom: 12px; }

.link-btn {
  font-size: 0.74rem;
  color: var(--accent-gold);
  text-decoration: underline;
  font-weight: 700;
}

/* ---- Conta / Meu conteúdo ---- */
.account-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
  color: #000;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.role-tag {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: #6ee7b7;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.35);
  padding: 2px 8px;
  border-radius: 999px;
}

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }

.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
}

.stat strong { display: block; font-size: 1.2rem; color: var(--accent-gold); }
.stat span { font-size: 0.62rem; color: var(--text-muted); }

.mini-title { font-size: 0.75rem; font-weight: 800; color: #e2e8f0; margin: 10px 0 6px; }
.mini-empty { font-size: 0.74rem; color: var(--text-muted); }

.mini-item {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.76rem;
  color: #cbd5e1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  margin-bottom: 6px;
  cursor: pointer;
}

.mini-item:hover { background: rgba(255,255,255,0.1); color: #fff; }
.mini-item.status-granted { border-color: rgba(16,185,129,0.4); color: #6ee7b7; cursor: default; }
.mini-item.status-pending { border-color: rgba(245,158,11,0.4); color: #fbbf24; cursor: default; }

.loading-line { font-size: 0.78rem; color: var(--text-muted); }

.empty-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.empty-box a { color: var(--accent-gold); text-decoration: underline; }

/* ---- Detalhe ---- */
.detail-hero { position: relative; height: 170px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.detail-hero img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.detail-hero-info { position: absolute; bottom: 10px; left: 16px; right: 16px; }
.detail-hero-info h3 { font-size: 1.1rem; font-weight: 900; color: #fff; margin-top: 2px; }
.detail-syn { font-size: 0.82rem; color: #cbd5e1; line-height: 1.55; }

.ep-list { display: flex; flex-direction: column; gap: 6px; max-height: 250px; overflow-y: auto; }

.ep-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
}

.ep-row:hover { background: rgba(255,255,255,0.1); border-color: var(--border-focus); }

.ep-num {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #000;
  color: var(--accent-gold);
  font-size: 0.72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ep-name { flex: 1; font-size: 0.76rem; color: #e2e8f0; font-weight: 600; }
.ep-ico { font-size: 0.8rem; }

/* ---- Rodapé ---- */
.footer-brand { font-weight: 900; color: #fff; margin-bottom: 4px; }
.footer-sub { font-size: 0.72rem; color: var(--accent-gold); margin-bottom: 4px; }
.footer-pay { font-size: 0.72rem; margin-bottom: 6px; }
.footer-links a { color: #38bdf8; text-decoration: underline; }

.banner-btns { display: flex; gap: 8px; flex-wrap: wrap; }

.hide-m { display: none; }
@media (min-width: 760px) { .hide-m { display: inline; } }

/* Barra inferior mobile com 6 itens */
.mobile-item.gold { color: var(--accent-gold); }
