:root {
  --bg: #050508;
  --bg-rgb: 5, 5, 8;
  --panel: rgba(18, 18, 26, 0.7);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #a0a0b2;
  --pink: #ff7eb3;
  --orange: #ff7eb3;
  --accent: var(--orange);
  --radius: 24px;
  --shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glow: 0 0 20px rgba(255, 126, 179, 0.3);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

[hidden] {
  display: none !important;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', "Inter", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade { animation: fadeIn 0.6s ease-out forwards; }
.animate-slide { animation: slideInRight 0.8s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* --- Login Pink Style --- */
.pink-login-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  background: #0d0c11; 
  border: 1px solid #241f21;
  border-radius: 40px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  text-align: center;
}

.pink-logo-area {
  margin-bottom: 24px;
}

.pink-logo-area img {
  width: 80px;
  margin-bottom: 12px;
}

.pink-logo-area p {
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}

.v-input-group {
  position: relative;
  margin-bottom: 16px;
}

.v-input-group input {
  background: #1a1516;
  border: 1px solid #332a2c;
  border-radius: 16px;
  padding: 16px 16px 16px 48px;
  color: #fff;
  font-size: 14px;
}

.v-input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #544a4c;
}

.v-input-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.v-input-footer label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.v-input-footer a {
  text-decoration: none;
  font-weight: 700;
  color: var(--pink);
}

.btn-pink {
  width: 100%;
  background: var(--pink);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 8px 0 var(--pink-dark);
  cursor: pointer;
  transition: all 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
}

.btn-pink:active {
  transform: translateY(4px);
  box-shadow: 0 4px 0 var(--pink-dark);
}

.v-divider {
  margin: 30px 0;
  position: relative;
  height: 1px;
  background: #241f21;
}

.v-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0d0c11;
  padding: 0 10px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.v-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-social {
  background: #1a1516;
  border: 1px solid #332a2c;
  padding: 12px;
  border-radius: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.v-footer-text {
  margin-top: 30px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}

.v-footer-text a {
  color: var(--pink);
  text-decoration: underline;
}

/* --- General --- */
a {
  color: inherit;
  transition: all 0.2s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header {
  max-width: 1250px;
  margin: 20px auto;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(14, 12, 17, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 15px;
  position: sticky;
  top: 20px;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-dot {
  color: var(--pink);
}

.logo img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--pink));
}

.nav {
  margin-left: 10px;
  display: inline-flex;
  gap: 5px;
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 18px;
}

.header-utils i {
  cursor: pointer;
  transition: color 0.2s;
}

.header-utils i:hover {
  color: var(--pink);
}

.nav a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-vip {
  color: #ffd700 !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-plus18 {
  color: #ff6b6b !important;
  font-weight: 900 !important;
}

.nav a:hover,
.nav a.active {
  background: var(--line);
  color: var(--pink-soft);
}

.btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 24px;
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ff5294);
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 126, 179, 0.3);
  border-radius: 999px;
  font-weight: 700;
  text-transform: none;
}

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(255, 126, 179, 0.5);
  transform: translateY(-3px) scale(1.03);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--line);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s;
  order: 9; /* Garante que o hambÃºrguer fique no final */
}

.menu-toggle:hover {
  color: var(--pink);
}

.menu-toggle i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.menu-open .menu-toggle i {
  transform: rotate(90deg);
}

/* --- New Premium Hero --- */
.hero-yomu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
  position: relative;
  min-height: 100vh;
}

.hero-yomu .content-left {
  max-width: 600px;
  z-index: 10;
}

.hero-yomu h1 {
  font-size: clamp(48px, 10vw, 84px);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-yomu h1 span.highlight {
  background: linear-gradient(135deg, var(--orange), #ff5294);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-yomu .users-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
}

.hero-yomu .users-avatars {
  display: flex;
  margin-right: 8px;
}

.hero-yomu .users-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-right: -10px;
}

.hero-yomu .visual-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-yomu .main-char {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 0 50px rgba(255, 126, 179, 0.2));
  animation: float 4s ease-in-out infinite;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 5;
}

.badge-top {
  top: 10%;
  right: -20px;
}

.badge-bottom {
  bottom: 10%;
  left: -20px;
}

.floating-badge i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.badge-text span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.badge-text strong {
  display: block;
  font-size: 14px;
}

/* --- Section Titles --- */
.section-title {
  margin: 120px 0 60px;
  text-align: left;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
}

.section-title .accent-bar {
  width: 60px;
  height: 6px;
  background: var(--orange);
  border-radius: 999px;
  margin-bottom: 16px;
}

