/* ============================================
   LADY VIDEO CARD
   ============================================ */
.videos-section{
    flex-direction: column;
}
.lady-video-card {
    --lady-card-radius: 20px;
    --lady-accent: #d4a84b;
    --lady-bg: #1a1a1a;
    --lady-overlay: rgba(0, 0, 0, 0.3);
    max-width: 340px;
    width: 100%;
    padding: 10px;
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--black-240);
    border-radius: 24px;
}

.tabs-nav{
    padding: 0;
}
.lady-video-card__inner {
    border-radius: var(--lady-card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Thumb Container */
.lady-video-card__thumb {
    position: relative;
    aspect-ratio: 9 / 14;
    cursor: pointer;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.lady-video-card__thumb.is-playing .lady-video-card__video{
    filter: blur(0);
}
.lady-video-card__thumb.is-playing .lady-bage{
    display: flex;
}
/* Video */
.lady-video-card__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    object-fit: cover;
    filter: blur(10px);
}

/* Overlay */
.lady-video-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lady-overlay);
    border-radius: 14px;
    z-index: 2;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lady-video-card__thumb.is-playing .lady-video-card__overlay {
    opacity: 0;
}

/* Play Button */
.lady-video-card__play {
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    background: transparent;
    border: 0;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.3s ease;
}

.lady-video-card__play-icon {
    width: 32px;
    height: 32px;
    color: #000;
    margin-left: 4px;
}

.lady-video-card__thumb:hover .lady-video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(212, 168, 75, 0.4);
}

.lady-video-card__thumb.is-playing .lady-video-card__play {
    opacity: 0;
    pointer-events: none;
}

/* Pause icon when playing */
.lady-video-card__thumb.is-playing:hover .lady-video-card__play {
    opacity: 1;
}

.lady-video-card__thumb.is-playing .lady-video-card__play-icon {
    /* Pause icon */
}

.lady-video-card__play svg,
.lady-video-card__duration svg {
    color: #EFA75E;
}
.light-decor::before{
    border-radius: 50px !important;
}

.tab-btn.light-decor button{
    border: none;
    cursor: pointer;
    background: transparent;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    color: #EADF82;
    background: linear-gradient(90deg, #ffffff 0%, #d6d5cc 100%);
    background-clip: text;
}
.tab-btn.light-decor.active button{
    color: black;
    background: linear-gradient(90deg, #0a0a0a 0%, #171502 100%);
    background-clip: text;

}
.girls-list{
    display: none;
    margin: 40px 0;
}
.lady-bage{
    border-radius: 50px;
    position: absolute;
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    z-index: 4;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 0 10px 0 rgba(14, 14, 14, 0.781);
    bottom: 12px;
    background: #161402db;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: fit-content;
}
.lady-video-card__views {
    left: 12px;
}
.lady-video-card__duration {
    right: 12px;
}

/* Info Block */
.lady-video-card__info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    text-decoration: none;
    margin: 0 8px 8px;
    border-radius: 35px;
    box-shadow: inset 0 0 10px 0 rgba(234, 223, 130, 0.34);
    background: var(--white-100);
    transition: all 0.3s ease;
}

.lady-video-card__info:hover {
    background: linear-gradient(135deg, rgba(70, 70, 50, 0.9) 0%, rgba(50, 50, 35, 1) 100%);
    border-color: rgba(212, 168, 75, 0.4);
}

/* Avatar */
.lady-video-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.lady-video-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.lady-video-card__name {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Loading State */
.lady-video-card__thumb.is-loading .lady-video-card__play {
    animation: lady-pulse 1s ease-in-out infinite;
}

@keyframes lady-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(0.95); }
}

/* Grid */
.lady-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

@media (hover: none) {
    .lady-video-card__thumb.is-playing .lady-video-card__play {
        opacity: 0;
        pointer-events: none;
    }
    
    .lady-video-card__thumb.is-playing:hover .lady-video-card__play {
        opacity: 0;
        pointer-events: none;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .lady-video-card {
        max-width: 240px;
        min-width: 160px;
        width: 100%;
        flex: 1 1 25%;
    }
    .girls-list, .slider-wrapper {
        flex-wrap: wrap !important;
    }
}
@media (max-width: 480px) {
    .lady-video-card__thumb {
        aspect-ratio: 9 / 12;
    }
    .tabs-nav{
        margin: 10px 0 !important;
        flex-wrap: wrap;
    }
    
    .tab-btn{
        padding:10px !important;
        flex: 1 1 100%;
        justify-content: center;
        align-items: center;
    }
    .lady-video-card__inner{
        gap: 5px;
    }
    .girls-list{
        margin: 10px 0 !important;
    }
    .page-title{
        font-size: 32px !important;
        margin: 0 !important;
    }
    .lady-video-card__play {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }
    
    .lady-video-card__play-icon {
        width: 28px;
        height: 28px;
    }
    
    .lady-video-card__info {
        padding: 8px;
        margin: 0 10px;
    }
    
    .lady-video-card__avatar {
        width: 42px;
        height: 42px;
    }
    
    .lady-video-card__name {
        font-size: 14px;
    }
}