/* =========================================================
   FRAMEVAULT - ESTILOS PRINCIPALES
   Layout oscuro tipo app, basado en Materialize + CSS propio
   ========================================================= */

/* --------- Reset básico y fondo global --------- */

body {
    margin: 0;
    padding-top: 88px; /* espacio para el nav fijo */
    background: #050509;
    color: #f5f5f5;
}


/* =========================================================
   NAVBAR FIJO, LOGO Y MENÚ DESKTOP
   ========================================================= */

/* Contenedor del navbar, centrado y fijo arriba */
.fv-navbar-wrapper {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    max-width: 1200px; /* ancho máximo de la barra */
    padding: 0 16px;
}

/* Barra principal (usa <nav class="fv-navbar">) */
.fv-navbar {
    position: relative;
    background: #070711;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 153, 0.4);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
    height: 64px;
    margin: 0 auto;
    padding: 0 !important; /* Quitamos el padding para que nav-inner mande */
    display: block !important; /* Cambiamos a block para que nav-inner use el 100% */
}
/* logo con imagen */
.fv-logo-icon-img {
    width: 36px;
    height: 36px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05); /* Fondo sutil */

    /* 🔥 Efecto Neón Base */
    box-shadow: 0 0 10px rgba(217, 70, 240, 0.3),
                inset 0 0 5px rgba(217, 70, 240, 0.2);

    /* 🔥 ANIMACIÓN 1: Flotación */
    animation: fvLogoFloat 3s ease-in-out infinite;
}

.fv-logo-icon-img img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    filter: drop-shadow(0 0 5px rgba(217, 70, 240, 0.5));
    transition: all 0.4s ease;
}
/* Hover: El logo cobra vida */
.fv-logo:hover .fv-logo-icon-img {
    box-shadow: 0 0 20px rgba(217, 70, 240, 0.8),
                inset 0 0 10px rgba(217, 70, 240, 0.4);
    transform: scale(1.1) rotate(-5deg);
}

.fv-logo:hover .fv-logo-icon-img img {
    filter: drop-shadow(0 0 10px rgba(217, 70, 240, 1)) brightness(1.2);
}
.nav-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center !important;
    height: 64px; /* ✅ Altura estándar de Materialize */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.nav-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center; /* 🔥 Esto centra el menú de escritorio */
}

.nav-right {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}
/* Contenido interno */

/* Logo de texto de Materialize dentro del nav */
.fv-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 10px;
    position: relative;
    transition: all 0.3s ease;
}

/* Ajuste de los menús (ul) */
.fv-menu {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}
.fv-menu li {
    height: auto;
    display: flex;
    align-items: center;
}

.fv-menu li a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

/* Iconos de flecha alineados */
.fv-menu li a i {
    margin-left: 5px;
    font-size: 18px !important;
}

/* Hamburguesa Móvil alineada */
.fv-burger {
    display: none; /* Se activa en media queries */
    margin: 0 !important;
    padding: 0 10px;
    height: 100%;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 992px) {
    .fv-burger {
        display: flex !important; /* Aparece centrado en móvil */
    }
}

/* Botones de acción alineados */
.fv-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 15px;
}

/* Tamaño de enlaces en el menú superior */
.fv-navbar .nav-wrapper ul li a {
    font-size: 0.9rem;
}

/* Efecto “shrink” cuando el header se marca como scrolleado */
.fv-navbar-scrolled .fv-navbar {
    background: rgba(10, 10, 15, 0.98);
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
    height: 52px;
    line-height: 52px;
}

/* Cada <li> puede contener dropdowns */
nav ul li {
    position: relative;
}


/* =========================================================
   LOGO FRAMEVAULT (ICONO + TEXTO)
   ========================================================= */

.fv-navbar .fv-logo-wrap {
    display: flex;
    align-items: center;
}

/* Imagen de logo si se usa */
.fv-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fv-logo-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #ff66ff, #ff2fb8 40%, #7c3aed 100%);
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.8);
}



.fv-logo-text {
    font-weight: 650 !important;
    font-size: 1.25rem !important;
    letter-spacing: 0.5px;
}

.fv-logo-text span:last-child {
  color: #D946F0;
    margin-left: 2px;
    /* 🔥 ANIMACIÓN 2: Pulso de luz */
    animation: fvNeonPulse 2s ease-in-out infinite;
}
/* =========================================================
   LAS ANIMACIONES (KEYFRAMES)
   ========================================================= */

/* Flotación suave vertical */
@keyframes fvLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Pulso de intensidad de Neón */
@keyframes fvNeonPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(217, 70, 240, 0.5), 0 0 20px rgba(217, 70, 240, 0.2);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 15px rgba(217, 70, 240, 0.8), 0 0 30px rgba(217, 70, 240, 0.4);
        opacity: 0.85;
    }
}


/* Menú */
.fv-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.fv-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 64px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5e7eb;
  padding: 0 4px;
}

/* Underline neon */
.fv-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2fb8, #a855f7);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.fv-menu > li > a:hover::after,
.fv-menu > li.active > a::after {
  opacity: 1;
  transform: translateY(0);
}

/* Iconos del menú */
.fv-menu .material-icons {
  font-size: 18px;
  line-height: 64px;
}

/* Search un poquito separado */
.fv-search-item {
  margin-left: 4px;
}

/* Botones Login / Join */
.fv-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.fv-btn-login {
  background: linear-gradient(135deg, #ff2fb8, #ff6bd5);
}

.fv-btn-join {
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.fv-btn-login:hover,
.fv-btn-join:hover {
  filter: brightness(1.06);
}

/* Hamburguesa solo móvil */
.fv-burger {
  display: none;
}

@media (max-width: 992px) {
  .hide-on-med-and-down {
    display: none !important;
  }
  .fv-burger {
    display: inline-flex;
    margin-left: auto;
  }
}

/* Texto “FrameVault” como wordmark */
.fv-navbar .fv-wordmark {
    display: flex;
    align-items: center;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
    text-decoration: none;
}

/* Parte “Vault” en color de marca */
.fv-navbar .fv-wordmark span {
    color: #ff2fb8;
}

/* Contenedor completo del logo (icono + texto) */
.fv-navbar .fv-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Icono circular tipo bóveda */
.fv-navbar .fv-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ff5ad4, #6b3cff);
    position: relative;
    flex-shrink: 0;
}

/* Marco interno del icono (simula un “frame”) */
.fv-navbar .fv-icon::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-right-color: transparent; /* pequeña “apertura” del vault */
}

/* Texto “FrameVault” al lado del icono */
.fv-navbar .fv-text {
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.fv-navbar .fv-text span {
    color: #ff2fb8;
}

/* Hover suave en el logo */
.fv-navbar .fv-brand:hover .fv-icon {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(255, 90, 212, 0.6);
}


/* =========================================================
   MEGA MENÚ DESKTOP (TEMPLATES)
   ========================================================= */

/* UL del mega menú: <ul id="mega-categorias" class="dropdown-mega mega-dropdown"> */
.dropdown-mega {
    background-color: #141318;
    margin: 0;
    display: none; /* Materialize controla el display */
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    z-index: 1;
    padding: 0;
    box-shadow: none;
    border-radius: 0 0 6px 6px;
    width: auto;
}

/* ===== MEGA DROPDOWN VERSIÓN BRUTAL ===== */
.mega-dropdown {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    margin: 0;
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    transform: none;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(236, 72, 153, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: auto;
    min-width: 900px;
    max-width: 95vw;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(236, 72, 153, 0.15);
    animation: megaBrutalSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

@keyframes megaBrutalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Glow animado al abrir */
.mega-dropdown::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            ellipse at 50% -50%,
            rgba(236, 72, 153, 0.15) 0%,
            transparent 70%
    );
    pointer-events: none;
    animation: megaGlowPulse 3s ease-in-out infinite;
}


@keyframes megaGlowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Contenido del mega */
.mega-content {
    padding: 28px 40px;
}

/* Encabezado brillante */
.mega-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(236, 72, 153, 0.2);
    position: relative;
}

.mega-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2fb8, #6b3cff);
    animation: megaLineExpand 0.6s ease-out;
}

@keyframes megaLineExpand {
    to {
        width: 60px;
    }
}

.mega-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

.mega-title i {
    font-size: 1.6rem;
    color: #ff2fb8;
    animation: megaIconSpin 2s ease-in-out infinite;
}

@keyframes megaIconSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

.mega-subtitle {
    font-size: 0.85rem;
    color: #a0a0b0;
    margin: 6px 0 0 0;
    letter-spacing: 0.08em;
}

/* Secciones con efecto 3D */
.mega-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0.2) 100%);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(236, 72, 153, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mega-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mega-section:hover {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(30, 41, 59, 0.5) 100%);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.25),
    inset 0 0 20px rgba(236, 72, 153, 0.1);
    transform: translateY(-8px) translateX(-2px);
}

.mega-section:hover::before {
    opacity: 1;
}

.mega-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff2fb8;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 6px rgba(236, 72, 153, 0.3);
}

.mega-section-title i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.mega-section:hover .mega-section-title i {
    transform: rotate(20deg) scale(1.2);
    color: #ffc857;
}

/* Lista de items */
.mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

/* Items con icono (software) */
.mega-item {
    margin-bottom: 10px;
}

/* Links con efecto neon */
.mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}


.mega-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(107, 60, 255, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.mega-link::after {
    content: "";
    position: absolute;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #ff2fb8, transparent);
    transition: left 0.4s ease;
}

.mega-link:hover {
    background: rgba(236, 72, 153, 0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3),
    inset 0 0 10px rgba(236, 72, 153, 0.1);
}

.mega-link:hover::before {
    opacity: 1;
}

.mega-link:hover::after {
    left: 100%;
}


.mega-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

.mega-link:hover .mega-icon {
    transform: scale(1.25) rotate(15deg);
    filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.8));
}

.mega-label {
    flex: 1;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.mega-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 200, 87, 0.2);
    color: #ffc857;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 8px rgba(255, 200, 87, 0.3);
    animation: megaBadgePulse 2s ease-in-out infinite;
}

@keyframes megaBadgePulse {
    0%, 100% {
        box-shadow: 0 0 8px rgba(255, 200, 87, 0.3);
    }
    50% {
        box-shadow: 0 0 16px rgba(255, 200, 87, 0.6);
    }
}

.mega-badge.hot {
    background: linear-gradient(135deg, rgba(255, 90, 141, 0.3) 0%, rgba(255, 47, 184, 0.3) 100%);
    color: #ff5a8d;
    box-shadow: 0 0 12px rgba(255, 90, 141, 0.6);
    animation: megaBadgeHotPulse 1.5s ease-in-out infinite;
}

@keyframes megaBadgeHotPulse {
    0%, 100% {
        box-shadow: 0 0 12px rgba(255, 90, 141, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 90, 141, 1);
    }
}

/* Footer premium mejorado */
.mega-premium {
    background: linear-gradient(135deg, rgba(255, 200, 87, 0.1) 0%, rgba(107, 60, 255, 0.1) 100%) !important;
    border: 2px solid rgba(255, 200, 87, 0.3) !important;
}

.mega-premium-title {
    color: #ffc857 !important;
    text-shadow: 0 0 10px rgba(255, 200, 87, 0.5) !important;
}

.mega-premium-card {
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 200, 87, 0.2);
}

.mega-premium-text {
    font-size: 0.95rem;
    color: #ffc857;
    margin-bottom: 12px;
    font-weight: 600;
}

.mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #ffc857 0%, #ff9800 100%);
    color: #000;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
}

.mega-cta-btn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: megaCTAShine 3s ease-in-out infinite;
}

@keyframes megaCTAShine {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(100px, 100px);
    }
}

.mega-cta-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 200, 87, 0.6),
    0 0 20px rgba(255, 200, 87, 0.4);
}

/* Footer del mega menú */
.mega-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 16px 20px 0;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
    margin-top: auto;
}

.mega-footer-link {
    font-size: 0.8rem;
    color: #a0a0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mega-footer-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6a00, #ee0979);
    transition: width 0.3s ease;
}

/* Links de texto (sin icono) */
.mega-link-text {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    color: #d0d0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mega-link-text i {
    font-size: 0.9rem;
    color: #ff2fb8;
}

.mega-link-text:hover {
    background: rgba(236, 72, 153, 0.15);
    color: #ffffff;
    transform: translateX(4px);
}

.mega-link-text.mega-see-all {
    margin-top: auto
}

