/* Global Styles */
:root {
    --primary-color: #ff3b3f;
    --secondary-color: #a2a2a2;
    --bg-color: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-color: #f0f0f0;
    --heading-color: #ffffff;
    --nav-bg: rgba(15, 15, 15, 0.95);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-bg: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
    --primary-color: #d62839;
    --secondary-color: #444444;
    --bg-color: #ffffff;
    --card-bg: #f8f8f8;
    --text-color: #1a1a1a;
    --heading-color: #000000;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --border-color: rgba(0, 0, 0, 0.1);
    --hover-bg: rgba(0, 0, 0, 0.05);
}

/* Light theme overrides for better contrast */
[data-theme="light"] .hero::after,
[data-theme="light"] .hero-slide-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

[data-theme="light"] .hero-content h1,
[data-theme="light"] .hero-slide-title {
    color: #ffffff;
}

[data-theme="light"] .hero-content p,
[data-theme="light"] .hero-slide-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, #d62839, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .btn {
    border: 2px solid #d62839;
}

[data-theme="light"] .footer {
    background: #f0f0f0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .footer p {
    color: #555555;
}

[data-theme="light"] .video-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.video-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: visible;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.video-card .video-wrapper {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.video-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 59, 63, 0.25);
    border-color: var(--primary-color);
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.video-card:hover::before {
    opacity: 1;
}

[data-theme="light"] .video-info {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .video-title {
    color: #1a1a1a;
}

[data-theme="light"] .lightbox {
    background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .lightbox-content {
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .lightbox-content video {
    background: #000;
}

[data-theme="light"] .search-box input {
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

[data-theme="light"] .search-box input::placeholder {
    color: #555555;
}

[data-theme="light"] .search-box input {
    color: #1a1a1a;
    background: #ffffff;
}

[data-theme="light"] .search-box i {
    color: #666666;
}

[data-theme="light"] .nav-links .dropdown-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-links li a,
[data-theme="light"] .nav-links .nav-dropdown-trigger {
    color: #1a1a1a;
}

[data-theme="light"] .hero-content h1,
[data-theme="light"] .hero-slide-title {
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .hero-content p,
[data-theme="light"] .hero-slide-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] h3,
[data-theme="light"] .stat-number,
[data-theme="light"] .price-badge {
    color: #1a1a1a;
    text-shadow: none;
}

[data-theme="light"] .section-header h2,
[data-theme="light"] .about-text h2 {
    background: linear-gradient(135deg, #d62839, #ff3b3f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
}

[data-theme="light"] .card-title,
[data-theme="light"] .video-title,
[data-theme="light"] .card-meta,
[data-theme="light"] .video-duration,
[data-theme="light"] .video-price {
    color: #1a1a1a;
    text-shadow: none;
}

[data-theme="light"] .quality-badge {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Subtítulos de páginas - forzar blanco para visibility */
.section-header p[style*="margin-top: 15px"] {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: visible;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 13px auto;
    padding: 0 20px 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 100px;
    padding-top: 20px;
}

/* Desktop first - margin-top para compensar navbar fijo solo en el contenedor raíz de la página */
@media (min-width: 769px) {
    body:not(.player-page)>.container:not(.nav-container) {
        margin-top: 120px;
    }
}

.nav-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

[data-theme="light"] .navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* VIP Nav Link - Videos de Sexo */
.vip-nav-link {
    color: #00aaff !important;
    font-weight: 600 !important;
}

.vip-nav-link:hover {
    color: #ff00aa !important;
    text-shadow: 0 0 10px rgba(0, 170, 255, 0.5);
}

[data-theme="light"] .vip-nav-link {
    color: #0066ff !important;
}

[data-theme="light"] .vip-nav-link:hover {
    color: #ff00aa !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--card-bg);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border-radius: 5px;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content li {
    width: 100%;
}

.dropdown-content li a {
    color: var(--text-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-content li a:hover,
.dropdown-content li a.active {
    background-color: rgba(255, 59, 63, 0.1);
    /* Ligero tinte rojo */
    color: var(--primary-color);
    padding-left: 20px;
    /* Efecto de desplazamiento */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Evitar que la línea roja de hover de los links padres se vuelva loca */
.nav-links li.dropdown a::after {
    display: none;
    /* Quitamos la línea para el item padre del dropdown si se prefiere */
}

/* Dropdown trigger (span, no link) */
.nav-dropdown-trigger {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding-bottom: 5px;
    cursor: default;
    user-select: none;
    transition: var(--transition);
}

.nav-dropdown-trigger:hover {
    color: var(--primary-color);
}

.nav-dropdown-trigger.active {
    color: var(--primary-color);
}

/* Opcional: Icono de flecha en el menú */
.dropdown>a i,
.dropdown>.nav-dropdown-trigger i {
    font-size: 0.8rem;
    margin-left: 5px;
    vertical-align: middle;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

/* --- 1. ANTIGUO HAMBURGER LINE (ELIMINADO - Ahora en mobile-hamburger.css) --- */
/* El boton hamburguesa y sus estilos ahora estan en mobile-hamburger.css */

.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-theme-toggle {
    display: none;
}

.nav-container>.theme-toggle {
    display: flex;
}

/* Hero Section */
.hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 75vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding: 120px 20px 20px;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    will-change: transform, opacity;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 6s ease-out;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.hero-slide-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-slide-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-static {
    position: absolute;
    inset: 0;
    background: #0f0f0f;
    z-index: 0;
    overflow: hidden;
}

.hero-static::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/Baners/Lentebanner.jpg') center center / cover no-repeat;
    z-index: 0;
}

.hero-static::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), #ff9a9e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 59, 63, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 59, 63, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Search Bar */
.search-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 25px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-main);
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 59, 63, 0.2);
}

.search-box i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
}

/* Grids */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    overflow: visible;
    padding-bottom: 20px;
}

.card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

/* Video Card - Thumbnail First (Click to Load) */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    overflow: hidden;
    background: #000;
}

.video-thumb-wrapper {
    cursor: pointer;
}

.video-wrapper video.video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: auto;
    /* Behind overlay */
}

.video-wrapper img.thumb-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: auto;
}