/* --- Auth Pages --- */
.auth-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.auth-card h1 {
  font-size: 32px;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.auth-card .sub {
  margin-bottom: 32px;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: #17141d;
  padding: 6px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.tabs .btn {
  padding: 10px;
  font-size: 14px;
  border: none;
}

.auth-form {
  display: grid;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

input {
  width: 100%;
  background: #17141d;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 14px 16px;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 126, 179, 0.1);
}

#authMessage {
  margin-top: 20px;
  font-size: 14px;
  color: var(--pink-soft);
}

/* --- Grid Sections --- */
.home-grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.simple-panel {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.simple-panel h2 {
  font-size: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
}

.list li {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.list li:last-child {
  border: none;
}

.list a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.list a:hover {
  color: var(--pink);
  transform: translateX(5px);
}

/* --- VIP Grid --- */
.glass-card {
  padding: 40px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 126, 179, 0.1);
}

.price {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
  color: #fff;
}

.price span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 400;
}

.glow-orange {
  filter: drop-shadow(0 0 10px var(--orange));
}

/* Responsive Cleanup */
@media (max-width: 968px) {
  .hero-yomu {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
  }

  .hero-yomu .content-left {
    order: 2;
  }

  .hero-yomu .visual-right {
    order: 1;
    margin-bottom: 40px;
  }

  .hero-yomu .users-badge {
    justify-content: center;
  }

  .floating-badge {
    display: none; /* Hide on small screens to avoid clutter */
  }

  .vip-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
}

.highlight {
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--orange);
  opacity: 0.2;
  z-index: -1;
  border-radius: 999px;
}

/* --- Footer --- */
.footer {
  margin-top: 100px;
  padding: 60px 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer p {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 968px) {
  .hero-clean {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }

  .row {
    justify-content: center;
  }

  .home-grid, .vip-grid, .landing-features {
    grid-template-columns: 1fr;
  }
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.action {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chapter-box {
  margin-top: 18px;
  padding: 14px;
}

.chapter-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.chapter-item:last-child {
  border-bottom: 0;
}

.chapter-item span {
  color: var(--muted);
  font-size: 13px;
}

.vip-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.vip-grid article {
  padding: 18px;
}

.vip-grid h3 {
  margin: 0;
}

.price {
  margin: 10px 0;
  font-size: 34px;
}

.muted {
  color: var(--muted);
}

.auth-wrap {
  max-width: 460px;
  margin: 28px auto 0;
}

.auth-card {
  padding: 18px;
}

.auth-card h1 {
  font-size: 28px;
  margin: 0 0 10px;
}

.tabs {
  margin: 12px 0;
  display: flex;
  gap: 8px;
}

.tabs button {
  flex: 1;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-form p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-clean,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    flex-wrap: nowrap; /* Garante que tudo fique em uma linha */
    padding-right: 12px; /* Aproxima o hambúrguer da borda */
  }
  .header-utils {
    margin-left: auto; /* Empurra para a direita naturalmente */
    display: flex !important;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    z-index: 1002;
    background: transparent;
    position: relative; /* Volta para o fluxo no estado normal */
    top: 0;
    right: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: 10px; /* Colado nos ícones */
  }

  /* Quando o menu está aberto, fixamos os ícones no topo ao lado do toggle */
  .header.menu-open .header-utils {
    position: absolute;
    top: 18px; /* Alinhado com o botão circular do menu */
    right: 65px; /* Distância segura do botão de fechar */
    margin-left: 0;
  }

  /* Ocultamos a nav e auth normais no mobile */
  .nav,
  .header-auth {
    display: none !important;
  }



  /* Estrutura do menu hambÃºrguer aberto */
  .header.menu-open {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    padding: 20px;
  }

  .header.menu-open .logo {
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 15px;
  }

  .header.menu-open .nav,
  .header.menu-open .header-auth {
    display: flex !important;
    width: 100%;
    flex-direction: column;
    margin-left: 0;
    gap: 10px;
  }

  .header.menu-open .nav a {
    width: 100%;
    padding: 12px;
    background: var(--bg);
  }

  .header.menu-open .header-auth {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
  }

  .header.menu-open #userProfile {
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    background: var(--bg);
    border-radius: 12px;
  }

  .header.menu-open .menu-toggle {
    position: absolute;
    top: 14px;
    right: 18px;
  }
}

/* --- Dashboard Specific Styles --- */
.v-hero-banner {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
  background: #000;
}

.v-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: blur(5px);
}

.v-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 4, 6, 0.9) 30%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.v-hero-content {
  display: flex;
  gap: 40px;
  align-items: center;
  z-index: 1;
}