/* Fuerza grid en lugar de float para las columnas */
.mega-dropdown .row {
    display: grid !important;
    flex-wrap: wrap !important;
    grid-template-columns: repeat(4, 1fr) !important;
    margin: 0 !important;
    gap: 20px;
    padding: 28px 40px !important;
    width: 100% !important;
    justify-content: space-between !important;
}

/* Columnas Materialize dentro del mega menú */
.mega-dropdown .col {
    float: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Títulos h6 del mega */
.mega-dropdown h6 {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #ff2fb8 !important;
    margin: 0 0 14px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-shadow: 0 2px 6px rgba(236, 72, 153, 0.3) !important;
}


/* Listas verticales */
.mega-dropdown ul {
    display: flex !important;
    flex-direction: column !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.mega-dropdown li {
    display: block !important;
    float: none !important;
    margin-bottom: 0 !important;
    width: 100% !important;
}

/* Links dentro del mega */
.mega-dropdown a {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    border-radius: 8px !important;
    color: #f5f5f5 !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    float: none !important;
    font-weight: 500 !important;
}

/* Forzar colores y hover suave */
.mega-dropdown li,
.mega-dropdown a {
    color: #f5f5f5 !important;
}

.mega-dropdown a:hover {
    background: rgba(236, 72, 153, 0.15) !important;
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

/* Enlaces destacados tipo “Ver todo” */
.mega-dropdown a.blue-text {
    color: #5c9dff !important;
}

.mega-dropdown a.blue-text:hover {
    color: #a7c8ff !important;
}

/* Badges dentro del mega */
.mega-dropdown .badge {
    display: inline-block !important;
    float: none !important;
    margin-left: 4px !important;
    padding: 2px 8px !important;
    font-size: 0.6rem !important;
    border-radius: 12px !important;
}

.mega-dropdown .badge.new {
    background: linear-gradient(135deg, rgba(255, 90, 141, 0.3) 0%, rgba(255, 47, 184, 0.3) 100%) !important;
    color: #ff5a8d !important;
    box-shadow: 0 0 8px rgba(255, 90, 141, 0.5) !important;
}

.mega-dropdown .badge.purple {
    background: rgba(107, 60, 255, 0.2) !important;
    color: #a855f7 !important;
}

/* Text utilities de Materialize que conflictúan */
.mega-dropdown .white-text {
    color: #ffffff !important;
}

.mega-dropdown .grey-text.text-lighten-2 {
    color: #f5f5f5 !important;
}

.mega-dropdown .blue-text.text-lighten-2 {
    color: #5c9dff !important;
    font-weight: 600 !important;
}

.mega-dropdown .app-item a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.mega-dropdown .app-item img {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

/* Responsive override */
@media (max-width: 1200px) {
    .mega-dropdown .row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
        padding: 20px 30px !important;
    }
}

@media (max-width: 768px) {
    .mega-dropdown .row {
        grid-template-columns: 1fr !important;
        gap: 12px;
        padding: 16px 20px !important;
    }

    .mega-dropdown .col {
        width: 100% !important;
    }
}

/* Clearfix */
.mega-dropdown::after {
    content: "";
    display: table !important;
    clear: both !important;
}

.mega-dropdown .badge.new.members-badge {
    margin-left: 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    padding: 2px 10px;
}


/* =========================================================
   BLOQUE “BY SOFTWARE” DENTRO DEL MEGA MENÚ
   ========================================================= */

.dropdown-mega .app-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    color: #f5f5f5;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
    font-size: 0.85rem;
}

/* Icono de cada software */
.dropdown-mega .app-item a img,
.icon-software {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
}

.dropdown-mega .app-item a span {
    font-size: 0.85rem;
}

/* Hover blanco que resalta cada opción */
.dropdown-mega .app-item a:hover {
    background: #ffffff;
    color: #111018;
    transform: translateX(1px);
}


/* =========================================================
   BOTONES GENERALES
   ========================================================= */

.btn_prin_mrd {
    background-color: #6b3cff;
}

.btn_prin_rzd {
    background-color: #ff2fb8;
}


/* =========================================================
   HERO PRINCIPAL DEL HOME
   ========================================================= */

.fv-hero {
    padding-top: 40px;
    padding-bottom: 40px;
}

.fv-hero-inner {
    border-radius: 16px;
    padding: 24px 28px;
    background: radial-gradient(circle at top left, #1b1b20, #070709);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* =========================================================
   TÍTULO HERO BRUTAL - EFECTO NEÓN DINÁMICO
   ========================================================= */
.fv-hero-title {
    font-size: 3.5rem !important; /* Tamaño impactante */
    font-weight: 900 !important;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #ffffff;
    /* Sombra base blanca suave */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    margin-bottom: 20px !important;
}

.fv-hero-title span {
color: #ff2fb8 !important;
    text-shadow: 0 0 15px rgba(255, 47, 184, 0.7), 0 0 30px rgba(255, 47, 184, 0.3);
    animation: fvTitleNeonPulse 2.5s infinite ease-in-out;
}

/* Subtítulo con un toque cian sutil para contraste */
.fv-hero-sub {
    border-left: 3px solid #ff2fb8;
    padding-left: 15px;
    font-weight: 500;
}

@keyframes fvTitleNeonPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 47, 184, 0.6),
                     0 0 20px rgba(255, 47, 184, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 25px rgba(255, 47, 184, 0.9),
                     0 0 45px rgba(255, 47, 184, 0.5),
                     0 0 10px rgba(255, 255, 255, 0.3);
        transform: scale(1.02); /* Pequeño latido */
    }
}

.fv-hero-list {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 0.9rem;
}

.fv-hero-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Botón CTA principal */
.fv-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 999px;
    background: #ff2fb8;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

/* Columna derecha (mockup / imagen) */
.fv-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fv-hero-right img {
    width: 100%;
    max-width: 340px;
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.8);
    object-fit: cover;
}

.fv-hero-badge {
    display: inline-block;
    margin-right: 10px;
    padding: 2px 10px;
    border-radius: 999px;
    background: #ff2fb8;
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fv-hero-icon {
    width: 18px;
    text-align: center;
}


/* =========================================================
   LISTA / GRID DE ASSETS
   ========================================================= */

.fv-assets {
    padding: 32px 0 40px;
}

.fv-assets-header {
    max-width: 1180px;
    margin: 0 auto 16px;
    text-align: left;
    color: #f5f5f5;
}

.fv-assets-header h2 {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fv-assets-header p {
    margin: 4px 0 0;
    color: #b0b0c0;
}

/* Grid flexible de cards */
.fv-assets-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

/* Una card de asset */
.fv-card {
    background: #111016;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

/* Thumbnail */
.fv-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;   /* 🔥 todas iguales */
  overflow: hidden;
  background: #020617;
}



/* Badge sobre el thumb (Free / Premium) */
.fv-card-badgew {
    position: absolute;
    bottom: 10px;
    left: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

/* Badge de tipo de asset dentro del contenido */
.fv-card-badge {
    position: static;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.fv-badge-free {
    background: #1acb6b;
}

.fv-badge-premium {
    background: #ff2fb8;
}

/* Cuerpo */
.fv-card-body {
    padding: 12px 14px 8px;
}

.fv-card-title {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
  color: #e5e7eb;
  text-decoration: none;
}

.fv-card-title:hover {
  color: #c7d2fe;
}

.fv-card-meta {
  margin-top: 6px;
  font-size: .72rem;
  color: #9ca3af;
}

/* Footer de la card */
.fv-card-footer {
    padding: 10px 14px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Grupo de acciones a la izquierda */
.fv-card-actions {
    display: flex;
    gap: 8px;
}

/* Botón redondo genérico */
.fv-round-btn {
    width: 32px;
    line-height: 36px;
    height: 32px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    background: #22212b;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 0.5px; /* Un poco de aire entre letras */
    text-transform: uppercase;
    transition: background 0.15s ease, transform 0.15s ease;
}

.fv-round-btn:hover {
    background: #343345;
    transform: translateY(-1px);
}

/* Colores según acción */
.fv-btn-info {
    background: #5c9dff;
}

.fv-btn-info:hover {
    background: #5c9dff;
}

.fv-btn-download {
    background: #00c853;
}

.fv-btn-download:hover {
    background: #00e676;
}

.fv-btn-collection {
    background: #4c4cf5;
}

.fv-btn-collection:hover {
    background: #6b6bff;
}

/* Pills de software a la derecha */
.fv-card-softwares {
    display: flex;
    gap: 6px;
}

.fv-soft-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    border-radius: 999px;
    background: #1b1b24;
    color: #fff;
    font-size: 0.78rem;
}

.fv-soft-icon {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    object-fit: cover;
}

.fv-card-tag {
    padding: 2px 8px;
    border-radius: 999px;
    background: #242433;
    color: #d0d0e0;
}

.fv-card-link {
    color: #5c9dff;
    text-decoration: none;
}

/* Footer: lado izquierdo + acciones */
.fv-card-footer-left {
    display: flex;
    align-items: center;
    gap:8px;
}

.fv-card-thumb-placeholder {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:210px;
  background:#070711;
  color:#444;
  gap:6px;
}
.fv-card-thumb-placeholder i {
  font-size:42px;
  color:#6b7280;
}

.fv-card-footer-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Botón redondo tipo icono */
.fv-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a25;
    color: #f5f5f5;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    font-size: 0.9rem;
}

.fv-icon-info {
    background: #283593;
}

.fv-icon-download {
    background: #00c853;
}

.fv-icon-collection {
    background: #ff2fb8;
}

.fv-icon-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.fv-icon-btn i {
    font-size: 14px;
}


/* =========================================================
   MODAL DE DESCARGA
   ========================================================= */

.fv-download-modal {
    max-width: 520px;
    overflow-y: auto !important;
  border-radius: 24px;
  background: radial-gradient(circle at top, #020617 0, #000000 70%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
}

/* 2. Estilo de la barra de scroll personalizado */
.fv-download-modal::-webkit-scrollbar {
    width: 6px;
}

.fv-download-modal::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.4);
    border-radius: 10px;
}

.fv-download-modal::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff2fb8 0%, #6b3cff 100%); /* Neón FrameVault */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fv-download-modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff6bcb 0%, #8b5cf6 100%);
    box-shadow: 0 0 12px rgba(255, 47, 184, 0.5);
}

.fv-download-modal .modal-content {
  padding: 28px 26px 24px;
  text-align: center;
  color: #e5e7eb;
  position: relative;
    padding-bottom: 24px;
}
/* icono circular */
.fv-modal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 0 22px rgba(236, 72, 153, 0.9);
}

/* colores diferentes por modal */

/* títulos y texto */
.fv-modal-title {
  margin: 4px 0 8px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fv-modal-text {
  margin: 0 auto 18px;
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #9ca3af;
}

/* footer / botones */
.fv-modal-footer {
  padding: 16px 20px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: transparent;
}

/* Contenido con buen espacio */
#modal1 .modal-content,
#modal2 .modal-content {
  padding-top: 24px;
  padding-bottom: 16px;
}

/* Footer pegado al borde inferior con botones centrados */
.fv-modal-footer {
  margin: 0;
  padding: 12px 20px 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Botones cómodos pero sin exceder alto */
.fv-modal-footer .btn {
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  padding: 8px 22px;
}

/* botón secundario custom */
/* El botón 'Not now' específico */
.fv-btn-secondary {
    background: transparent !important;
    color: #9ca3af !important; /* Gris claro de tu captura */
    border: 1px solid rgba(156, 163, 175, 0.4) !important; /* Borde sutil */
    box-shadow: none !important;
}

.fv-btn.fv-btn-secondary:hover {
  border-color: rgba(248, 250, 252, 0.9);
  color: #ffffff !important;
}

.fv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}
.fv-download-modal h4 {
    margin: 0 0 10px;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.fv-download-modal p {
    margin: 0;
    color: #c0c0d0;
    font-size: 0.95rem;
}

.fv-download-modal .modal-footer {
    background: transparent;
    border-top: none;
    padding: 30px 60px 70px;
    text-align: center;
}

.fv-download-modal .modal-footer  {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important; /* Botones uno sobre otro en móviles */
    align-items: center !important;
    gap: 15px !important;
    padding: 20px 0 40px 0 !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 999px;
    font-size: 0.9rem;
    line-height: normal;
}
 .btn {
    border-radius: 999px;

    margin: 0 6px;
    font-size: 0.9rem;
    line-height: normal;
}


/* ====== RESPONSIVE ====== */


/* =========================================================
   CHIPS DE SOFTWARE
   ========================================================= */

.fv-soft-chip {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    background: #ffffff;
    color: #dfe1ff;
    margin-bottom: 4px;
}

.fv-soft-after-effects {
    background: #5520ff;
}

.fv-soft-premiere {
    background: #2b1a73;
}

.fv-soft-davinci {
    background: #009f5d;
}


/* =========================================================
   BARRA DE FILTROS POR SOFTWARE (CAPSULA MORADA)
   ========================================================= */

.fv-soft-bar-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.fv-soft-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: linear-gradient(
            90deg,
            rgba(10, 10, 15, 0.85) 0%,
            rgba(25, 10, 35, 0.9) 40%,
            rgba(40, 15, 55, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

/* Si se usa un header separado para el nav */
header.site-header {
    margin-bottom: 8px;
}

.fv-soft-icons {
    display: flex;
    gap: 0.4rem;
}

.fv-soft-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: none;
    padding: 4px;
    background: #0b0b18;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fv-soft-icon-btn img {
    max-width: 100%;
    height: auto;
}

.fv-soft-icon-btn:hover,
.fv-soft-icon-btn.active {
    background: #1d1d3a;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.fv-soft-pills {
    display: flex;
    gap: 0.4rem;
}

.fv-pill {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.fv-pill:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.fv-filter-cta {
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: linear-gradient(90deg, #ff7ee5, #ffc857);
    box-shadow: 0 0 14px rgba(255, 157, 255, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fv-filter-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 157, 255, 0.9);
}

/* Título “SOFTWARE: XXX” */
.fv-soft-title {
    margin-top: 1.8rem;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d2b7ff;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.6);
}

.fv-soft-title span {
    color: #ffffff;
}


/* =========================================================
   OVERLAYS DE VIDEO / PLAY
   ========================================================= */

.fv-card-thumb--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
    pointer-events: none;
}

.fv-card-play {
    position: absolute;
    inset: auto 0 10px 0;
    margin-inline: auto;
    width: max-content;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.fv-card-play .material-icons {
    font-size: 18px;
}

.fv-card-play:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

.fv-card-thumb--media {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.fv-card-thumb--media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fv-card-play-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.fv-icon-btn.fv-icon-play {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #4c4cf5;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fv-icon-btn.fv-icon-play:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
}

.fv-icon-btn.fv-icon-play i {
    font-size: 18px;
}


/* =========================================================
   BLOQUES DE MEMBRESÍA, LEGAL Y FOOTER
   ========================================================= */

.fv-membership-benefits h4 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.fv-benefit-card {
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.fv-benefit-card .card-content {
    padding: 18px 20px;
}

.fv-benefit-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.fv-benefit-card p {
    font-size: 0.9rem;
    color: #d0d0dd;
}

.fv-benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 47, 184, 0.7);
}

.fv-howitworks h4 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.fv-howitworks h5 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.fv-howitworks h5::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 999px;
    margin-bottom: 6px;
    background: linear-gradient(90deg, #ff2fb8, #6b3cff);
}

.fv-howitworks p {
    font-size: 0.9rem;
}

/* Links del footer */
.fv-footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.fv-footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

/* Bullet point animado */
.fv-footer-links li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff2fb8;
    font-weight: bold;
    transition: all 0.3s ease;
}

.fv-footer-links li:hover::before {
    left: 6px;
    color: #ffc857;
    text-shadow: 0 0 10px rgba(255, 200, 87, 0.8);
}

.fv-footer .fv-footer-links a:hover {
    color: #ff2fb8;
}

.fv-footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(6px);
}

.fv-footer-links a:hover::after {
    width: 100%;
}

.fv-footer-links a {
    color: #e0e0e0 !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.fv-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2fb8, #ffc857);
    transition: width 0.3s ease;
}

.fv-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.fv-footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(51, 65, 85, 0.6) 100%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    color: #f5f5f5 !important;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.fv-footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Redes sociales (si las vuelves a agregar) */
.fv-footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-bottom: 20px;
}


.fv-footer-social a:hover {
    border-color: #ff2fb8;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5),
    0 0 40px rgba(236, 72, 153, 0.3);
}

.fv-footer-social a:hover::before {
    opacity: 1;
}

.fv-footer-legal a {
    color: #9ca3af !important;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
    border-radius: 6px;
}

.fv-footer-legal a:hover {
    color: #ffc857 !important;
    background: rgba(255, 200, 87, 0.1);
    box-shadow: 0 0 12px rgba(255, 200, 87, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .fv-footer {
        padding: 40px 0 20px !important;
    }

    .fv-footer-right {
        text-align: left;
        margin-top: 30px;
    }

    .fv-footer-social {
        justify-content: flex-start;
    }

    .fv-footer h5::after,
    .fv-footer h6::after {
        width: 40px;
    }
}

.fv-legal-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.fv-legal-card {
    max-width: 900px;
    margin: 0 auto;
    background: #111016;
    border-radius: 16px;
    padding: 28px 26px 30px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.fv-legal-title {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    color: #ffffff;
}

.fv-legal-intro {
    margin: 0 0 18px 0;
    color: #bfbfd0;
    font-size: 0.95rem;
}

.fv-legal-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fv-legal-list li {
    margin-bottom: 16px;
}

.fv-legal-list h5 {
    font-size: 1rem;
    margin: 0 0 4px 0;
    color: #ffffff;
    display: inline-block;
    position: relative;
    padding-left: 10px;
}

.fv-legal-list h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff2fb8, #6b3cff);
}

.fv-legal-list p {
    margin: 0;
    font-size: 0.9rem;
    color: #d0d0dd;
    line-height: 1.5;
}

.fv-hero-cta:hover {
    background: #ff5ad4;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.9);
}

.fv-hero-image {
    border-radius: 20px;
}


/* =========================================================
   RESPONSIVE GENERAL (TABLET)
   ========================================================= */

@media (max-width: 768px) {
    .fv-hero-inner {
        padding: 20px 16px;
    }

    .fv-hero-title {
        font-size: 1.3rem;
    }

    .fv-hero-cta {
        width: 100%;
        text-align: center;
    }
}




/* =========================================================
   SIDENAV MÓVIL (MATERIALIZE)
   ========================================================= */

/* Por defecto ocultamos el trigger, luego se muestra en < 992px */
.sidenav-trigger {
    display: none;
}

@media (max-width: 992px) {
    .sidenav-trigger {
        display: block;
    }
}

/* panel lateral para móvil */
#mobile-nav.sidenav {
    background: #111018;
    color: #f5f5f5;
    height: 100%;
    max-width: 260px; /* ancho del menú móvil */

    padding-top: 56px; /* mismo alto que .fv-navbar en móvil */
    box-sizing: border-box;
}

#mobile-nav a {
    font-size: 0.95rem;
    padding: 14px 20px;
    color: #f5f5f5;
}