.video-wrapper .play-overlay {
    z-index: 2;
    pointer-events: auto;
    /* Content on top */
}

.video-wrapper.playing video {
    z-index: 5;
}

/* Video Watermark */
.video-watermark {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0;
    animation: fadeInWatermark 0.5s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInWatermark {
    to {
        opacity: 1;
    }
}

/* Proteger contenido - evitar selección y drag - DESACTIVADO
.video-wrapper,
.video-wrapper video,
.photo-lightbox,
.photo-lightbox img,
.video-lightbox,
.video-lightbox video,
.lightbox-watermark {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}
*/

/* Play overlay shown on thumbnail */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-thumb-wrapper:hover .play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.play-btn-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 59, 63, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 20px rgba(255, 59, 63, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding-left: 4px;
    /* optical centering for play icon */
}

.video-thumb-wrapper:hover .play-btn-circle {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(255, 59, 63, 0.7);
}

/* Duration badge bottom-right */
.video-duration-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .video-duration-badge {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}



.card-info {
    padding: 20px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.video-info {
    padding: 15px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
    text-align: left;
}

.video-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.video-duration,
.video-price {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.video-duration i,
.video-price i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 16px;
}

.payment-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-info i {
    color: #0070ba;
}

/* Photo Pack Card & Slider */
.card-cover-wrapper {
    position: relative;
    padding-bottom: 75%;
    /* 4:3 Aspect Ratio for main cover */
    overflow: hidden;
    background: #000;
}

.card-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0;
    z-index: 10;
}

.card-cover-wrapper:hover .card-nav-btn {
    opacity: 1;
}

.card-nav-btn:hover {
    background: var(--primary-color);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.main-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.card:hover .main-cover {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.card-details {
    display: flex;
    flex-direction: column;
}

.mini-slider-container {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    padding: 10px;
    background: #252525;
    /* Fondo oscuro para el slider */
    scrollbar-width: thin;
    /* Firefox */
}

/* Custom scrollbar for webkit */
.mini-slider-container::-webkit-scrollbar {
    height: 5px;
}

.mini-slider-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

.mini-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid transparent;
    transition: var(--transition);
}

.mini-thumb:hover {
    border-color: var(--primary-color);
    opacity: 0.8;
}

.card-info {
    padding: 15px 20px;
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Fondo un poco oscurecido pero visible */
    backdrop-filter: blur(5px);
    /* Efecto de desenfoque en el fondo */
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    background: var(--card-bg);
    /* Fondo del "marco" de la ventana */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
}

/* Close buttons inside the logic */
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

[data-theme="light"] .lightbox-close {
    color: var(--text-color);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.video-lightbox-content {
    max-width: 720px;
    max-height: 70vh;
    width: auto;
    height: auto;
    aspect-ratio: 16/9;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-lightbox-content video {
    width: 100%;
    height: 100%;
    max-height: 65vh;
    border-radius: 8px;
    background: #000;
    object-fit: contain;
    pointer-events: auto;
}

.video-lightbox-content .lightbox-watermark {
    position: absolute;
    bottom: 25px;
    right: 25px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    /* Ancho completo de la pantalla para los controles */
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    pointer-events: none;
}

.lightbox-btn {
    background: transparent;
    color: white;
    border: none;
    font-size: 3rem;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
}

.lightbox-btn:hover {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 59, 63, 0.5);
}

/* About Me & Testimonials */
.about-section {
    padding: 80px 20px;
    background: transparent;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 30px;
}

[data-theme="light"] .section-line {
    background: linear-gradient(90deg, var(--primary-color), transparent);
    height: 3px;
    width: 80px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

/* About Me Carousel */
.about-carousel {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 4/5;
    max-width: 400px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .about-carousel {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid #ffffff;
}

.carousel-slides-about {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-about-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-about-slide.active {
    opacity: 1;
}

.testimonials-section {
    padding: 80px 20px;
    background: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-line {
    margin: 20px auto 0;
}

.packs-total-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(233, 69, 96, 0.6);
    }
}

.price-notice {
    display: block;
    width: fit-content;
    margin: 12px auto 0;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-style: italic;
}

[data-theme="light"] .price-notice {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats-section {
    padding: 0px 0;
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Featured Content 3D Carousel */
.featured-section {
    padding: 0px 0;
    perspective: 2000px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255, 59, 63, 0.05) 0%, transparent 70%);
}

/* =========================================
   2D Scroll-Snap Carousel
   ========================================= */
.carousel-2d-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .carousel-2d-wrapper {
        padding: 0;
    }
}

.carousel-2d-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 25px;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-2d-container::-webkit-scrollbar {
    display: none;
}

.carousel-2d-item {
    flex: 0 0 300px;
    height: 400px;
    scroll-snap-align: center;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .carousel-2d-item {
        flex: 0 0 250px;
        height: 350px;
    }
}

.carousel-2d-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(255, 59, 63, 0.3);
}

.carousel-2d-item img,
.carousel-2d-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    pointer-events: auto;
}

.carousel-2d-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    z-index: 5;
}

.carousel-2d-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.carousel-2d-info p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.carousel-2d-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-2d-btn:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 59, 63, 0.4);
}