.v-hero-cover {
  width: 240px;
  height: 340px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.v-hero-info {
  max-width: 600px;
}

.v-hero-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 126, 179, 0.2);
  color: var(--pink);
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.v-hero-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.1;
}

.v-hero-genres {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.v-hero-genres span {
  font-size: 11px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  color: var(--muted);
}

.v-hero-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.v-hero-btns {
  display: flex;
  gap: 15px;
}

.v-hero-btns .btn-pink {
  width: auto;
  padding: 14px 30px;
}

.v-hero-btns .btn-fav {
  background: #ffd700;
  color: #000;
  box-shadow: 0 6px 0 #b8860b;
}

.v-hero-btns .btn-fav:active {
  box-shadow: 0 3px 0 #b8860b;
}

.v-section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v-section-title i {
  color: var(--pink);
  font-size: 28px;
}

.v-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 60px;
}

.v-cat-card {
  position: relative;
  height: 100px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s;
  background: var(--panel);
}

.v-cat-card:hover {
  transform: translateY(-5px);
}

.v-cat-card i {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--pink);
}

.v-cat-card span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.v-manhwa-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.v-manhwa-card {
  text-decoration: none;
  transition: transform 0.2s;
}

.v-manhwa-card:hover {
  transform: translateY(-8px);
}

.v-card-cover-wrap {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 12px;
}

.v-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}

.v-card-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 34px;
}

.v-card-chapters {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.v-chap-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 11px;
  color: var(--muted);
}

.v-chap-link i {
  color: #ffd700;
  font-size: 10px;
}

.v-chap-link:hover {
  background: rgba(255, 126, 179, 0.1);
  color: var(--pink);
}

.v-tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background: var(--panel);
  padding: 30px;
  border-radius: 20px;
}

.v-tag {
  background: var(--line);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-tag:hover {
  background: var(--pink);
  color: #fff;
}

.v-tag span {
  font-size: 10px;
  opacity: 0.5;
}

@media (max-width: 1100px) {
  .v-manhwa-grid { grid-template-columns: repeat(4, 1fr); }
  .v-hero-overlay { padding: 0 30px; }
  .v-hero-cover { width: 180px; height: 260px; }
}

@media (max-width: 800px) {
  .v-manhwa-grid { grid-template-columns: repeat(3, 1fr); }
  .v-categories-grid { grid-template-columns: repeat(3, 1fr); }
  .v-hero-banner { height: auto; padding: 40px 20px; }
  .v-hero-content { flex-direction: column; text-align: center; }
  .v-hero-overlay { background: rgba(5, 4, 6, 0.9); }
  .v-hero-genres { justify-content: center; }
  .v-hero-btns { justify-content: center; }
}

@media (max-width: 500px) {
  .v-manhwa-grid { grid-template-columns: repeat(2, 1fr); }
  .v-dashboard-nav { gap: 15px; overflow-x: auto; justify-content: flex-start; padding: 0 20px; }
  .v-dashboard-nav a { white-space: nowrap; }
}

/* --- Obra Detail Page --- */
.v-detail-page {
  position: relative;
  min-height: 100vh;
  z-index: 1; /* Garante contexto de empilhamento */
}

.v-detail-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 750px; /* Um pouco maior para cobrir o hero */
  z-index: -1;
  overflow: hidden;
}

.v-detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: blur(8px) brightness(0.6); /* Blur maior e mais escuro */
}

.v-detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(5, 4, 6, 0.4) 0%, 
    rgba(5, 4, 6, 0.7) 40%, 
    rgba(5, 4, 6, 0.95) 80%, 
    var(--bg) 100%
  );
  z-index: 1; /* Garante que o gradiente fique acima da imagem */
}

.v-detail-hero {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  padding-top: 60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2; /* Acima do background */
}

.v-detail-cover-area {
  position: sticky;
  top: 100px;
}

.v-detail-info {
  display: flex;
  flex-direction: column;
}

.v-detail-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.v-detail-stats i {
  color: var(--pink);
  margin-right: 5px;
}

.v-detail-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-detail-icon {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 14px 20px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}

.btn-detail-icon:hover {
  background: var(--line);
  transform: translateY(-2px);
}

.v-detail-rating {
  margin-bottom: 30px;
}