#mobile-nav a:hover {
    background: #1b1b24;
}


/* =========================================================
   AJUSTES EXTRA PARA MÓVIL (≤ 600px)
   ========================================================= */

@media (max-width: 600px) {

    /* Nav wrapper más pegado a los bordes */
    .fv-navbar-wrapper {
        top: 8px;
        padding: 0 8px;
        max-width: 100%;
    }

    /* Barra más baja y compacta */
    .fv-navbar {
        height: 52px;
        line-height: 52px;
    }

    .fv-navbar .nav-wrapper {
        height: 52px;
    }

    /* Logo centrado y sin offset negativo */
    .fv-navbar .brand-logo {
        margin-left: 0;
        font-size: 0.95rem;
    }

    .fv-navbar .fv-icon {
        transform: scale(0.9);
    }

    /* Botón hamburguesa alineado */
    .fv-navbar .sidenav-trigger {
        height: 52px;
        line-height: 52px;
    }

    .fv-navbar .sidenav-trigger i {
        font-size: 26px;
    }

    /* Barra de filtros: permite varias filas */
    .fv-soft-bar-wrapper {
        padding: 0 0.8rem;
    }

    .fv-soft-filter-bar {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
    }

    .fv-soft-icons,
    .fv-soft-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fv-filter-cta {
        margin-top: 4px;
    }

    /* Grid: una sola columna en móvil */
    .fv-assets-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 0.8rem;
    }
}

/* Links: tipografía y separación */
#mobile-nav li a {
    font-size: 0.95rem;
    padding: 14px 24px;
    color: #f5f5f5;
    display: block;


}

/* Línea divisoria */
#mobile-nav .divider {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Indicador/efecto de selección */
#mobile-nav li a:hover {
    background: linear-gradient(90deg, #201333, #3b1650);
    color: #ffffff;
}

/* Borde luminoso a la izquierda al pasar el mouse / tap */
#mobile-nav li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(180deg, #ff2fb8, #6b3cff);
    transition: width 0.15s ease;
}

#mobile-nav li:hover a::before {
    width: 3px;
}

/* Ítems de acción (Login / Join) con un poco más de peso */
#mobile-nav li a.btn-login {
    font-weight: 600;
    color: #ff7ee5;
}

#mobile-nav li a.btn-join {
    font-weight: 600;
    color: #ffc857;
}

/* Ajustes responsive para beneficios y cómo funciona */
@media (max-width: 600px) {

    /* Más aire entre el bloque de cards y el bloque de pasos */
    .fv-membership-benefits {
        padding-top: 24px;
        padding-bottom: 16px;
    }

    .fv-howitworks {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    /* Cards de beneficios: full width y margen abajo */
    .fv-membership-benefits .fv-benefit-card {
        margin-bottom: 16px;
    }

    /* Títulos de los pasos un poquito más pequeños */
    .fv-howitworks h5 {
        font-size: 0.98rem;
    }

    .fv-howitworks p {
        font-size: 0.88rem;
    }
}

/* ============================================
   FOOTER ÉPICO - FRAMEVAULT
   ============================================ */
.fv-footer {
    background: linear-gradient(135deg, #050509 0%, #0f0f1e 50%, #1a1a2e 100%) !important;
    border-top: 2px solid rgba(236, 72, 153, 0.3);
    position: relative;
    overflow: hidden;
    padding: 60px 0 30px !important;
}

/* Efecto glow animado de fondo */
.fv-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%,
    rgba(236, 72, 153, 0.08) 0%,
    rgba(107, 60, 255, 0.05) 30%,
    transparent 70%);
    animation: footerGlow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerGlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(10%, -10%) rotate(120deg);
    }
    66% {
        transform: translate(-10%, 10%) rotate(240deg);
    }
}


/* Contenido por encima del glow */
.fv-footer .container {
    position: relative;
    z-index: 1;
}

/* Títulos con brillo */
.fv-footer h5,
.fv-footer h6 {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, #ff2fb8 0%, #ffc857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Línea debajo de los títulos */
.fv-footer h5::after,
.fv-footer h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff2fb8, #6b3cff);
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
}


/* Descripción con estilo */
.fv-footer p {
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #b0b0c0 !important;
}

/* Ajustes responsive */
@media (max-width: 600px) {
    .fv-footer {
        text-align: left;
    }

    .fv-footer-right {
        align-items: flex-start; /* redes y legal alineados a la izquierda en móvil */
        margin-top: 16px;
    }
}

.fv-post-title {
    margin: 0 0 6px 0;
    font-size: 1.8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #ffffff;
}

.fv-post-sub {
    margin: 0 0 12px 0;
    font-size: .95rem;
}

/* Contenedor de imagen / video en detalle */
.fv-media-preview {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.fv-media-image {
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    display: block;
    position: relative;
    transition: opacity .25s ease;
    z-index: 1;
}

.fv-media-video {
    opacity: 0;
    pointer-events: none;
    width: 100%;
    display: none; /* 🔥 CLAVE */
    position: absolute;
    inset: 0;
    transition: opacity .25s ease;
    z-index: 2;
}

.fv-media-preview.has-video .fv-media-video {
    display: block;
}


/* Overlay con icono play */
.fv-media-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    color: #fff;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.0),
            rgba(0, 0, 0, 0.5)
    );
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.fv-media-overlay i {
    font-size: 3rem;
}

/* Hover: mostrar video y overlay, ocultar imagen */
/* SOLO si tiene video */
.fv-media-preview.has-video:hover .fv-media-video {
    opacity: 1;
    pointer-events: auto;
    display: block; /* IMPORTANTE para iframe */
}