.carousel-2d-btn.left {
    left: 0;
}

.carousel-2d-btn.right {
    right: 0;
}

@media (max-width: 768px) {
    .carousel-2d-btn {
        display: none;
    }
}

.carousel-2d-item .featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 59, 63, 0.4);
}

/* Old Carousel 3D Cleanup */
.carousel-3d-wrapper,
.carousel-3d-container,
.carousel-3d-item,
.carousel-3d-controls,
.carousel-3d-btn {
    display: none;
}

/* Services Section */
.services-highlight-section {
    padding: 0px 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(233, 69, 96, 0.02));
}

.services-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-highlight-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-highlight-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    border-radius: 50%;
    font-size: 1.8rem;
    color: white;
}

.service-highlight-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
}

.service-highlight-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.6);
}

@media (max-width: 768px) {
    .btn-premium {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .btn-premium i {
        font-size: 0.8rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 0px 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    color: var(--heading-color);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.faq-answer ul {
    color: var(--secondary-color);
    margin-left: 20px;
    line-height: 1.8;
}

/* Offers Section */
.offers-section {
    padding: 0px 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(255, 107, 157, 0.05));
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.3);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b9d, var(--primary-color));
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.offer-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offer-card h3 {
    color: var(--heading-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.offer-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 20px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.quality-text {
    margin-top: 15px;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.video-count {
    margin-top: 12px;
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 59, 63, 0.1);
    border: 1px solid rgba(255, 59, 63, 0.2);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

[data-theme="light"] .video-count {
    background: rgba(230, 57, 70, 0.08);
    border-color: rgba(230, 57, 70, 0.15);
}

[data-theme="light"] .quality-badge {
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    display: inline-flex;
    gap: 1px;
}

.testimonial-card p {
    color: var(--secondary-color);
    font-style: italic;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }

    .section-line {
        margin: 0 auto 20px;
    }

    .about-text {
        order: 2;
    }

    .about-carousel {
        order: 1;
        width: 100%;
        max-width: 320px;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }
}

/* Footer */
.footer {
    background: var(--card-bg);
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.social-links a {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Packs Grid - Photo Packs */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

#packs-wrapper {
    display: contents;
}

#packs-sentinel {
    grid-column: 1 / -1;
    height: 1px;
    pointer-events: none;
}

.pack-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 59, 63, 0.25);
    border-color: var(--primary-color);
}

.pack-title {
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    border-bottom: 1px solid var(--border-color);
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #000;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.pack-price {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    gap: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid var(--border-color);
}

.pack-price i {
    font-size: 1rem;
}

/* Photo Lightbox */
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-lightbox.active {
    display: flex;
    opacity: 1;
}

.photo-lightbox-content {
    position: relative;
    max-width: 70%;
    max-height: 80vh;
    background: var(--card-bg);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.photo-lightbox.active .photo-lightbox-content {
    transform: scale(1);
}

.photo-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 600;
    z-index: 2005;
    pointer-events: none;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.photo-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.photo-lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.photo-lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.photo-lightbox-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-lightbox-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.photo-counter {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Packs Responsive */
@media (max-width: 1024px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .photo-lightbox-content {
        max-width: 90%;
        padding: 10px;
    }

    .photo-lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Loading Spinner */
.loader {
    text-align: center;
    padding: 20px;
    display: none;
}

.loader.show {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1,
    .hero-slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card-info {
        padding: 10px;
    }

    .video-info {
        padding: 10px;
    }

    .video-title {
        font-size: 0.85rem;
    }

    .video-duration,
    .video-price {
        font-size: 0.8rem;
    }

    .btn-select-video {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

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

    .nav-container>.theme-toggle {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--card-bg);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li a,
    .nav-links li .nav-dropdown-trigger {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-links .dropdown {
        position: relative;
    }

    .nav-links .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        margin: 0 0 10px 0;
        padding: 0;
        border: none;
        min-width: auto;
    }

    .nav-links .dropdown-content.show {
        display: block;
        animation: fadeIn 0.2s ease;
    }

    .nav-links .dropdown-content li {
        border-bottom: none;
    }

    .nav-links .dropdown-content li a {
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* --- 2. ANTIGUO MOBILE MENU BTN + OVERLAY (ELIMINADO - Ahora en mobile-hamburger.css) --- */

    .theme-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
        background: transparent;
        border: none;
        color: var(--text-color);
        font-size: 1rem;
        cursor: pointer;
        padding: 15px 0;
        width: 100%;
        transition: var(--transition);
    }

    .theme-toggle:hover {
        background: rgba(255, 59, 63, 0.1);
        color: var(--primary-color);
    }

    .hero {
        aspect-ratio: unset;
        height: auto;
        min-height: 600px;
        padding-top: 140px;
        padding-bottom: 80px;
        max-height: none;
    }

    .hero-content h1,
    .hero-slide-title {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cta-buttons .btn {
        width: auto;
        max-width: 100%;
        padding: 10px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .cta-buttons .btn i {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .navbar {
        height: 80px;
        padding-top: 10px;
    }

    .nav-container {
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-logo-img {
        height: 65px;
    }

    .video-lightbox-content {
        max-width: 95%;
        padding: 8px;
    }

    .video-lightbox-content video {
        max-height: 60vh;
    }

    .lightbox-close {
        top: -35px;
        font-size: 1.6rem;
    }

    .card-info {
        padding: 12px 15px;
    }

    .video-title {
        font-size: 0.95rem;
    }

    .video-duration,
    .video-price {
        font-size: 0.85rem;
    }

    .search-box input {
        padding: 12px 45px 12px 20px;
        font-size: 0.95rem;
    }

    .footer-logo-img {
        height: 60px;
    }

    .about-content {
        gap: 20px;
        padding: 20px 15px;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-carousel {
        width: 100%;
        max-width: 280px;
        aspect-ratio: 1/1;
        margin: 0 auto;
        order: 1;
    }

    .testimonial-card {
        padding: 20px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
}

/* === CONTENIDO PERSONALIZADO === */

.services-section {
    padding: 60px 0;
}

.social-card {
    text-align: center;
    padding: 30px;
}

.social-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.social-icon svg {
    width: 28px;
    height: 28px;
}

.social-icon.twitter {
    background: linear-gradient(135deg, #000000, #333333);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dc7);
}

.social-icon.onlyfans {
    background: linear-gradient(135deg, #00afea, #0088cc);
}

.social-icon.twitch {
    background: #9146ff;
}

/* Twitch Section */
.twitch-section {
    padding: 0;
}

.twitch-embed-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.twitch-embed-container iframe {
    border-radius: 20px;
}

.social-card .btn {
    margin-top: 15px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 59, 63, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.feature-card h4 {
    margin-bottom: 15px;
    color: var(--heading-color);
}

.feature-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Proceso de Compra */
.purchase-process-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    margin: 40px 0;
    border-radius: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--heading-color);
}

.process-step p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Payment Info */
.payment-info-section {
    padding: 60px 0;
}

.payment-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.payment-header i {
    font-size: 40px;
    color: #003087;
}

.payment-header h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
}

.payment-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    display: inline-block;
}

.payment-features li {
    padding: 10px 0;
    color: var(--text-color);
}

.payment-features li i {
    color: #2ecc71;
    margin-right: 10px;
}

.payment-note {
    background: rgba(255, 59, 63, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin-top: 25px;
    text-align: left;
    border-radius: 0 10px 10px 0;
    display: flex;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.payment-note i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h4 {
    margin-bottom: 10px;
    color: var(--heading-color);
}

.contact-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Custom Contact Form */
.custom-contact-form {
    max-width: 700px;
    margin: 40px auto 0;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--heading-color);
}

.form-group label i {
    color: var(--primary-color);
    width: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(233, 69, 136, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--secondary-color);
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.custom-contact-form .btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.custom-contact-form .btn i {
    margin-right: 10px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 0;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-form-wrapper .custom-contact-form {
    margin: 0;
    max-width: none;
}

/* Telegram Widget Card */
.telegram-widget-card {
    background: linear-gradient(135deg, #229ED9 0%, #1E88C7 100%);
    border-radius: 20px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(34, 158, 217, 0.3);
    text-align: center;
}

.telegram-widget-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.telegram-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.telegram-widget-title {
    display: flex;
    flex-direction: column;
}

.telegram-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

.telegram-name {
    font-size: 1.1rem;
    font-weight: 700;
}

.telegram-widget-body {
    margin-bottom: 20px;
}

.telegram-widget-body p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.telegram-subtitle {
    margin-top: 8px !important;
    font-size: 0.85rem !important;
    opacity: 0.8 !important;
}

.telegram-widget-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    color: #229ED9;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.telegram-widget-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* PayPal Email Box */
.paypal-email-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #003087, #0040aa);
    border-radius: 12px;
    padding: 20px 30px;
    margin: 25px 0;
    color: white;
}

.paypal-email-box i {
    font-size: 28px;
}

.paypal-email-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.paypal-email-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.paypal-email {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Bank Transfer Card */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.payment-method-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.payment-method-card.paypal {
    border-color: #003087;
}

.payment-method-card.bank {
    border-color: #2ecc71;
}

.payment-method-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.payment-method-card.paypal .payment-method-icon {
    color: #003087;
}

.payment-method-card.bank .payment-method-icon {
    color: #2ecc71;
}

.payment-method-card h4 {
    margin-bottom: 10px;
    color: var(--heading-color);
}

.payment-method-card p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.clabe-box {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid #2ecc71;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.clabe-box .clabe-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.clabe-box .clabe-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2ecc71;
    letter-spacing: 1px;
}

.copy-btn {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    margin: 15px 0;
}

.payment-method-card.paypal .copy-btn {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.copy-btn:hover {
    background: #27ae60;
}

.copy-btn.copied {
    background: #27ae60;
}

.bank-note {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* === ESTILO DE TARJETAS PARA PROCESO DE COMPRA === */
.purchase-process-section {
    padding: 0px 0;
    margin: 0px 0;
}

.purchase-process-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.purchase-process-section .section-header h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.purchase-process-section .section-header p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 0;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 59, 63, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(255, 59, 63, 0.3);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.process-step p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === ESTILO DE TARJETAS PARA REDES SOCIALES === */
.services-section {
    padding: 20px 0;
    margin-top: 40px;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-section .section-header h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.services-section .section-header p {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card.social-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card.social-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 59, 63, 0.2);
}

/* Shopping Cart & Filters Extras */
.cart-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(255, 59, 63, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}

.cart-floating-btn:hover {
    transform: scale(1.1);
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.cart-modal.active {
    display: flex;
    opacity: 1;
}

.cart-modal-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border-color);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.cart-modal.active .cart-modal-content {
    transform: translateY(0);
}

.cart-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary-color);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
    flex: 1;
    padding-right: 15px;
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.cart-item-remove {
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.cart-total {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    text-align: right;
    color: var(--heading-color);
}

.btn-select-video {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    font-weight: 600;
}

.btn-select-video:hover {
    background: var(--primary-color);
    color: white;
}

.btn-select-video.selected {
    background: var(--primary-color);
    color: white;
}

[data-theme="light"] .btn-select-video {
    color: var(--text-color);
    border-color: var(--primary-color);
}

[data-theme="light"] .btn-select-video:hover,
[data-theme="light"] .btn-select-video.selected {
    color: white;
}

.custom-select {
    padding: 10px 20px;
    border-radius: 50px;
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    font-family: var(--font-main);
    outline: none;
    cursor: pointer;
}

.quality-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Carousel Lightbox */
.carousel-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.carousel-lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.carousel-lightbox-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 50px rgba(255, 59, 63, 0.2);
}

#carousel-lightbox-media {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

#carousel-lightbox-media img,
#carousel-lightbox-media video,
#carousel-lightbox-media iframe {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: none;
}

.carousel-lightbox-info {
    padding: 30px;
    text-align: center;
}

.carousel-lightbox-info h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.carousel-lightbox-info p {
    color: var(--secondary-color);
}

.carousel-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.carousel-lightbox-close:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .carousel-lightbox-content {
        max-width: 100%;
    }

    .carousel-lightbox-info h3 {
        font-size: 1.2rem;
    }
}

/* Payment Mini Cards Style for Index */
.payment-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 30px auto 0;
}

.payment-mini-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-mini-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.payment-mini-icon {
    font-size: 24px;
    margin-bottom: 10px;
}

.payment-mini-card.paypal .payment-mini-icon {
    color: #003087;
}

.payment-mini-card.bank .payment-mini-icon {
    color: #2ecc71;
}

.payment-mini-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.payment-mini-card p {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.payment-data-box {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--text-color);
    word-break: break-all;
}

[data-theme="dark"] .payment-data-box {
    background: rgba(255, 255, 255, 0.05);
}

.copy-mini-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-mini-btn:hover {
    background: var(--primary-color);
    color: white;
}

.copy-mini-btn.copied {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

/* =========================================
   Global Animated Background
   ========================================= */
body {
    position: relative;
    background-color: #050510;
    background-image: radial-gradient(circle at top right, #1b0a3a 0%, #080214 50%, #000000 100%);
    background-attachment: fixed;
}

.bg-animations-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

#particles-js-global {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: rgba(255, 59, 63, 0.2);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: rgba(138, 43, 226, 0.15);
    bottom: -5%;
    right: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    background: rgba(255, 59, 63, 0.15);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(3vw, 2vh) scale(1.1);
    }

    100% {
        transform: translate(-2vw, 3vh) scale(0.9);
    }
}

/* Glassmorphism adjustments for cards to see the background */
.card,
.video-card,
.featured-card {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    background: rgba(15, 15, 15, 0.85);
}

[data-theme="light"] {
    --bg-color: #f2f5f7;
    /* Pearly neutral base */
}

[data-theme="light"] body {
    background-image:
        linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    background-attachment: fixed;
    background-size: cover;
}

/* Light theme vibrant blobs */
[data-theme="light"] .blob-1 {
    background: radial-gradient(circle, rgba(255, 165, 0, 0.4) 0%, rgba(255, 165, 0, 0) 70%);
}

[data-theme="light"] .blob-2 {
    background: radial-gradient(circle, rgba(255, 140, 0, 0.4) 0%, rgba(255, 140, 0, 0) 70%);
}

[data-theme="light"] .blob-3 {
    background: radial-gradient(circle, rgba(255, 120, 0, 0.35) 0%, rgba(255, 120, 0, 0) 70%);
}

/* Glassmorphism for cards in light mode */
[data-theme="light"] .card,
[data-theme="light"] .video-card,
[data-theme="light"] .featured-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

[data-theme="light"] .about-section {
    background: transparent;
    padding: 60px 20px;
}

[data-theme="light"] .about-content {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.85);
}

/* --- 3. BOTTOM SHEETS BASE STYLES (ELIMINADO - Ahora en mobile-hamburger.css) --- */
/* El menu hamburguesa para mobile ahora esta en mobile-hamburger.css */

@media (max-width: 768px) {

    /* Ocultar barra superior y menú hamburguesa anterior */
    .navbar {
        display: none !important;
    }

    body {
        padding-top: 0;
        /* El nuevo menu hamburguesa es un panel lateral, no necesita padding top */
    }

    /* Ajustes para la sección Sobre Mí en móvil */
    .about-section {
        padding: 30px 15px;
    }

    .about-content {
        padding: 20px 15px;
        gap: 15px;
        border-radius: 20px;
    }

    .about-text {
        order: 2;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .about-carousel {
        order: 1;
        width: 100%;
        max-width: 280px;
        aspect-ratio: 1/1;
        border-radius: 15px;
    }

    /* --- 3. ANTIGUO BOTTOM SHEETS (ELIMINADO - Ahora en mobile-hamburger.css) --- */
    /* El nuevo menu hamburguesa ahora esta en mobile-hamburger.css */
    /* El body padding-top ya no es necesario porque el nuevo menu es un panel lateral */

}

/* Glightbox - Estilos para páginas de video */
.glightbox-container {
    background: transparent !important;
}

.glightbox-backend {
    background: transparent !important;
}

.goverlay {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(5px);
}

.gslide-media {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    width: 100% !important;
    height: 100% !important;
}

.gvideo {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px !important;
}

.gvideo video,
.gvideo iframe {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.gslide-title,
.gslide-desc,
.gslide-description,
.gdesc-inner {
    display: none !important;
}

.gclose,
.gnext,
.gprev {
    position: absolute !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    opacity: 0.8 !important;
    z-index: 999999 !important;
}

.gnext,
.gprev {
    display: none !important;
}

.gclose {
    width: 50px !important;
    height: 50px !important;
    top: 20px !important;
    right: 20px !important;
}

.gnext,
.gprev {
    width: 60px !important;
    height: 60px !important;
}

.gclose:hover,
.gnext:hover,
.gprev:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
    background: #e63946 !important;
}

.plyr--full-ui input[type=range] {
    color: #e63946 !important;
}

.gbtn:focus {
    outline: 2px solid #e63946 !important;
    outline-offset: 2px !important;
}

/* Player page (player.html) */
.player-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.player-page body {
    background: #000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

.player-page .video-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-page video {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    outline: none;
    object-fit: contain;
}

.player-page video::-webkit-media-controls {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.player-page video::-webkit-media-controls-enclosure {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* ============================================================================
   VIP GLOBAL - Timer Flotante para todas las páginas
   ============================================================================ */

:root {
    --vip-primary: #00aaff;
    --vip-secondary: #0066ff;
    --vip-accent: #ff00aa;
    --vip-glow: rgba(0, 170, 255, 0.5);
}

body.light-mode {
    --vip-primary: #0066ff;
    --vip-secondary: #0044cc;
}

#vip-global-bar {
    position: fixed;
    top: 80px;
    left: 20px;
    display: none;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    padding: 10px 16px;
    border-radius: 15px;
    border: 2px solid var(--vip-primary);
    box-shadow: 0 0 20px var(--vip-glow);
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
    animation: vipSlideIn 0.3s ease;
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#vip-global-bar .vip-global-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--vip-primary);
    font-weight: 700;
    font-size: 1rem;
}

#vip-global-bar .vip-global-timer i {
    font-size: 0.9rem;
}

#vip-global-bar .vip-global-message {
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 400;
}

#vip-global-bar #vip-global-logout {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(145deg, #2e1a1a, #3e1616);
    border: 2px solid #ff4444;
    color: #ff4444;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

#vip-global-bar #vip-global-logout:hover {
    background: linear-gradient(145deg, #3e1616, #4e1a1a);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.4);
    transform: translateY(-2px);
}

/* Modal de Expiración VIP */
.vip-expiration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.vip-expiration-content {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    border: 2px solid #ff4444;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
    max-width: 400px;
    width: 90%;
}

.vip-expiration-content i {
    font-size: 4rem;
    color: #ff4444;
    margin-bottom: 20px;
}

.vip-expiration-content h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.vip-expiration-content p {
    color: #aaa;
    margin-bottom: 25px;
}

.vip-expiration-content button {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff4444, #cc0000);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.vip-expiration-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 68, 68, 0.4);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    #vip-global-bar {
        top: 70px;
        left: 10px;
        right: auto;
        flex-direction: row;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 10px;
        max-width: auto;
    }

    #vip-global-bar .vip-global-timer {
        font-size: 0.85rem;
        gap: 4px;
    }

    #vip-global-bar .vip-global-timer i {
        font-size: 0.75rem;
    }

    #vip-global-bar .vip-global-message {
        display: none;
    }

    #vip-global-bar #vip-global-logout {
        width: auto;
        justify-content: center;
        padding: 6px 10px;
        font-size: 0.75rem;
        border-radius: 8px;
    }

    .vip-expiration-content {
        padding: 30px 20px;
    }

    .vip-expiration-content h2 {
        font-size: 1.3rem;
    }

    .vip-expiration-content i {
        font-size: 3rem;
    }
}

/* Video Player Modal - Estilo GLightbox */
.video-player-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 999999 !important;
    justify-content: center;
    align-items: center;
}

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

.video-player-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    max-height: 80vh;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-player-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-player-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

#video-player-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    object-fit: contain;
    background: #000;
}

/* Animaciones del Modal */
@keyframes videoPlayerModalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes videoPlayerContentZoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes videoPlayerModalFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes videoPlayerContentZoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

.video-player-modal.active {
    display: flex;
    animation: videoPlayerModalFadeIn 0.3s ease forwards;
}

.video-player-modal.active .video-player-content {
    animation: videoPlayerContentZoomIn 0.4s ease forwards;
}

.video-player-modal.closing {
    animation: videoPlayerModalFadeOut 0.3s ease forwards;
}

.video-player-modal.closing .video-player-content {
    animation: videoPlayerContentZoomOut 0.3s ease forwards;
}

@media (max-width: 768px) {
    .video-player-content {
        width: 95%;
        height: 60vh;
        max-height: 60vh;
        border-radius: 12px;
    }

    .video-player-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        font-size: 20px;
    }

    .player-page video {
        max-height: 60vh;
    }
}

/* Blog post special elements (Alerts, CTAs, Tables) */
.blog-post-content .cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    margin: 10px 0;
    transition: all 0.3s;
}

.blog-post-content .cta-button:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 89, 59, 0.3);
}

.blog-post-content .alert-box {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid;
}

.blog-post-content .alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #93c5fd;
}

