/**
 * PREMIUM CARD COMPONENT (Universal for Camgirls & Pornostars)
 */

.cam-card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0f172a;
    aspect-ratio: 3/4;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cam-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cam-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

.cam-card-inner {
    position: relative;
    height: 100%;
    width: 100%;
}

.cam-card-image {
    width: 100%;
    height: 100%;
}

.cam-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cam-card-premium:hover .cam-card-image img {
    transform: scale(1.1);
}

.cam-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 5;
}

.cam-rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    color: #fbbf24;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.cam-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 10;
    text-align: center;
}

.cam-card-title {
    color: white;
    font-size: 19px;
    font-weight: 900;
    margin: 0 0 4px;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.cam-card-meta {
    color: rgba(255,255,255,0.8);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px;
    display: flex;
    justify-content: center;
    gap: 6px;
    align-items: center;
}

.cam-card-meta .dot {
    opacity: 0.5;
}

.cam-card-btn {
    background: linear-gradient(90deg, #ff4d6d 0%, #ff758c 100%);
    color: white;
    padding: 10px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 77, 109, 0.2);
}

.cam-card-premium:hover .cam-card-btn {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4);
}

@media (max-width: 768px) {
    .cam-card-title {
        font-size: 15px;
    }
    .cam-rating-badge {
        font-size: 11px;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
        border-radius: 8px;
    }
    .cam-card-content {
        padding: 10px;
    }
    .cam-card-btn {
        font-size: 11px;
        padding: 8px;
        border-radius: 8px;
    }
}