.fv-media-preview.has-video:hover .fv-media-image {
    opacity: 0;
}

.fv-media-preview.has-video:hover .fv-media-overlay {
    opacity: 1;
}


/* Cuando está reproduciendo mostramos video y ocultamos imagen */
.fv-media-preview.is-playing .fv-media-video {
    opacity: 1;
}

.fv-media-preview.is-playing .fv-media-image {
    opacity: 0;
}

/* ===== Barra arriba del preview (opcional, la que ya pusimos) ===== */

.fv-soft-bar-wrapper--detail {
    margin-bottom: 10px;
}

.fv-soft-filter-bar--detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(5, 5, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.fv-soft-filter-bar--detail .fv-soft-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fv-soft-filter-bar--detail .fv-soft-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.fv-soft-icon-btn,
.fv-pill {
    border: none;
    outline: none;
    cursor: default;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
}

.fv-soft-icon-btn span {
    font-size: 0.75rem;
}

.fv-soft-icon-btn img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
}

/* ===== Meta rápida dentro del fv-card-body ===== */

.fv-soft-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.fv-soft-meta-left {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fv-soft-meta-right {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

/* Pill de software (chips) */
.fv-soft-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: #f5f5f5;
}

/* Tags de info (resolución, tamaño, hosted, etc.) */
.fv-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
}

/* Variantes FREE / PREMIUM */
.fv-card-tag-premium {
    background: linear-gradient(90deg, #ff2fb8, #6b3cff);
    color: #ffffff;
}

.fv-card-tag-free {
    background: rgba(0, 200, 83, 0.18);
    color: #8ef7b8;
}

/* ===== Ajustes responsivos suaves ===== */

@media (max-width: 600px) {
    .fv-soft-filter-bar--detail {
        padding: 6px 10px;
    }

    .fv-soft-meta {
        align-items: flex-start;
    }

    .fv-soft-meta-right {
        justify-content: flex-start;
    }
}

/* Layout general izquierda / derecha en detalle */
.fv-detail-layout {
    padding: 16px 16px 12px;
}

.no-margin {
    margin: 0;
}

/* Preview grande */
.fv-media-preview--detail {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* panel lateral tipo File Meta */
.fv-file-meta-panel {
    background: #111116;
    border-radius: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f5f5f5;
}

.fv-file-meta-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #9c9ab5;
    margin: 0 0 8px;
}

.fv-file-meta-group {
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 10px;
}

.fv-file-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fv-file-meta-row:last-child {
    border-bottom: none;
}

.fv-file-meta-label {
    color: #b6b4d0;
}

.fv-file-meta-value {
    font-weight: 500;
    color: #ffffff;
}

.fv-file-meta-actions {
    margin-top: 14px;
}

.fv-btn-block {
    width: 100%;
    border-radius: 999px;
    text-transform: none;
    background: linear-gradient(90deg, #ff2fb8, #6b3cff);
}

/* Meta rápida debajo del video */
.fv-soft-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.fv-soft-meta-left,
.fv-soft-meta-right {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fv-soft-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    color: #f5f5f5;
}

.fv-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
}

.fv-card-tag-premium {
    background: linear-gradient(90deg, #ff2fb8, #6b3cff);
    color: #ffffff;
}

.fv-card-tag-free {
    background: rgba(0, 200, 83, 0.18);
    color: #8ef7b8;
}

/* Responsive: panel baja debajo del video en tablets/móvil */
@media (max-width: 992px) {
    .fv-detail-layout {
        padding: 12px 10px;
    }

    .fv-file-meta-panel {
        margin-top: 16px;
    }
}

.fv-file-meta-value--full {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.fv-btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-transform: none;
    font-size: 0.8rem;
    white-space: nowrap; /* NO permitir salto de línea */
}

/* hace que todos los estados (Login, Premium, Get membership, Free) se vean largos */
.fv-btn-inline--wide {
    padding: 6px 22px;
    min-width: 180px; /* sube/baja este valor si lo quieres más largo o más corto */
}

.fv-btn-inline .material-icons {
    font-size: 1rem;
}

.fv-file-search-row .fv-file-meta-value--full {
    width: 100%;
}

.fv-post-search-input {
    width: 100%;
    padding: 6px 10px;
    border-radius: 999px;
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0.35);
    color: #f5f5f5;
    font-size: 0.8rem;
}

.fv-post-search-results {
    margin-top: 8px;
    max-height: 220px;
    overflow-y: auto;
}

.fv-post-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fv-post-search-item a {
    display: flex;
    justify-content: space-between;
    padding: 6px 8px;
    font-size: 0.8rem;
    color: #e0e0ff;
    border-radius: 8px;
}

.fv-post-search-item a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.fv-post-search-title {
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fv-post-search-meta {
    color: #9c9ab5;
}

.fv-search-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #27293d 0%, #050509 55%, #000000 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.fv-search-overlay.is-open {
    display: flex;
}

.fv-search-inner {
    text-align: center;
    max-width: 760px;
    width: 100%;
    padding: 0 20px;
    color: #fff;
    position: relative;
}

.fv-search-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.fv-search-sub {
    color: #bbb;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.fv-search-form {
    background: #111218;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 10px 16px;
}

.fv-search-form input {
    color: #fff;
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
}

.fv-search-icon {
    margin-right: 8px;
    color: #ff4081;
}

.fv-search-clear,
.fv-search-close {
    background: none;
    border: none;
    color: #bbb;
    font-size: 1.4rem;
    cursor: pointer;
}

.fv-search-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 2rem;
}