.blog-post-content .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #6ee7b7;
}

.blog-post-content .alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #fcd34d;
}

.blog-post-content .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #fca5a5;
}

.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-content table th,
.blog-post-content table td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    color: #ccc;
}

.blog-post-content table th {
    background: rgba(var(--primary-color-rgb, 255, 59, 63), 0.15);
    color: #fff;
    font-weight: 600;
}

.blog-post-content table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Blog post content images */
.blog-post-content {
    overflow: hidden;
    max-width: 100%;
}

.blog-post-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
}

.blog-post-content p {
    margin-bottom: 1em;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3 {
    color: #fff;
    margin: 1.5em 0 0.5em;
}

.blog-post-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-post-content ul,
.blog-post-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 8px 8px 0;
    color: #bbb;
    font-style: italic;
}

.blog-post-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blog-post-content iframe {
    max-width: 100%;
    border-radius: 8px;
    margin: 15px 0;
}

.blog-post-content video {
    display: block;
    max-width: 100%;
    margin: 20px auto;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .blog-post-content img {
        max-width: 100%;
    }
}

/* Back link for blog post - Eye-catching style */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 59, 63, 0.3);
    transition: all 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(255, 59, 63, 0.5);
}

.back-link i {
    font-size: 1rem;
}

.video-rating,
.pack-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 0.8rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.85rem;
    display: inline-flex;
    gap: 1px;
}

.rating-text {
    color: #999;
    font-size: 0.75rem;
}