.v-detail-rating p, .v-detail-status-grid p {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.v-stars {
  display: flex;
  gap: 8px;
  font-size: 20px;
  color: #332a2c;
}

.v-stars i {
  cursor: pointer;
}

.v-stars i:hover, .v-stars i.active {
  color: #ffd700;
}

.v-status-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.v-status-chips .chip {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.v-status-chips .chip.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.v-detail-sinopse {
  margin-top: 40px;
}

.v-detail-sinopse h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text);
}

.v-detail-sinopse p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* --- Chapters --- */
.v-chapter-section {
  background: var(--panel);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
  border: 1px solid var(--line);
}

.v-chapter-search {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  position: relative;
}

.v-chapter-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.v-chapter-search input {
  padding-left: 50px;
  background: var(--bg);
}

.btn-filter-sort {
  background: var(--line);
  border: none;
  padding: 0 20px;
  border-radius: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: 11px;
  white-space: nowrap;
}

.v-chapter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-chapter-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.v-chapter-item-row:hover {
  border-color: var(--pink);
  background: rgba(255, 126, 179, 0.05);
}

.v-chapter-left {
  display: flex;
  align-items: center;
  gap: 15px;
}



.v-chapter-left i {
  color: var(--pink);
}

.v-chapter-right {
  display: flex;
  align-items: center;
  gap: 25px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.v-chapter-right i {
  cursor: pointer;
}

.v-chapter-right i:hover {
  color: var(--pink);
}

.btn-load-more {
  width: 100%;
  margin-top: 30px;
  padding: 15px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* --- Comments --- */
.v-comment-section {
  margin-bottom: 100px;
}

.v-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.v-comment-header h2 span {
  color: var(--muted);
  font-size: 18px;
  margin-left: 10px;
}

.v-comment-sort {
  display: flex;
  gap: 20px;
}

.v-comment-sort button {
  background: none;
  border: none;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.v-comment-sort button.active {
  color: #ffd700;
}

.v-comment-input-area {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.v-comment-input-area img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.v-comment-box {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.v-comment-box textarea {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  resize: none;
  min-height: 80px;
  outline: none;
}

.v-comment-box-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.v-comment-box-footer i {
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
}

.v-comment-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.v-comment-item img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.v-comment-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.user-name {
  font-weight: 800;
  font-size: 13px;
}

.badge-vip {
  background: var(--pink);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
}

.time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

.v-comment-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
}

.v-comment-actions {
  display: flex;
  gap: 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
}

.v-comment-actions span {
  cursor: pointer;
}

/* --- Fake Checkbox Login --- */
.v-fake-checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.v-fake-checkbox-wrapper input {
  display: none; /* Esconde a checkbox real */
}

.v-fake-circle {
  width: 22px;
  height: 22px;
  border: 2.5px solid #332a2c;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #1a1516;
  flex-shrink: 0;
}

.v-fake-checkbox-wrapper:hover .v-fake-circle {
  border-color: var(--pink);
  box-shadow: 0 0 15px rgba(255, 126, 179, 0.2);
}

.v-fake-checkbox-wrapper input:checked + .v-fake-circle {
  background: var(--pink);
  border-color: var(--pink);
  transform: scale(1.1);
}

.v-fake-checkbox-wrapper input:checked + .v-fake-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%; /* Um cÃ­rculo dentro do cÃ­rculo */
}

/* --- VIP Activation Section --- */
.vip-activation-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  margin: 60px auto;
  max-width: 800px;
  position: relative;
  overflow: hidden;
}

.vip-activation-card::before {
  content: "\f559";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 120px;
  color: var(--pink);
  opacity: 0.03;
  transform: rotate(15deg);
}

.vip-activation-card h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}

.vip-activation-card p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.vip-activation-input-group {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.vip-activation-input-group input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 20px;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vip-activation-input-group input:focus {
  border-color: var(--pink);
  outline: none;
  box-shadow: 0 0 15px rgba(255, 126, 179, 0.2);
}

@media (max-width: 600px) {
  .vip-activation-input-group {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .v-detail-hero { grid-template-columns: 1fr; text-align: center; }
  .v-detail-cover-area { position: relative; top: 0; }
  .v-detail-stats, .v-detail-actions, .v-hero-genres, .v-stars, .v-status-chips { justify-content: center; }
  .v-hero-cover { margin: 0 auto; }
}

/* --- Admin Panel --- */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--panel);
  border-right: 1px solid var(--line);
  padding: 30px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-nav {
  list-style: none;
  margin-top: 40px;
  display: grid;
  gap: 10px;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}

.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255, 126, 179, 0.1);
  color: var(--pink);
}

.admin-main {
  padding: 40px 60px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.admin-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  margin-bottom: 30px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 15px 20px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--line);
}