.btn-premium {
    background: linear-gradient(135deg, #0f172a, #a855f7) !important;
}

.btn-free {
    background: linear-gradient(135deg, #0a602c, #0f172a) !important;
}

.fv-modal-icon {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ff4fa3;
}

.fv-post-extra {
    margin: 12px 0;
    padding: 14px 18px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, #242935, #171920);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    color: #f5f5f5;
    line-height: 1.5;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.fv-post-extra::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #ff6b3d, #ffb347, #3ddcff);
    opacity: 0.16;
    mix-blend-mode: screen;
    pointer-events: none;
}

.fv-post-extra > * {
    position: relative;
    z-index: 1;
}

/* Primer párrafo tipo “título” pero sigue siendo <p> */
.fv-post-extra__intro {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fv-post-extra__intro span {
    color: #ffb347;
}

.fv-post-extra p {
    margin: 4px 0;
}

.fv-post-extra__highlight {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
}

.fv-post-extra__highlight strong {
    color: #ffeb3b;
}

@media (max-width: 768px) {
    .fv-post-extra {
        margin: 10px -12px;
        border-radius: 0;
        padding: 12px 14px;
        font-size: 13px;
    }

    .fv-post-extra__intro {
        font-size: 15px;
    }
}

.fv-disclaimer {
    margin: 18px 0 8px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 193, 7, 0.06);
    border: 1px solid rgba(255, 193, 7, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    color: #f5f5f5;
    font-size: 13px;
    line-height: 1.55;
    position: relative;
    overflow: hidden;
}

/* banda de advertencia */
.fv-disclaimer::before {
    content: "DISCLAIMER";
    position: absolute;
    top: -12px;
    left: -40px;
    padding: 4px 70px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #111;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(-6deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.fv-disclaimer > * {
    position: relative;
    z-index: 1;
}

/* “título” dentro de p */
.fv-disclaimer__title {
    margin: 0 0 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffc107;
    font-size: 13px;
}

.fv-disclaimer p {
    margin: 4px 0;
}

.fv-disclaimer a {
    color: #ffd54f;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.fv-disclaimer a:hover {
    color: #ffffff;
}

/* móvil */
@media (max-width: 768px) {
    .fv-disclaimer {
        margin: 14px -12px 6px;
        border-radius: 0;
        padding: 12px 14px;
        font-size: 12px;
    }
}

/* Hover en card para mostrar video */
.fv-card-thumb--media:hover .fv-card-video-preview {
    opacity: 1 !important;
    pointer-events: auto;
}

.fv-card-thumb--media:hover img {
    opacity: 0.3;
}

/* ============================================
   COMENTARIOS ESTILO FACEBOOK/MEDIUM
   ============================================ */

.fv-comments-wrapper {
    margin-top: 3rem;
    padding: 0;
}

/* Header de comentarios */
.fv-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(236, 72, 153, 0.2);
}

.fv-comments-header h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.fv-comments-count {
    font-size: 0.9rem;
    color: #9ca3af;
    background: rgba(236, 72, 153, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

/* ============================================
   SCROLL DE COMENTARIOS CON LÍMITE
   ============================================ */

.fv-comments-list {
    margin-bottom: 2rem;
    max-height: 500px; /* altura máxima - ajusta si quieres más/menos */
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px; /* espacio para scrollbar */
    scroll-behavior: smooth; /* scroll suave */
}

/* Scrollbar personalizado (navegadores webkit) */
.fv-comments-list::-webkit-scrollbar {
    width: 8px;
}

.fv-comments-list::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
    margin: 4px 0;
}

.fv-comments-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.fv-comments-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d946ef 0%, #a855f7 100%);
}

/* Firefox scrollbar */
.fv-comments-list {
    scrollbar-width: thin;
    scrollbar-color: #ec4899 rgba(15, 23, 42, 0.6);
}

/* Fade effect arriba/abajo para indicar que hay más contenido */
.fv-comments-wrapper {
    position: relative;
}

.fv-comments-list::before {
    content: '';
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), transparent);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.fv-comments-list.has-scroll::before {
    opacity: 1;
}

.fv-comments-list::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   AVISO DE LOGIN REQUERIDO
   ============================================ */

.fv-login-required {
    margin-top: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(217, 70, 239, 0.1) 100%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fv-login-required::before {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 4rem;
    opacity: 0.1;
}

.fv-login-required::after {
    content: '🔒';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 4rem;
    opacity: 0.1;
}

.fv-login-required p {
    margin: 0;
    font-size: 1rem;
    color: #d1d5db;
    position: relative;
    z-index: 1;
}

.fv-login-required a {
    color: #ec4899;
    font-weight: 700;
    text-decoration: none;
    padding: 4px 12px;
    background: rgba(236, 72, 153, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.fv-login-required a:hover {
    background: rgba(236, 72, 153, 0.25);
    color: #f472b6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3);
}

/* Variante con icono Material Icons (si prefieres) */
.fv-login-required.with-icon::before {
    content: 'lock';
    font-family: 'Material Icons';
    font-size: 3rem;
    left: 20px;
}

.fv-login-required.with-icon::after {
    content: 'lock';
    font-family: 'Material Icons';
    font-size: 3rem;
    right: 20px;
}


/* Card de comentario tipo Facebook */
.fv-comment-card {
    display: flex;
    gap: 12px;
    margin-bottom: 1.25rem;
    animation: fadeInComment 0.3s ease;
}

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

/* Avatar circular */
.fv-comment-avatar {
    flex-shrink: 0;
}

.fv-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

/* Cuerpo del comentario */
.fv-comment-body {
    flex: 1;
}

.fv-comment-bubble {
    background: rgba(30, 41, 59, 0.8);
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(236, 72, 153, 0.15);
    transition: all 0.2s ease;
}

.fv-comment-bubble:hover {
    background: rgba(51, 65, 85, 0.85);
    border-color: rgba(236, 72, 153, 0.3);
}

.fv-comment-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ec4899;
    margin-bottom: 4px;
}

.fv-comment-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e5e7eb;
}

.fv-comment-meta {
    margin-top: 4px;
    padding-left: 16px;
}

.fv-comment-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Sin comentarios */
.fv-no-comments {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
    border: 2px dashed rgba(236, 72, 153, 0.2);
}

.fv-no-comments i {
    font-size: 3rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.fv-no-comments p {
    color: #9ca3af;
    font-size: 0.95rem;
    margin: 0;
}

/* Formulario tipo Facebook */
.fv-comment-form-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fv-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(236, 72, 153, 0.15);
}

.fv-form-header span {
    font-size: 1rem;
    font-weight: 600;
    color: #f3f4f6;
}

.fv-avatar-you {
    font-size: 0.7rem;
    width: 36px;
    height: 36px;
}

/* Inputs del formulario */
.fv-comment-form .input-field {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.fv-input,
.fv-textarea {
    background-color: rgba(51, 65, 85, 0.6) !important;
    border: 1px solid rgba(236, 72, 153, 0.2) !important;
    border-radius: 8px !important;
    color: #fff !important;
    padding: 12px 14px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.fv-input:focus,
.fv-textarea:focus {
    background-color: rgba(51, 65, 85, 0.8) !important;
    border-color: #ec4899 !important;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2) !important;
}

.fv-textarea {
    min-height: 100px !important;
    resize: vertical !important;
}

/* Labels */
.fv-comment-form label {
    color: #d1d5db !important;
    font-size: 0.85rem !important;
}

.fv-comment-form label.active {
    color: #ec4899 !important;
}

/* Botón submit */
.fv-btn-submit {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%) !important;
    border: none !important;
    padding: 0 24px !important;
    height: 44px !important;
    line-height: 44px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-transform: none !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.3) !important;
    transition: all 0.3s ease !important;
}

.fv-btn-submit:hover {
    background: linear-gradient(135deg, #d946ef 0%, #a855f7 100%) !important;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5) !important;
    transform: translateY(-2px);
}

.fv-btn-submit i {
    font-size: 1.1rem;
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .fv-comments-header h5 {
        font-size: 1.1rem;
    }

    .fv-comment-card {
        gap: 8px;
    }

    .fv-avatar-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .fv-comment-form-card {
        padding: 1rem;
    }

    .fv-btn-submit {
        width: 100%;
    }
}

/* Trigger para abrir formulario (estilo YouTube) */
.fv-comment-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 24px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.fv-comment-trigger:hover {
    background: rgba(51, 65, 85, 0.7);
    border-color: rgba(236, 72, 153, 0.4);
}

.fv-trigger-input {
    flex: 1;
}

.fv-trigger-input input {
    background: transparent !important;
    border: none !important;
    color: #9ca3af !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    padding: 0 !important;
    height: auto !important;
    margin: 0 !important;
}

.fv-trigger-input input:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Botón cerrar formulario */
.fv-form-header {
    position: relative;
}

.fv-close-form {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s ease;
}

.fv-close-form:hover {
    color: #ec4899;
}

.fv-close-form i {
    font-size: 1.3rem;
}

/* Acciones del formulario */
.fv-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 1rem;
}

.fv-btn-cancel {
    color: #9ca3af !important;
    transition: all 0.2s ease;
}

.fv-btn-cancel:hover {
    color: #fff !important;
    background: rgba(236, 72, 153, 0.1) !important;
}

/* Animación de expansión */
.fv-comment-form-card {
    animation: expandForm 0.3s ease;
    transform-origin: top;
}

@keyframes expandForm {
    from {
        opacity: 0;
        transform: scaleY(0.8);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Ajustes responsive */
@media only screen and (max-width: 600px) {
    .fv-form-actions {
        flex-direction: column;
    }

    .fv-btn-cancel,
    .fv-btn-submit {
        width: 100%;
    }
}

/* ============================================
   RESPUESTAS DEL ADMIN - VERSIÓN MEJORADA
   ============================================ */

.fv-admin-reply {
    margin-top: 16px;
    margin-left: 54px;
    padding: 16px 20px;
    background: linear-gradient(135deg,
    rgba(76, 175, 80, 0.15) 0%,
    rgba(56, 142, 60, 0.1) 100%);
    border-left: 4px solid #4caf50;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: slideInReply 0.5s ease;
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo sutil */
.fv-admin-reply::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(76, 175, 80, 0.1),
            transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes slideInReply {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

/* Badge del admin con icono */
.fv-admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.fv-admin-badge i {
    font-size: 16px;
    color: #fff;
}

.fv-admin-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Texto de la respuesta */
.fv-admin-reply-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #e8f5e9;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

/* Hora de respuesta */
.fv-reply-time {
    font-size: 0.75rem;
    color: #81c784;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.fv-reply-time::before {
    content: '✓';
    font-weight: 700;
    color: #4caf50;
}

/* Hover effect */
.fv-admin-reply:hover {
    background: linear-gradient(135deg,
    rgba(76, 175, 80, 0.2) 0%,
    rgba(56, 142, 60, 0.15) 100%);
    border-left-color: #66bb6a;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
    transition: all 0.3s ease;
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .fv-admin-reply {
        margin-left: 0;
        margin-top: 12px;
        padding: 14px 16px;
    }

    .fv-admin-badge {
        font-size: 0.75rem;
    }
}

/* Variante alternativa con borde completo */
.fv-admin-reply.bordered {
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-left: 4px solid #4caf50;
}

/* Icono de verificación flotante (opcional) */
.fv-admin-reply::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.5rem;
    color: rgba(76, 175, 80, 0.2);
    font-weight: 700;
}


/* Responsive */
@media only screen and (max-width: 600px) {
    .fv-admin-reply {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* ============================================
   PAGINACIÓN ÉPICA - FRAMEVAULT
   ============================================ */

.fv-pagination-wrapper {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 16px;
}

.fv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
}

/* Botones base */
.fv-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.8) 100%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.fv-page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
    transition: left 0.5s;
}

.fv-page-btn:hover::before {
    left: 100%;
}

.fv-page-btn:hover {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    border-color: #f472b6;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5),
    0 0 30px rgba(236, 72, 153, 0.3);
    transform: translateY(-2px);
}

.fv-page-btn:active {
    transform: translateY(0);
}

.fv-page-btn i {
    font-size: 20px;
}

/* Botones específicos */
.fv-page-first,
.fv-page-last {
    padding: 12px 16px;
}

.fv-page-prev span,
.fv-page-next span {
    display: none;
}

@media (min-width: 600px) {
    .fv-page-prev span,
    .fv-page-next span {
        display: inline;
    }
}

/* Botón deshabilitado */
.fv-page-btn.fv-page-disabled {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(100, 116, 139, 0.3);
    color: #64748b;
    cursor: not-allowed;
    box-shadow: none;
}

.fv-page-btn.fv-page-disabled:hover {
    transform: none;
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(100, 116, 139, 0.3);
    box-shadow: none;
}

/* Info de página actual */
.fv-page-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4),
    0 0 30px rgba(236, 72, 153, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4),
        0 0 30px rgba(236, 72, 153, 0.2);
    }
    50% {
        box-shadow: 0 6px 24px rgba(236, 72, 153, 0.6),
        0 0 40px rgba(236, 72, 153, 0.4);
    }
}

.fv-page-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.fv-page-separator {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.fv-page-total {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Stats debajo */
.fv-pagination-stats {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Efectos hover especiales */
.fv-page-first:hover,
.fv-page-last:hover {
    animation: bounce 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .fv-pagination {
        gap: 8px;
    }

    .fv-page-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .fv-page-info {
        padding: 10px 16px;
    }

    .fv-page-current {
        font-size: 1.2rem;
    }

    .fv-page-first,
    .fv-page-last {
        display: none; /* Ocultar primera/última en móvil */
    }
}

/* ============================================
   BADGES DE SOFTWARE - SOLO PARA POST DETALLE
   ============================================ */

.fv-post-software-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.6);
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
}

.fv-post-sw-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* Icono de software individual */
.fv-post-sw-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.8) 100%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: fv-post-float 3s ease-in-out infinite;
}

/* Animación flotante única */
@keyframes fv-post-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.fv-post-sw-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Efecto shimmer de fondo */
.fv-post-sw-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.4), transparent);
    transition: left 0.6s;
}

.fv-post-sw-icon:hover::before {
    left: 100%;
}

/* Borde brillante al hover */
.fv-post-sw-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.fv-post-sw-icon:hover::after {
    opacity: 1;
}

/* Hover general */
.fv-post-sw-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5),
    0 0 40px rgba(236, 72, 153, 0.3);
    animation: none;
}

.fv-post-sw-icon:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(236, 72, 153, 0.6));
}

/* Colores específicos por software */
.fv-post-sw-ae:hover {
    border-color: #9999ff;
    box-shadow: 0 8px 24px rgba(153, 153, 255, 0.5),
    0 0 40px rgba(153, 153, 255, 0.3);
}

.fv-post-sw-pr:hover {
    border-color: #9999ff;
    box-shadow: 0 8px 24px rgba(153, 153, 255, 0.5),
    0 0 40px rgba(153, 153, 255, 0.3);
}

.fv-post-sw-ps:hover {
    border-color: #31a8ff;
    box-shadow: 0 8px 24px rgba(49, 168, 255, 0.5),
    0 0 40px rgba(49, 168, 255, 0.3);
}

.fv-post-sw-davinci:hover {
    border-color: #ff4444;
    box-shadow: 0 8px 24px rgba(255, 68, 68, 0.5),
    0 0 40px rgba(255, 68, 68, 0.3);
}

.fv-post-sw-fcp:hover {
    border-color: #00ccff;
    box-shadow: 0 8px 24px rgba(0, 204, 255, 0.5),
    0 0 40px rgba(0, 204, 255, 0.3);
}

.fv-post-sw-plugin:hover {
    border-color: #ffc857;
    box-shadow: 0 8px 24px rgba(255, 200, 87, 0.5),
    0 0 40px rgba(255, 200, 87, 0.3);
}

/* Badge "otros" (texto) */
.fv-post-sw-other {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/* Badge de acceso derecha */
.fv-post-access-badge {
    margin-left: auto;
}

.fv-post-badge-premium,
.fv-post-badge-free {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fv-post-badge-premium {
    background: linear-gradient(135deg, #ffc857 0%, #ff9800 100%);
    color: #000;
    animation: fv-post-shimmer 2s infinite;
}

@keyframes fv-post-shimmer {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 200, 87, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 200, 87, 0.7);
    }
}

.fv-post-badge-free {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: #fff;
}

.fv-post-badge-premium:hover,
.fv-post-badge-free:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.fv-post-badge-premium i,
.fv-post-badge-free i {
    font-size: 16px;
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .fv-post-software-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .fv-post-sw-icon {
        width: 42px;
        height: 42px;
    }

    .fv-post-sw-icon img {
        width: 28px;
        height: 28px;
    }

    .fv-post-access-badge {
        margin-left: 0;
    }
}

/* ============================================
   HOSTING ICONS - ESTILO RECURSOS
   ============================================ */

.fv-hosting-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.fv-hosting-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.8) 100%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    animation: fv-hosting-float 3s ease-in-out infinite;
}

@keyframes fv-hosting-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.fv-hosting-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Efecto shimmer */
.fv-hosting-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.4), transparent);
    transition: left 0.6s;
}

.fv-hosting-icon:hover::before {
    left: 100%;
}

/* Borde brillante al hover */
.fv-hosting-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.fv-hosting-icon:hover::after {
    opacity: 1;
}

/* Hover general */
.fv-hosting-icon:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.5),
    0 0 40px rgba(236, 72, 153, 0.3);
    animation: none;
}

.fv-hosting-icon:hover img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(236, 72, 153, 0.6));
}

/* Colores específicos por servicio */
.fv-hosting-gdrive:hover {
    border-color: #4285F4;
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.6),
    0 0 40px rgba(66, 133, 244, 0.4);
}

.fv-hosting-users:hover {
    border-color: #6A1B9A;
    box-shadow: 0 8px 24px rgba(106, 27, 154, 0.6),
    0 0 40px rgba(106, 27, 154, 0.4);
}

.fv-hosting-dropbox:hover {
    border-color: #0061FF;
    box-shadow: 0 8px 24px rgba(0, 97, 255, 0.6),
    0 0 40px rgba(0, 97, 255, 0.4);
}

.fv-hosting-mega:hover {
    border-color: #D9272E;
    box-shadow: 0 8px 24px rgba(217, 39, 46, 0.6),
    0 0 40px rgba(217, 39, 46, 0.4);
}

.fv-hosting-mediafire:hover {
    border-color: #1299F3;
    box-shadow: 0 8px 24px rgba(18, 153, 243, 0.6),
    0 0 40px rgba(18, 153, 243, 0.4);
}

.fv-hosting-workupload:hover {
    border-color: #FF6B6B;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.6),
    0 0 40px rgba(255, 107, 107, 0.4);
}

.fv-hosting-nitroflare:hover {
    border-color: #FF9800;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.6),
    0 0 40px rgba(255, 152, 0, 0.4);
}

