/* videos.css - Estilo Chaturbate con efecto blur */

/* ===== RESET AGGRESIVO ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

/* Remover todos los estilos por defecto de elementos HTML */
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block !important;
    unicode-bidi: isolate !important;
}

/* Remover estilos específicos de Bootstrap que interfieren */
body.bg-light,
body.bg-white,
body.bg-dark {
    background: var(--bg-dark) !important;
}
/* ===== VARIABLES ===== */
:root {
    --primary: #cc3366;
    --primary-light: #e63978;
    --bg-dark: #0a0a0a;
    --bg-content: #121212;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border: rgba(255, 255, 255, 0.15);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo img {
    max-height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(204, 51, 102, 0.3));
}

.back-btn {
    background: rgba(204, 51, 102, 0.2);
    border: 1px solid rgba(204, 51, 102, 0.4);
    color: var(--text);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: rgba(204, 51, 102, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204, 51, 102, 0.2);
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 50px 0;
    min-height: calc(100vh - 160px);
}

.section-title {
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 300;
}

/* ===== FILTROS ===== */
.filters-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    border-color: rgba(204, 51, 102, 0.5);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow),
                0 0 20px rgba(204, 51, 102, 0.3);
    transform: translateY(-3px);
}

/* ===== VIDEOS GRID ===== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* ===== VIDEO CARD ===== */
.video-card {
    background: rgba(24, 24, 24, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow),
                0 0 30px rgba(204, 51, 102, 0.2);
    border-color: rgba(204, 51, 102, 0.3);
}

/* Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.08);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(204, 51, 102, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    border: 2px solid white;
}

.play-button i {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Video Info */
.video-info {
    padding: 24px;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--text);
    min-height: 52px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.video-stats i {
    color: var(--primary);
    margin-right: 6px;
}

/* ===== FOOTER CON BANDA ROSA ===== */
.footer-massagecstasy {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(204, 51, 102, 0.3);
}

/* BANDA ROSA DESTACADA EN LA PARTE SUPERIOR */
.footer-massagecstasy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), #ff4d8d);
    box-shadow: 0 2px 10px rgba(204, 51, 102, 0.5);
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* LÍNEA DECORATIVA ROSA DEBAJO DE LOS TÍTULOS */
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

/* EFECTO HOVER CON COLOR ROSA */
.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
    color: var(--primary-light);
}

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

/* ICONOS SOCIALES CON EFECTO ROSA */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transform: translateY(-5px);
    border-color: var(--primary-light);
    color: white;
    box-shadow: 0 5px 15px rgba(204, 51, 102, 0.4);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(204, 51, 102, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.text-link {
    color: #00d4ff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-section {
    padding-bottom: 1rem;
}

.border-pink {
    border-color: rgba(204, 51, 102, 0.2) !important;
}

/* ===== UTILIDADES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ===== ANULACIÓN DE ESTILOS BOOTSTRAP ===== */
/* Anular clases de texto de Bootstrap */
.text-dark,
.text-black,
.text-muted {
    color: var(--text) !important;
}

.text-white {
    color: var(--text) !important;
}

/* Anular fondos de Bootstrap */
.bg-white,
.bg-light,
.bg-transparent {
    background: transparent !important;
}

/* Anular bordes de Bootstrap */
.border,
.border-top,
.border-bottom,
.border-start,
.border-end {
    border-color: var(--border) !important;
}

/* Anular márgenes/paddings que Bootstrap pueda forzar */
.m-0 {
    margin: 0 !important;
}
.p-0 {
    padding: 0 !important;
}

/* Anular display utilities que puedan interferir */
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}

/* ===== EFECTO DE BRILLO EN CARDS ===== */
.video-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .filters-container {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .footer-massagecstasy {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-title h1 {
        font-size: 1.8rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        width: calc(50% - 10px);
        justify-content: center;
    }
    
    .footer-massagecstasy {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-massagecstasy::before {
        height: 5px;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card {
    animation: fadeInUp 0.6s ease backwards;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }
.video-card:nth-child(6) { animation-delay: 0.6s; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-light), #ff4d8d);
}