.admin-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.admin-obra-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.admin-obra-item img {
  width: 40px;
  height: 55px;
  border-radius: 6px;
  object-fit: cover;
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.btn-admin-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-admin-icon:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-admin-icon.delete:hover {
  border-color: #ff4444;
  color: #ff4444;
}

@media (max-width: 1000px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { padding: 30px 20px; }
  .admin-form-grid { grid-template-columns: 1fr; }
}

/* --- New Cinematic Landing Page Redesign --- */
main {
  position: relative;
  overflow: hidden;
}

.cinematic-bg {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 126, 179, 0.15) 0%, rgba(5, 5, 8, 0) 60%);
  z-index: 0;
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 10;
}

.hero-cinematic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 85vh;
  padding-top: 50px;
}

.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 126, 179, 0.1);
  border: 1px solid rgba(255, 126, 179, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: pulse 2s infinite;
}

.hero-cinematic h1 {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.highlight-gradient {
  background: linear-gradient(135deg, #ff7eb3, #ffcfe7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cinematic .lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-glow {
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(255, 126, 179, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 126, 179, 0.6);
  background: #d83a7c;
}

.btn-ghost {
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.avatar-more {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  border: 2px solid var(--bg);
  margin-left: -10px;
  z-index: 5;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -60px; /* Adjust to move stack higher */
}

.hero-card-stack {
  position: relative;
  width: 300px;
  height: 450px;
}

.hero-cover {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cover:hover {
  transform: translateY(-10px) scale(1.05);
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-back {
  width: 240px;
  height: 360px;
  top: 20px;
  left: -80px;
  transform: rotate(-10deg);
  opacity: 0.6;
  z-index: 1;
}

.cover-mid {
  width: 240px;
  height: 360px;
  top: 40px;
  right: -80px;
  transform: rotate(10deg);
  opacity: 0.8;
  z-index: 2;
}

.cover-front {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 40px rgba(255, 126, 179, 0.3);
}

.glass-badge {
  position: absolute;
  bottom: -20px;
  right: -40px;
  background: rgba(20, 18, 25, 0.85);
  backdrop-filter: blur(20px);
  padding: 14px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 126, 179, 0.3);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.glass-badge i {
  color: var(--orange);
  font-size: 24px;
}

.glass-badge span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

.glass-badge strong {
  font-size: 14px;
  color: #fff;
}

/* Sections */
.section-header {
  margin: 120px 0 60px;
}

.section-header.center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.bento-large {
  grid-row: span 2;
  background: linear-gradient(180deg, rgba(20, 18, 25, 0.4) 0%, rgba(20, 18, 25, 0) 100%);
}

.bento-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 24px;
}

.bento-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bento-card p {
  color: var(--muted);
  line-height: 1.6;
}

.bento-visual {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.mock-image-load {
  flex: 1;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.mock-image-load.active::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shine 1.5s infinite;
}

@keyframes shine {
  to { left: 200%; }
}

.glass-hover {
  transition: all 0.3s;
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 126, 179, 0.2);
  transform: translateY(-5px);
}

/* VIP New Design */
.vip-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.vip-card {
  background: rgba(20, 18, 25, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 40px;
  text-align: left;
  transition: all 0.3s;
  position: relative;
}

.vip-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px);
}

.vip-highlight {
  background: linear-gradient(180deg, rgba(255, 126, 179, 0.08) 0%, rgba(20, 18, 25, 0.5) 100%);
  border: 1px solid rgba(255, 126, 179, 0.3);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255, 126, 179, 0.15);
}

.vip-highlight:hover {
  border-color: var(--orange);
  transform: scale(1.05) translateY(-8px);
}

.vip-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.vip-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.vip-header h3 {
  font-size: 24px;
  margin: 8px 0;
}

.price-modern {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}

.price-modern span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.text-orange {
  color: var(--orange);
}

.vip-features {
  list-style: none;
  margin-bottom: 32px;
}

.vip-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #eee;
}

.vip-features i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.vip-features i.text-orange {
  color: var(--orange);
}

.btn-outline-vip {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-outline-vip:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

.btn-glow-vip {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  background: var(--orange);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 126, 179, 0.3);
  transition: all 0.3s;
}

.btn-glow-vip:hover {
  background: #d83a7c;
  box-shadow: 0 15px 30px rgba(255, 126, 179, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .hero-cinematic {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  .users-badge {
    justify-content: center;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .vip-grid-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vip-highlight {
    transform: none;
  }
  .vip-highlight:hover {
    transform: translateY(-8px);
  }
}