.fv-hosting-other:hover {
    border-color: #64748b;
    box-shadow: 0 8px 24px rgba(100, 116, 139, 0.6),
    0 0 40px rgba(100, 116, 139, 0.4);
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .fv-hosting-icon {
        width: 42px;
        height: 42px;
    }

    .fv-hosting-icon img {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   BARRA DE ACCIONES (LIKE, WISHLIST, SHARE)
   ============================================ */

.fv-post-actions-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(15, 23, 42, 0.6);
    border-bottom: 1px solid rgba(236, 72, 153, 0.1);
    flex-wrap: wrap;
}

.fv-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.8) 100%);
    border: 2px solid rgba(236, 72, 153, 0.3);
    border-radius: 24px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fv-action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.fv-action-btn i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.fv-action-count,
.fv-action-label {
    font-size: 0.85rem;
    font-weight: 700;
}

/* LIKE */
.fv-action-like:hover {
    border-color: #ff006e;
    box-shadow: 0 8px 24px rgba(255, 0, 110, 0.5);
}

.fv-action-like.active {
    background: linear-gradient(135deg, #ff006e 0%, #d90061 100%);
    border-color: #ff006e;
    animation: heartBeat 0.6s;
}

.fv-action-like.active i {
    animation: heartPulse 1s infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* WISHLIST */
.fv-action-wishlist:hover {
    border-color: #ffc857;
    box-shadow: 0 8px 24px rgba(255, 200, 87, 0.5);
}

.fv-action-wishlist.active {
    background: linear-gradient(135deg, #ffc857 0%, #ff9800 100%);
    border-color: #ffc857;
    color: #000;
}

.fv-action-wishlist.active i {
    animation: bookmarkSlide 0.5s;
}

@keyframes bookmarkSlide {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* SHARE */
.fv-action-share:hover {
    border-color: #06d6a0;
    box-shadow: 0 8px 24px rgba(6, 214, 160, 0.5);
}

.fv-action-share:active i {
    animation: shareRotate 0.6s;
}

@keyframes shareRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
}

/* Badge premium/free al final */
.fv-post-access-badge {
    margin-left: auto;
}

/* Responsive */
@media only screen and (max-width: 600px) {
    .fv-post-actions-bar {
        justify-content: space-between;
    }

    .fv-action-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .fv-action-btn i {
        font-size: 18px;
    }
}

/* === SCROLL EN COLUMNAS DE TEMPLATES (MEGA MENÚ) === */

/* Solo columnas 2 y 3 (Templates) con altura máxima y scroll */
.mega-dropdown .col:nth-child(2) ul,
.mega-dropdown .col:nth-child(3) ul {
    max-height: 260px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding-right: 6px;
}

/* Scrollbar brutal personalizado */
.mega-dropdown .col ul::-webkit-scrollbar {
    width: 5px;
}

.mega-dropdown .col ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.mega-dropdown .col ul::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mega-dropdown .col ul::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #d946ef 0%, #a855f7 100%);
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
}

/* Firefox */
.mega-dropdown .col ul {
    scrollbar-width: thin;
    scrollbar-color: #ec4899 rgba(255, 255, 255, 0.03);
}

/* ============================================
   MEGA MENÚ TOOLS (CIAN) - CLASES NUEVAS
   ============================================ */
ul#mega-tools.mega-dropdown-tools {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important; /* 🔥 Lo centra perfecto */
    top: 64px !important;

    /* Ancho controlado para que no sobre espacio a los lados */
    width: 95vw !important;
    max-width: 1100px !important;

    background: linear-gradient(135deg, rgba(10, 20, 40, 0.95) 0%, rgba(15, 30, 50, 0.95) 100%) !important;
    border: 1px solid rgba(0, 212, 255, 0.3) !important; /* Borde Cian */
    border-radius: 0 0 20px 20px !important;
    border-top: 3px solid #D946F0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

ul#mega-tools li.mega-tools-item .row {
    border-left: none !important;
}

.tools-col {
    padding: 0 15px;
}

.tools-title {
    color: #00d4ff !important;
    font-weight: 700;
    font-size: 0.8rem !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 10px;
}

#mega-tools .tools-more {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    margin-top: 20px !important;
    font-size: 0.8rem !important;
    text-align: left !important;
}
.tools-list {
    list-style: none !important;
    padding: 0 !important;
}

.tools-list-item {
    display: block !important;
    margin-bottom: 12px;
}

.tools-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    padding: 6px 0;
}

.tools-link:hover {
    color: #00d4ff !important;
    padding-left: 6px;
}

.tools-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    background: #00d4ff;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
}

.tools-more {
    font-size: 0.8rem;
    text-decoration: none !important;
    margin-top: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tools-more:hover {
    color: #00d4ff !important;
}

.tools-featured {
    background: rgba(0, 212, 255, 0.08) !important;
    border-radius: 8px;
    padding: 15px !important;
    border: 1px solid rgba(0, 212, 255, 0.2);
    max-height: 480px !important; /* 👈 Limite de altura */

}

.tools-bundle {
    justify-content: space-between;
}

.tools-arrow {
    color: #ffc857;
    font-weight: bold;
}

.mega-dropdown-tools {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    margin: 0;
    display: none;
    position: absolute;
    left: 150%;
    top: 0;
    transform: none;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(236, 72, 153, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: auto;
    min-width: 900px;
    max-width: 95vw;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(236, 72, 153, 0.15);
    animation: megaBrutalSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);

}

/* MEGA TOOLS - Expansión mejor */
#mega-tools {
    min-width: 900px !important;
}

#mega-tools .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 30px !important; /* Espacio interno para que respiren las columnas */
    min-width: 100% !important; /* Sobreescribe tu min-width: 900px del HTML */
}

/* Forza a tus 3 columnas (m4) a distribuirse bn */
#mega-tools .tools-col {
    flex: 1 1 calc(25% - 15px) !important;
    min-width: 200px;
    margin-left: 0 !important;
    padding: 0 20px !important;
    padding-left: 0 !important;
    padding-right: 15px;
    float: none !important; /* Limpieza de Materialize */
}



#mega-tools .col.s12.m3.tools-col:last-child {
    padding-right: 0;
}

.tools-col {
    padding: 0 15px;
}

.mega-dropdown-source {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    margin: 0;
    display: none;
    position: absolute;
    left: -150px;
    top: 0;
    transform: none;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(236, 72, 153, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: auto;
    min-width: 900px;
    max-width: 95vw;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(236, 72, 153, 0.15);
    animation: megaBrutalSlide 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

/* =========================================================
   MEGA MENÚ: SOURCES (PROVEEDORES)
========================================================= */

.mega-dropdown-source .mega-section {
    /* un poco más compacto que el templates mega */
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

/* Barra de scroll bonita */
.mega-dropdown-source .mega-section::-webkit-scrollbar {
    width: 4px;
}

.mega-dropdown-source .mega-section::-webkit-scrollbar-track {
    background: transparent;
}

.mega-dropdown-source .mega-section::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff2fb8, #ff6bcb);
    border-radius: 999px;
}

.mega-dropdown-source h6 {
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    color: #9fa8ff !important;
}

.mega-dropdown-source .mega-section:nth-child(1) h6 {
    color: #7dd3fc !important; /* By Software en celeste */
}

.mega-dropdown-source .mega-section:nth-child(4) h6 {
    color: #fbbf24 !important; /* Más categorías en dorado */
}

/* Links más discretos pero con punch */
.mega-dropdown-source .mega-link-text {
    font-size: 0.88rem !important;
    opacity: 0.9;
}

.mega-dropdown-source .mega-link-text:hover {
    opacity: 1;
    background: rgba(148, 163, 184, 0.14) !important;
    transform: translateX(3px) !important;
}

/* Ítems de software: más “app menu” */
.mega-dropdown-source .app-item a {
    padding: 7px 10px !important;
    border-radius: 10px !important;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.mega-dropdown-source .app-item a:hover {
    background: radial-gradient(circle at top left, #38bdf8, #0ea5e9);
    color: #0b1020 !important;
    transform: translateX(2px) translateY(-1px);
    box-shadow: 0 10px 22px rgba(8, 47, 73, 0.9);
}

.mega-dropdown-source .app-item img,
.mega-dropdown-source .icon-software {
    width: 26px !important;
    height: 26px !important;
    border-radius: 8px !important;
    box-shadow: 0 0 10px rgba(148, 163, 184, 0.4);
}

/* Badge Members en la columna 4 */
.mega-dropdown-source .members-badge {
    background: linear-gradient(135deg, #22c55e, #4ade80) !important;
    color: #052e16 !important;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.7) !important;
}

/* Ajuste de grid para este mega concreto (un poco más estrecho) */
/* Fuerza a que los nombres en Sources bajen a la siguiente línea */
.mega-dropdown-source ul {
    display: flex !important;
    flex-direction: column !important; /* 🔥 Alineación vertical pura */
    margin: 0 !important;
    padding: 0 !important;
}

.mega-dropdown-source li {
    display: block !important; /* Rompe el flujo horizontal */
    width: 100% !important;
    margin-bottom: 4px !important;
}

.mega-dropdown-source .mega-link-text {
    display: block !important;
    width: 100% !important;
    padding: 8px 12px !important;
    white-space: normal !important; /* Permite que nombres largos bajen si es necesario */
}
/* Contenedor principal del mega Sources */
#mega-source.mega-dropdown-source {
    /* 🔥 Centrado matemático respecto a la ventana */
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 80px !important; /* Ajusta según la altura de tu nav */

    /* 🔥 Evita el scroll horizontal */
    width: 95vw !important;
    max-width: 1200px !important;

    /* Estética Pro */
    background: radial-gradient(circle at top left, #151829, #05060b);
    border: 1px solid rgba(236, 72, 153, 0.15) !important;
    border-radius: 20px !important;
    z-index: 1000 !important;
    display: none; /* Materialize lo activa */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Elimina cualquier float / width heredado */
#mega-source .mega-content {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* 🔥 4 columnas exactas */
    gap: 25px !important;
    padding: 30px 40px !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}



/* Columnas normales, no “píldoras” estrechas */
#mega-source .mega-section {
    background: radial-gradient(circle at top left, #15192b, #050711);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px;
    padding: 18px 22px;
    float: none !important;
    width: 100% !important;
    max-height: 400px !important; /* 👈 Altura máxima con scroll interno */
    overflow-y: auto !important;
}

/* Títulos de cada columna */
#mega-source .mega-section h6 {
    margin: 0 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9fb5ff;
}

/* Título por defecto más claro para la primera y última */
#mega-source .mega-section:first-child h6 {
    color: #a5f3fc;
}

#mega-source .mega-section:last-child h6 {
    color: #facc15;
}

/* Listas y links */
#mega-source .mega-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mega-source .mega-section li {
    margin-bottom: 4px;
}

#mega-source .mega-link-text {
    display: block !important;
    padding: 8px 5px !important;
    font-size: 0.9rem !important;
    color: #e5e7eb !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important; /* Evita saltos de línea feos */
    overflow: hidden !important;
    text-overflow: ellipsis !important; /* Pone "..." si el nombre es muy largo */
}

#mega-source .mega-link-text:hover {
    background: rgba(236, 72, 153, 0.1) !important;
    color: #ff2fb8 !important;
    transform: translateX(5px);
}

/* Scrollbar fino */
#mega-source .mega-section::-webkit-scrollbar {
    width: 3px;
}

#mega-source .mega-section::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff2fb8, #ff6bd5);
    border-radius: 999px;
}

/* Contenedor general del mega Filter */
.mega-dropdown-filter {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    display: none; /* lo controla Materialize */
    position: absolute;
    left: -227px;
    top: 10px;
    z-index: 1000;
    padding: 0;
    margin: 0;
    min-width: 1150px;
    max-width: 95vw;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(236, 72, 153, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
}

/* Grid de columnas */
.mega-filter-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 24px;
  padding: 22px 30px;
}



/* columnas */
.mega-dropdown-filter .mega-filter-section {
    background: rgba(12, 16, 32, 0.96);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* títulos */
.mega-dropdown-filter .mega-filter-section h6 {
    margin: 0 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
}

/* listas verticales */
.mega-dropdown-filter .mega-filter-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-dropdown-filter .mega-filter-section li {
    margin-bottom: 6px;
}

/* links: una categoría debajo de otra */
.mega-dropdown-filter .mega-filter-link {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    color: #f5f5f5;
    padding: 4px 2px;
    border-radius: 6px;
    text-decoration: none;
    white-space: normal;
    line-height: 1.4;
    transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.mega-dropdown-filter .mega-filter-link:hover {
    background: rgba(148, 163, 184, 0.18);
    color: #ffffff;
    transform: translateX(3px);
}

/* scrollbar columna */
.mega-dropdown-filter .mega-filter-section::-webkit-scrollbar {
    width: 3px;
}

.mega-dropdown-filter .mega-filter-section::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff2fb8, #ff6bd5);
    border-radius: 999px;
}

/* ================================
   MEGA MENÚ: FILTER
================================ */

#mega-filter.mega-dropdown-filter {
    /* 🔥 Centrado absoluto respecto a la ventana */
    left: 50% !important;
    transform: translateX(-50%) !important;

    /* 🔥 Control de ancho para evitar el scroll horizontal */
    width: 95vw !important; /* Ocupa el 95% de la pantalla si es pequeña */
    max-width: 1200px !important; /* Pero nunca más que tu contenedor principal */

    position: fixed !important; /* Cambia a fixed para que se alinee a la pantalla, no al link */
    top: 80px !important; /* Ajusta según la altura de tu nav */

    /* Estética */
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%) !important;
    border: 1px solid rgba(236, 72, 153, 0.15) !important;
    border-radius: 20px !important;
    overflow: hidden !important; /* Corta cualquier cosa que intente salir */
}


/* Grid de 4 columnas, ancho tipo captura */
#mega-filter .mega-content {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(280px, 1fr)) !important;
    gap: 24px !important;
}

/* Tarjetas de cada grupo (Editing, Packs, etc.) */
#mega-filter .mega-section {
    float: none !important;
    width: 100% !important;
    background: rgba(12, 16, 32, 0.96);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(148, 163, 184, 0.35);

    /* Scroll vertical suave si hay muchas categorías */
    max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Títulos de columna */
#mega-filter .mega-section h6 {
    margin: 0 0 10px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e5e7eb;
}

/* Listas internas */
#mega-filter .mega-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#mega-filter .mega-section li {
    margin-bottom: 6px;
}

/* Enlaces de categorías */
#mega-filter .mega-link-text {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    color: #f5f5f5;
    padding: 4px 2px;
    border-radius: 6px;
    text-decoration: none;
    white-space: normal;
    transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

#mega-filter .mega-link-text:hover {
    background: rgba(148, 163, 184, 0.18);
    color: #ffffff;
    transform: translateX(3px);
}

#mega-filter .mega-section::-webkit-scrollbar {
    width: 3px;
}

#mega-filter .mega-section::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff2fb8, #ff6bd5);
    border-radius: 999px;
}
.dropdown-content {
        top: 100% !important; /* Se pega justo debajo de la barra */
        transform: none !important;
        margin-top: 2px; /* Pequeño respiro */
}

 #mega-tools, #mega-filter, #mega-source {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 64px !important;
    width: 95vw !important;
    max-width: 1200px !important; /* 🔥 Ancho unificado para todos */
    background: linear-gradient(135deg, #0f0f1e 0%, #05060b 100%) !important;
    border: 1px solid rgba(255, 0, 153, 0.2) !important;
    border-radius: 0 0 20px 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
    padding: 0 !important;
    overflow: hidden !important;
}
/* Quitar fondo y sombra heredados solo en mega-filter */
#mega-filter.dropdown-content {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}



/* Asegurar que el li interno no meta fondo blanco */
#mega-filter.dropdown-content > li {
  background: transparent !important;
}

/* Quitar estilos globales de mega-dropdown dentro de mega-filter */
#mega-filter .mega-filter-link {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  color: #f5f5f5 !important;
  padding: 4px 2px;
  border-radius: 6px;
  text-decoration: none;
  white-space: normal;
  line-height: 1.4;
  background: transparent !important;
}

/* Hover correcto (oscuro, no gris claro) */
#mega-filter .mega-filter-link:hover {
  background: rgba(148, 163, 184, 0.18) !important;
  color: #ffffff !important;
  transform: translateX(3px);
}

#mega-filter li {
  background: transparent !important;
}

/* Posición del mega FILTER respecto al nav */
.dropdown-content.mega-dropdown-filter,
.dropdown-content.mega-dropdown {
  top: 76px !important;   /* 64px del nav + 12px de espacio */
}
.fv-pill.active {
  background: #ec4899;
  color: #fff;
  box-shadow: 0 0 8px rgba(236,72,153,.6);
}

/* HERO DEL BUSCADOR */
.fv-search-hero {
  max-width: 1180px;
  margin: 18px auto 10px;
  padding: 18px 20px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #1b1b20, #050509);
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.fv-search-hero-left {
  flex: 1;
}

.fv-search-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(236,72,153,0.18);
  color: #ff9ee5;
  margin-bottom: 8px;
}

.fv-search-title-main {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #f9fafb;
}

.fv-search-title-main span {
  color: #ff4fa3;
}

.fv-search-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #b0b0c0;
}

.fv-search-hero-right {
  flex-shrink: 0;
}

.fv-search-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.1),
    rgba(129, 140, 248, 0.15)
  );
  border: 1px solid rgba(236, 72, 153, 0.4);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
  font-size: 0.8rem;
}

.fv-search-hero-badge i {
  font-size: 20px;
  color: #ff4fa3;
}

.fv-search-hero-badge strong {
  display: block;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.fv-search-hero-badge span {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* META DE RESULTADOS */
.fv-search-results-meta {
  max-width: 1180px;
  margin: 8px auto 18px;
  font-size: 0.8rem;
  color: #9ca3af;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ESTADO VACÍO DEL BUSCADOR */
.fv-search-empty {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 40px auto 0;
  padding: 26px 24px;
  text-align: center;
  border-radius: 18px;
  background: radial-gradient(circle at top, #181824, #050509);
  border: 1px dashed rgba(236,72,153,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.85);
}

.fv-search-empty i {
  font-size: 40px;
  color: #6b7280;
  margin-bottom: 8px;
}

.fv-search-empty h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fv-search-empty p {
  margin: 0;
  font-size: 0.9rem;
  color: #b0b0c0;
}

/* un poco más de aire al grid en página de búsqueda */
.fv-assets-grid--search {
  margin-top: 4px;
}

.fv-post-body-rich {
  margin-top: 16px;
}

.fv-post-body-rich__content {
  line-height: 1.6;
}

/* Imágenes dentro del contenido */
.fv-post-body-rich__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 8px auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

/* Videos o iframes (YouTube, etc.) dentro del contenido */
.fv-post-body-rich__content iframe,
.fv-post-body-rich__content video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 12px auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.85);
}

/* Párrafos del texto */
.fv-post-body-rich__content p {
  margin-bottom: 0.6rem;
}

/* Fila del header del post */
.fv-post-header-row {
  align-items: center;
  margin-bottom: 12px;
}

/* Migas */
.fv-post-breadcrumb {
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem !important;
  opacity: 0.8;
}

.fv-post-breadcrumb-root {
  color: #9ca3af;
}

.fv-post-breadcrumb-sep {
  margin: 0 4px;
  color: #6b7280;
}

/* Título principal del post */
.fv-post-title {
  margin: 0 0 6px 0;
  font-size: 1.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f9fafb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

/* Línea sutil debajo del título */
.fv-post-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 80px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2fb8, #6b3cff);
  box-shadow: 0 0 10px rgba(236,72,153,0.6);
}

/* Subtítulo */
.fv-post-sub {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: #9ca3af !important;
}

/* Badges de acceso al lado derecho (ya definidos en parte del CSS, los afinamos) */
.fv-post-access-badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 8px;
}

.fv-post-badge-premium,
.fv-post-badge-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.fv-post-badge-premium {
  background: linear-gradient(135deg, #ffc857 0%, #6a0156 100%);
  color: #000;
}

.fv-post-badge-free {
  background: linear-gradient(135deg, #06aa42 0%, #072a12 100%);
  color: #fff;
}

.fv-post-badge-premium i,
.fv-post-badge-free i {
  font-size: 10px;
}

/* Responsive: que el título no se corte feo en móvil */
@media (max-width: 600px) {
  .fv-post-title {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    white-space: normal;
  }

  .fv-post-title::after {
    width: 60px;
  }

  .fv-post-access-badge {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/* Panel de recientes en el lateral */
.fv-recent-panel {
  background: #111116;
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  margin-top: 16px;
}

.fv-recent-title {
  margin: 0 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.fv-recent-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fv-recent-item + .fv-recent-item {
  margin-top: 6px;
}

/* Thumbnails en recent uploads */
.fv-recent-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(0,0,0,0.25);
  color: #e5e7eb;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.fv-recent-link:hover {
  background: rgba(236,72,153,0.16);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
}

.fv-recent-thumb-wrap {
  flex-shrink: 0;
}

.fv-recent-thumb {
  width: 52px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.8);
}

.fv-recent-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff2fb8, #6366f1);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fv-recent-info {
  flex: 1;
  min-width: 0;
}

.fv-recent-name {
  display: block;
  font-size: 0.86rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv-recent-meta {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ================================
   ASSET CARDS – FIX DEFINITIVO
   ================================ */

.fv-asset-card {
  background: radial-gradient(circle at top, #020617 0%, #000 70%);
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.fv-asset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,.8);
}

/* CONTENEDOR IMAGEN */
.fv-card {
  background: radial-gradient(circle at top, #020617 0%, #000 70%);
  border: 1px solid rgba(148,163,184,.28);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.fv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,.85);
}


/* IMAGEN */
.fv-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 👈 nunca se deforma */
  object-position: center;
  display: block;
  transition: transform .35s ease;
}

.fv-asset-card:hover .fv-card-thumb img {
  transform: scale(1.06);
}

/* =========================================
   FOOTER SOCIAL ICONS
   ========================================= */
.fv-social-section {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alineado a la derecha */
    gap: 15px; /* Espacio entre iconos */
}

.fv-social-icon {
    color: #e0e0e0; /* Color base (gris claro) */
    font-size: 1.5rem; /* Tamaño del icono */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Efecto Hover (Brillo Neon) */
.fv-social-icon:hover {
    color: #00f3ff; /* Cyan FrameVault */
    transform: translateY(-2px); /* Pequeña elevación */
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

/* Ajuste para móviles: centrar todo */
@media (max-width: 600px) {
    .fv-footer-right,
    .fv-social-section {
        text-align: center;
        justify-content: center;
    }
}

/* --- CONTENEDOR --- */
.fv-file-meta-value--full {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* --- BOTÓN BASE --- */
.fv-round-btn {
    border-radius: 50px;
    padding: 0 24px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.fv-round-btn i { font-size: 18px; }

/* 1. ESTILO LOGIN (ROSA ALERT) */
.fv-round-btn.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.4);
}
.fv-round-btn.pink:hover {
    box-shadow: 0 0 20px rgba(219, 39, 119, 0.7);
    transform: translateY(-2px);
}

/* 2. ESTILO FREE (GRIS SOBRIO) */
.btn-free {
    background: #1e293b;
    color: #94a3b8;
    border: 1px solid #334155;
}
.btn-free:hover {
    background: #334155;
    color: white;
    border-color: #475569;
}

/* 3. ESTILO PREMIUM (CYAN NEÓN) */
.btn-premium {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4; /* Cyan */
    border: 1px solid #06b6d4;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}
.btn-premium:hover {
    background: #06b6d4;
    color: #000;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.6);
    transform: translateY(-2px);
}

/* 4. ESTILO "GET MEMBERSHIP" (MORADO) */
.fv-round-btn.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

/* 5. FAST SERVERS 2 & 3 (MINIMALISTAS) */
.fv-btn-dl.fv-btn-p2,
.fv-btn-dl.fv-btn-p3 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s;
    height: auto;
}
.fv-btn-dl:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

/* RESPONSIVE (CELULAR) */
@media (max-width: 600px) {
    .fv-file-meta-value--full {
        flex-direction: column;
        align-items: stretch;
    }
    .fv-round-btn, .fv-btn-dl {
        width: 100%;
    }
}

/* Alerta de Espejos Superior */
.fv-mirror-alert-brutal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 10px;
    color: #f472b6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fv-mirror-alert-brutal i {
    font-size: 14px;
}

/* Botones Mirror Secundarios (Server 2-5) */
.fv-btn-mirror-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: #cbd5e1;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fv-btn-mirror-small:hover {
    background: rgba(148, 163, 184, 0.1);
    border-color: rgba(148, 163, 184, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* =========================================================
   SISTEMA DE BOTONES BRUTALES - FRAMEVAULT
   ========================================================= */

/* Base para todos los botones grandes */
.fv-btn-brutal {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 52px;
    width: 100%;
    border-radius: 14px;
    color: #fff !important;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

/* Efecto de brillo interior (común a todos) */
.fv-btn-brutal .fv-btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: 0.6s;
}

.fv-btn-brutal:hover .fv-btn-glow { left: 100%; }
.fv-btn-brutal:hover { transform: translateY(-3px); filter: brightness(1.1); }

/* --- COLORES POR TIPO --- */

/* 1. LOGIN (Rosa Intenso / Alerta) */
.fv-btn-login-brutal {
    background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
    box-shadow: 0 8px 25px rgba(190, 18, 60, 0.4);
}

/* 2. FREE (Verde Esmeralda / Éxito) */
.fv-btn-free-brutal {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

/* 3. MEMBERSHIP (Morado Profundo / Vainilla) */
.fv-btn-membership-brutal {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.4);
}

/* 4. PREMIUM (El estilo actual Violeta/Rosa) */
.fv-btn-premium-brutal {
    background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
    box-shadow: 0 8px 25px rgba(219, 39, 119, 0.4);
}

.fv-floating-signup {
    position: fixed;
    left: 24px;
    bottom: 28px;
    transform: none;
    z-index: 1100;
    max-width: 520px;            /* más ancho */
    width: 520px;
    background:
        radial-gradient(circle at top left, rgba(255, 47, 184, 0.25), transparent 55%),
        radial-gradient(circle at bottom right, rgba(107, 60, 255, 0.22), transparent 60%),
        linear-gradient(135deg, #050509 0%, #0b0b18 45%, #050509 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 47, 184, 0.55);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.95);
    color: #f5f5f5;
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.fv-floating-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
}

.fv-floating-text {
    flex: 1 1 auto;
    min-width: 0;
}

.fv-floating-pill {
    display: inline-block;
    margin-bottom: 8px;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 47, 184, 0.25);
    color: #ffd5ff;
}

.fv-floating-text h3 {
    margin: 0 0 6px 0;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e5e7eb;
}

.fv-floating-text p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #b7bacf;
}

.fv-floating-actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Botón con borde glowing separado del texto */
.fv-floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: linear-gradient(135deg, #ff2fb8 0%, #ff6bd5 35%, #6b3cff 100%);
    color: #ffffff;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.95),
        0 0 20px rgba(255, 47, 184, 0.75);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.fv-floating-btn:hover {
    filter: brightness(1.09);
    transform: translateY(-2px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 1),
        0 0 26px rgba(255, 47, 184, 0.95);
}

/* Botón de cerrar más limpio */
.fv-floating-close {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #f5f5f5;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 999px;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.fv-floating-close i {
    font-size: 16px;
}

.fv-floating-close:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .fv-floating-signup {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
    }

    .fv-floating-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .fv-floating-actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }

    .fv-floating-btn {
        flex: 1;
        justify-content: center;
    }
}
/* =========================================================
   DISEÑO "MORTAL" COMPACTO - FRAMEVAULT ACCESS SYSTEM
   ========================================================= */

/* 1. Fondo Galaxia Profunda */
.fv-access-page {
    background: radial-gradient(circle at 50% -20%, #101026 0%, #000000 80%) !important;
    padding-top: 80px !important;
}

/* 2. Grid Técnico y Afilado */
.fv-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Más pequeñas para que quepan más */
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 3. La Card: Estilo Carátula de Juego Premium */
.fv-access-grid .fv-card {
    background: #000 !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: 20px !important; /* Curva técnica, no infantil */
    padding: 10px !important;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fv-access-grid .fv-card:hover {
    transform: translateY(-5px);
    border-color: #00f3ff; /* Glow Cian */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 243, 255, 0.1);
}

/* 4. Miniatura con Aspecto de Cine */
.fv-access-grid .fv-card-thumb {
    border-radius: 16px !important;
    aspect-ratio: 1 / 1.2 !important;
    margin-bottom: 15px;
    background: #050505;
    overflow: hidden;
}

/* 5. Botón Preview Neón (Cian) */
.fv-access-grid .fv-card-play {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 243, 255, 0.3) !important;
    color: #00f3ff !important;
    font-size: 0.65rem !important;
    padding: 4px 12px !important;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.fv-access-grid .fv-card-play i {
    color: #00f3ff !important;
}

/* 6. Botón de Acción Circular (El Verde de tu imagen) */
.fv-access-grid .fv-round-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 44px !important; /* Tamaño compacto */
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: #00e676 !important; /* Verde Neón exacto */
    color: #000 !important;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
    border: none;
    z-index: 10;
}

.fv-access-grid .fv-round-btn i {
    font-size: 20px !important;
}

/* 7. Texto Técnico y Compacto */
.fv-access-grid .fv-card-title {
    font-size: 0.88rem !important; /* Más pequeño para que se vea pro */
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.2;
    padding-right: 40px; /* Evita que el texto pise el botón verde */
    margin-top: 5px !important;
    display: block;
}

.fv-access-grid .fv-card-meta {
    font-family: 'JetBrains Mono', monospace; /* Estilo código */
    font-size: 0.6rem !important;
    color: #00f3ff !important; /* Meta en cian */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px !important;
    opacity: 0.7;
}

/* 8. Badge Premium/Free Flotante */
.fv-access-grid .fv-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.6rem !important;
    padding: 3px 10px !important;
    border-radius: 6px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.fv-access-grid .fv-badge-premium { color: #ff2fb8; border-color: rgba(255, 47, 184, 0.3); }
.fv-access-grid .fv-badge-free { color: #00e676; border-color: rgba(0, 230, 118, 0.3); }


/* =========================================================
   HEADER IMPACTANTE - FREE & PREMIUM
   ========================================================= */

.fv-access-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 20px;
}

/* El "Pill" superior con brillo neón */
.fv-access-pill {
    display: inline-block;
    background: rgba(236, 72, 153, 0.1);
    color: #ff2fb8;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid rgba(236, 72, 153, 0.5);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
    margin-bottom: 15px;
}

/* Título Gigante con Degradado y Sombra */
.fv-access-title {
    /* Tamaño responsivo: se ajusta solo */
    font-size: clamp(3rem, 10vw, 5.5rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -2px;
    margin: 0 0 20px 0 !important;

    /* Degradado de Blanco a Gris Metálico */
    background: linear-gradient(180deg, #ffffff 30%, #444444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Sombra de profundidad */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.8));
    animation: fvTitleFloat 4s ease-in-out infinite;
}

/* Subtítulo nítido */
.fv-access-sub {
    font-size: 1.1rem;
    color: #00f3ff; /* Color cian para contrastar */
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Animación sutil de flotación para el título */
@keyframes fvTitleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Contenedor de iconos al lado del botón */
.fv-access-grid .fv-card-softwares-mortal {
    position: absolute;
    bottom: 22px; /* Sube un poco para alinearse al centro del botón */
    right: 78px;  /* Espacio exacto para que no se pegue al brillo del botón */
    display: flex;
    gap: 10px;    /* Espacio elegante entre iconos */
    z-index: 10;
}

/* Las "Pills" de los iconos: Fondo sutil y borde afilado */
.fv-access-grid .fv-soft-pill-mortal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;  /* Contenedor un poco más grande para el fondo */
    height: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px; /* Bordes ligeramente curvos estilo app pro */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fv-access-grid .fv-soft-pill-mortal img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
    filter: grayscale(1) brightness(0.9); /* Apagados por defecto */
    transition: 0.3s;
}

/* Efecto al pasar el mouse por la Tarjeta Completa */
.fv-access-grid .fv-card:hover .fv-soft-pill-mortal {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 243, 255, 0.3); /* Borde cian sutil */
    transform: translateY(-2px);
}

.fv-access-grid .fv-card:hover .fv-soft-pill-mortal img {
    filter: grayscale(0) brightness(1.1); /* Se encienden a color */
}
/* El botón circular debe ser el protagonista */
.fv-access-grid .fv-round-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 48px !important;
    height: 48px !important;
    background: #00e676 !important;
    color: #000 !important;
    border-radius: 50% !important;
    box-shadow: 0 0 0 rgba(0, 230, 118, 0);
    transition: all 0.4s ease;
}

.fv-access-grid .fv-card:hover .fv-round-btn {
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.6),
                0 0 40px rgba(0, 230, 118, 0.2);
    transform: scale(1.05);
}

/* Contenedor del botón sobre la imagen */
.fv-card-preview-trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

/* Estilo del botón circular (Badge de Play/Audio) */
.fv-play-badge {
    background: rgba(81, 92, 231, 0.9); /* Color morado/azul de tu marca */
    color: white !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.fv-play-badge:hover {
    transform: scale(1.1);
    background: #00e676; /* Cambia a verde neón en hover */
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.6);
}

.fv-play-badge i {
    font-size: 20px;
}

/* Sidenav Oscuro */
.fv-mobile-sidenav {
    background-color: #0b0d14 !important; /* Fondo ultra oscuro */
    width: 280px !important;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.fv-mobile-sidenav .sidenav-spacer {
    height: 20px;
}

/* Estilo de los enlaces e íconos */
.fv-mobile-sidenav li a {
    color: #e0e0e0 !important;
    font-size: 15px !important;
    font-weight: 500;
    height: 56px;
    line-height: 56px;
    display: flex;
    align-items: center;
}

.fv-mobile-sidenav li a i {
    color: #8e8e8e !important;
    margin-right: 24px !important;
    font-size: 22px;
}

/* Hover y selección */
.fv-mobile-sidenav li a:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Botones Join y Login */
.fv-mobile-auth {
    padding: 0 20px;
    margin-top: 15px;
}

.fv-mobile-auth .btn {
    width: 100%;
    border-radius: 25px; /* Bordes redondeados como en tu imagen */
    text-transform: none;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    box-shadow: none;
}

.fv-mobile-btn-login {
    background-color: #ff007c !important; /* Rosa intenso del logo */
    margin-bottom: 12px;
}

.fv-mobile-btn-join {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%) !important; /* Gradiente azul/púrpura */
}

.fv-mobile-sidenav .divider {
    background-color: rgba(255,255,255,0.1);
    margin: 15px 0;
}

/* Contenedor para dar aire entre botones */
.fv-mobile-auth-container {
    padding: 8px 24px !important;
}

/* Base del botón moderno */
.fv-btn-modern {
    display: block !important;
    height: 52px !important;
    line-height: 52px !important;
    text-align: center;
    border-radius: 12px !important; /* Bordes redondeados modernos, no circulares */
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px;
    text-transform: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

/* Botón Login: Magenta FrameVault */
.fv-btn-login-mobile {
    background: #ff007c !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botón Join Now: Gradiente Pro */
.fv-btn-join-mobile {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(37, 117, 252, 0.4);
}

/* Efecto de brillo al presionar */
.fv-btn-modern:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Ajuste del texto dentro del botón */
.fv-btn-modern span {
    position: relative;
    z-index: 2;
}

/* Corrección de alineación del Hero */
.fv-hero-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

/* Contenedor del lado derecho para que no se deforme */
.fv-hero-visual-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* La Card con tu estilo pero COMPACTA */
.hero-mortal-card {
    max-width: 360px !important; /* 🔥 ESTO EVITA EL ENSANCHAMIENTO */
    width: 100% !important;
    background: #000 !important;
    border: 1px solid rgba(255, 0, 153, 0.3) !important; /* Tu magenta */
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 0, 153, 0.1) !important;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-mortal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,1), 0 0 20px rgba(255, 0, 153, 0.2) !important;
}

.hero-mortal-card .fv-card-thumb {
    aspect-ratio: 16/9 !important;
    overflow: hidden;
}

.hero-mortal-card .fv-card-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.hero-mortal-card .fv-card-body {
    padding: 15px 20px !important;
}

.hero-mortal-card .fv-card-title {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

/* Botón flotante dentro de la card hero */
.hero-card-btn {
    position: absolute !important;
    bottom: 12px !important;
    right: 12px !important;
    background: #ff2fb8 !important; /* Tu color magenta */
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(255, 0, 153, 0.4) !important;
}

.hero-card-btn i {
    font-size: 20px !important;
    color: #fff !important;
}

/* Responsive para que en tablet/móvil se centre */
@media (max-width: 992px) {
    .fv-hero-row {
        flex-direction: column !important;
        text-align: center;
    }
    .fv-hero-title {
        font-size: 1.8rem !important;
    }
    .fv-hero-visual-wrapper {
        margin-top: 40px;
    }
}