/**
 * Premium Discover Page Styles
 * Fixes: Card text visibility, gradient overlay, profile modal
 * 
 * @package DatingCore
 * @version 4.0
 */

/* ==========================================================================
   DISCOVER CONTAINER - Fixed Layout
   ========================================================================== */
.dc-discover-container {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
    padding: var(--dc-space-4);
    min-height: 650px; /* Ensure container has minimum height for cards + buttons */
}

/* Old profile modal - hidden (we use premium modal instead) */
.dc-modal.dc-profile-modal:not(.dc-premium-modal) {
    display: none !important;
}

/* ==========================================================================
   SKELETON LOADING STATE
   ========================================================================== */
.dc-loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 500px;
}

.dc-skeleton-card {
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: var(--dc-radius-xl);
    background: var(--dc-white);
    box-shadow: var(--dc-shadow-card);
    overflow: hidden;
    position: relative;
}

.dc-skeleton-image {
    height: 70%;
    background: linear-gradient(90deg, var(--dc-gray-100) 25%, var(--dc-gray-50) 50%, var(--dc-gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.dc-skeleton-info {
    padding: var(--dc-space-6);
}

.dc-skeleton-text {
    height: 20px;
    border-radius: var(--dc-radius-sm);
    background: linear-gradient(90deg, var(--dc-gray-100) 25%, var(--dc-gray-50) 50%, var(--dc-gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    margin-bottom: var(--dc-space-3);
}

.dc-skeleton-title {
    width: 60%;
    height: 28px;
}

.dc-skeleton-subtitle {
    width: 40%;
    height: 16px;
}

.dc-skeleton-tags {
    display: flex;
    gap: var(--dc-space-2);
    margin-top: var(--dc-space-4);
}

.dc-skeleton-tag {
    width: 60px;
    height: 28px;
    border-radius: var(--dc-radius-full);
    background: linear-gradient(90deg, var(--dc-gray-100) 25%, var(--dc-gray-50) 50%, var(--dc-gray-100) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.dc-loading-text {
    margin-top: var(--dc-space-6);
    color: var(--dc-gray-500);
    font-size: var(--dc-text-sm);
    animation: pulse 2s infinite;
}

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

/* Card Stack Container - Ensure proper containment */
.dc-card-stack {
    position: relative;
    width: 100%; /* Explicit width required for absolute children */
    max-width: 400px; /* Card max width */
    height: 550px; /* Fixed height to contain absolute cards */
    min-height: 500px;
    max-height: 600px;
    margin: 0 auto;
    overflow: visible; /* Allow stacked cards to show */
}

/* ==========================================================================
   PROFILE CARD - Premium Design
   ========================================================================== */
.dc-profile-card {
    position: absolute;
    inset: 0;
    border-radius: var(--dc-radius-xl);
    overflow: hidden;
    background: var(--dc-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    cursor: grab;
    user-select: none;
    touch-action: none;
    will-change: transform;
    transition: box-shadow 0.3s ease;
    /* Ensure all children are contained */
    display: flex;
    flex-direction: column;
}

.dc-profile-card * {
    /* Prevent any element from escaping the card */
    max-width: 100%;
}

.dc-profile-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.dc-profile-card:active {
    cursor: grabbing;
}

/* Stacked cards effect */
.dc-profile-card:nth-child(2) {
    transform: scale(0.96) translateY(10px);
    filter: brightness(0.98);
    z-index: -1;
}

.dc-profile-card:nth-child(3) {
    transform: scale(0.92) translateY(20px);
    filter: brightness(0.95);
    z-index: -2;
}

.dc-profile-card:nth-child(n+4) {
    opacity: 0;
    pointer-events: none;
}

/* Card Image Container */
.dc-card-image-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.dc-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-color: var(--dc-gray-200);
    transition: transform 0.3s ease;
}

.dc-profile-card:hover .dc-card-image {
    transform: scale(1.02);
}

/* CRITICAL FIX: Stronger gradient overlay for text readability */
.dc-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 25%,
        rgba(0, 0, 0, 0.3) 45%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 75%
    );
    pointer-events: none;
}

/* Photo Navigation Dots */
.dc-photo-indicators {
    position: absolute;
    top: var(--dc-space-4);
    left: var(--dc-space-4);
    right: var(--dc-space-4);
    display: flex;
    gap: 4px;
    z-index: 5;
}

.dc-photo-dot {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.4);
    transition: background 0.2s ease;
    cursor: pointer;
}

.dc-photo-dot.active {
    background: var(--dc-white);
}

.dc-photo-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Likes You Badge */
.dc-liked-badge {
    position: absolute;
    top: var(--dc-space-12);
    left: var(--dc-space-4);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--dc-gold) 0%, #FFA500 100%);
    color: var(--dc-gray-900);
    border-radius: var(--dc-radius-full);
    font-size: var(--dc-text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    z-index: 5;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Card Info - Fixed positioning and text visibility */
.dc-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--dc-space-6);
    padding-top: var(--dc-space-12);
    color: var(--dc-white);
    z-index: 3;
    /* Text shadow for extra readability */
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.dc-card-name {
    margin: 0;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--dc-space-2);
    line-height: 1.2;
}

.dc-card-age {
    font-weight: 400;
    opacity: 0.95;
}

.dc-verified-badge {
    width: 22px;
    height: 22px;
    background: var(--dc-info);
    border-radius: var(--dc-radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dc-verified-badge svg {
    width: 14px;
    height: 14px;
}

.dc-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--dc-space-2);
    font-size: var(--dc-text-sm);
    opacity: 0.9;
}

.dc-card-bio {
    margin: var(--dc-space-3) 0 0 0;
    font-size: var(--dc-text-sm);
    opacity: 0.9;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Interest Tags - Inside card with proper styling */
.dc-card-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--dc-space-4);
}

.dc-interest-tag {
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--dc-radius-full);
    font-size: var(--dc-text-xs);
    font-weight: 600;
    color: var(--dc-white);
    text-shadow: none;
}

/* View Profile Button - Premium Style */
.dc-card-expand {
    position: absolute;
    bottom: var(--dc-space-4);
    right: var(--dc-space-4);
    width: 48px;
    height: 48px;
    border-radius: var(--dc-radius-full);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--dc-primary, #FD297B);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.dc-card-expand svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.dc-card-expand:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.dc-card-expand:hover svg {
    transform: scale(1.1);
}

.dc-card-expand:active {
    transform: scale(0.95);
}

/* Tooltip for expand button */
.dc-card-expand::after {
    content: 'View Profile';
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    padding: 6px 12px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: all 0.2s ease;
}

.dc-card-expand:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hide legacy card-details (should be inside card-info now) */
.dc-card-details {
    display: none !important;
}

/* Legacy card-image (without container) - ensure full height */
.dc-profile-card > .dc-card-image {
    position: absolute;
    inset: 0;
}

.dc-profile-card > .dc-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 25%,
        rgba(0, 0, 0, 0.3) 45%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 75%
    );
    pointer-events: none;
}

/* Swipe Indicators - Better visibility */
.dc-swipe-indicator {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    padding: 12px 20px;
    border: 4px solid;
    border-radius: var(--dc-radius-lg);
    font-size: var(--dc-text-xl);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    z-index: 10;
    background: rgba(255,255,255,0.95);
}

.dc-swipe-like {
    right: 20px;
    border-color: var(--dc-like);
    color: var(--dc-like);
    transform: translateY(-50%) rotate(-15deg);
}

.dc-swipe-nope {
    left: 20px;
    border-color: var(--dc-nope);
    color: var(--dc-nope);
    transform: translateY(-50%) rotate(15deg);
}

.dc-swipe-super {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--dc-superlike);
    color: var(--dc-superlike);
}

/* ==========================================================================
   ACTION BUTTONS - Premium Styling
   ========================================================================== */
.dc-action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--dc-space-4);
    padding: var(--dc-space-6) 0;
    margin-top: var(--dc-space-4);
}

.dc-action-btn {
    border-radius: var(--dc-radius-full);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--dc-ease-bounce);
    position: relative;
    overflow: hidden;
}

.dc-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dc-action-btn:hover::before {
    opacity: 1;
}

.dc-action-btn:hover {
    transform: scale(1.12);
}

.dc-action-btn:active {
    transform: scale(0.95);
}

.dc-action-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.dc-action-btn-sm {
    width: 48px;
    height: 48px;
    background: var(--dc-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    color: var(--dc-gray-500);
}

.dc-action-btn-lg {
    width: 64px;
    height: 64px;
}

.dc-skip-btn {
    background: var(--dc-white);
    box-shadow: 0 4px 20px rgba(255, 68, 88, 0.2);
    color: var(--dc-nope);
}

.dc-skip-btn:hover {
    box-shadow: 0 8px 30px rgba(255, 68, 88, 0.35);
}

.dc-super-like-btn {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #00D4FF 0%, #0099FF 100%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    color: var(--dc-white);
}

.dc-super-like-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.dc-like-btn {
    background: linear-gradient(135deg, var(--dc-like) 0%, #00B85B 100%);
    box-shadow: 0 4px 20px rgba(0, 212, 106, 0.4);
    color: var(--dc-white);
}

.dc-like-btn:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 106, 0.5);
}

.dc-boost-btn {
    background: linear-gradient(135deg, var(--dc-boost) 0%, #8B5CF6 100%);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    color: var(--dc-white);
}

.dc-boost-btn:hover {
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
}

.dc-rewind-btn {
    color: var(--dc-accent);
}

/* ==========================================================================
   EMPTY & ERROR STATES
   ========================================================================== */
.dc-empty-state,
.dc-error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--dc-space-12) var(--dc-space-6);
    min-height: 400px;
}

.dc-empty-illustration,
.dc-error-illustration {
    margin-bottom: var(--dc-space-6);
    opacity: 0.6;
}

.dc-empty-state h3,
.dc-error-state h3 {
    margin: 0 0 var(--dc-space-3) 0;
    font-size: var(--dc-text-xl);
    font-weight: 700;
    color: var(--dc-gray-800);
}

.dc-empty-state p,
.dc-error-state p {
    margin: 0 0 var(--dc-space-6) 0;
    color: var(--dc-gray-500);
    max-width: 300px;
}

.dc-empty-actions {
    display: flex;
    gap: var(--dc-space-3);
}

/* ==========================================================================
   FILTERS PANEL - Premium Design
   ========================================================================== */
.dc-filters-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: var(--dc-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    padding: var(--dc-space-6);
    z-index: 100;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s var(--dc-ease-out);
}

.dc-filters-panel.active {
    transform: translateX(0);
}

.dc-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--dc-space-6);
    padding-bottom: var(--dc-space-4);
    border-bottom: 1px solid var(--dc-gray-100);
}

.dc-filters-header h3 {
    margin: 0;
    font-size: var(--dc-text-lg);
    font-weight: 700;
}

.dc-filters-close {
    width: 36px;
    height: 36px;
    border-radius: var(--dc-radius-full);
    border: none;
    background: var(--dc-gray-100);
    color: var(--dc-gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dc-filters-close:hover {
    background: var(--dc-gray-200);
}

.dc-filter-group {
    margin-bottom: var(--dc-space-6);
}

.dc-filter-group .dc-form-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--dc-space-3);
    font-weight: 600;
    color: var(--dc-gray-700);
}

.dc-filter-value {
    font-weight: 500;
    color: var(--dc-primary);
}

.dc-range-inputs {
    display: flex;
    align-items: center;
    gap: var(--dc-space-3);
}

.dc-range-inputs .dc-form-input {
    width: 80px;
    text-align: center;
}

.dc-range-separator {
    color: var(--dc-gray-400);
}

.dc-range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--dc-gray-200);
    outline: none;
    -webkit-appearance: none;
}

.dc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--dc-gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(253, 41, 123, 0.4);
    transition: transform 0.2s ease;
}

.dc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.dc-filter-buttons {
    display: flex;
    gap: var(--dc-space-2);
}

.dc-filter-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--dc-gray-200);
    border-radius: var(--dc-radius-md);
    background: var(--dc-white);
    color: var(--dc-gray-600);
    font-weight: 600;
    font-size: var(--dc-text-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dc-filter-btn:hover {
    border-color: var(--dc-primary-light);
    color: var(--dc-primary);
}

.dc-filter-btn.active {
    border-color: var(--dc-primary);
    background: rgba(253, 41, 123, 0.1);
    color: var(--dc-primary);
}

/* ==========================================================================
   MODALS - Premium Design
   ========================================================================== */
.dc-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--dc-space-4);
}

.dc-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dc-modal-content {
    position: relative;
    background: var(--dc-white);
    border-radius: var(--dc-radius-2xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s var(--dc-ease-out);
    max-height: 90vh;
    overflow-y: auto;
}

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

.dc-modal-close {
    position: absolute;
    top: var(--dc-space-4);
    right: var(--dc-space-4);
    width: 40px;
    height: 40px;
    border-radius: var(--dc-radius-full);
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: var(--dc-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.dc-modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* Match Modal */
.dc-match-content {
    width: 400px;
    max-width: 100%;
    padding: var(--dc-space-10) var(--dc-space-8);
    text-align: center;
    background: linear-gradient(180deg, #FFF5F8 0%, var(--dc-white) 100%);
}

.dc-match-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Add confetti animation here */
}

.dc-match-title {
    font-family: var(--dc-font-display);
    font-size: var(--dc-text-4xl);
    color: var(--dc-primary);
    margin: 0 0 var(--dc-space-2) 0;
    animation: matchPop 0.5s var(--dc-ease-bounce);
}

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

.dc-match-subtitle {
    color: var(--dc-gray-600);
    margin: 0 0 var(--dc-space-8) 0;
}

.dc-match-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--dc-space-4);
    margin-bottom: var(--dc-space-8);
}

.dc-match-photo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: var(--dc-radius-full);
    overflow: hidden;
    border: 4px solid var(--dc-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    animation: photoSlide 0.6s var(--dc-ease-out) backwards;
}

.dc-match-photo-wrapper:first-child {
    animation-delay: 0.1s;
}

.dc-match-photo-wrapper:last-child {
    animation-delay: 0.2s;
}

@keyframes photoSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.dc-match-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-match-heart {
    animation: heartBeat 1s infinite;
}

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

.dc-match-actions {
    display: flex;
    flex-direction: column;
    gap: var(--dc-space-3);
}

/* ==========================================================================
   FULL PROFILE MODAL
   ========================================================================== */
.dc-profile-view {
    width: 500px;
    max-width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dc-profile-gallery {
    position: relative;
    height: 400px;
    background: var(--dc-gray-100);
}

.dc-gallery-main {
    position: relative;
    height: 100%;
}

.dc-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--dc-space-3);
    pointer-events: none;
}

.dc-gallery-prev,
.dc-gallery-next {
    width: 44px;
    height: 44px;
    border-radius: var(--dc-radius-full);
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dc-gray-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dc-gallery-prev:hover,
.dc-gallery-next:hover {
    background: var(--dc-white);
    transform: scale(1.1);
}

.dc-gallery-dots {
    position: absolute;
    bottom: var(--dc-space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

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

.dc-gallery-dot.active {
    background: var(--dc-white);
    transform: scale(1.2);
}

.dc-gallery-thumbnails {
    display: flex;
    gap: 8px;
    padding: var(--dc-space-3);
    overflow-x: auto;
    scrollbar-width: none;
}

.dc-gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

.dc-gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--dc-radius-sm);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.dc-gallery-thumb.active {
    border-color: var(--dc-primary);
}

.dc-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Info */
.dc-profile-info-full {
    padding: var(--dc-space-6);
    overflow-y: auto;
    flex: 1;
}

.dc-profile-header-info {
    margin-bottom: var(--dc-space-6);
}

.dc-profile-name {
    margin: 0 0 var(--dc-space-2) 0;
    font-size: var(--dc-text-2xl);
    font-weight: 700;
}

.dc-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--dc-space-3);
    color: var(--dc-gray-500);
    font-size: var(--dc-text-sm);
}

.dc-profile-location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dc-profile-section {
    margin-bottom: var(--dc-space-6);
}

.dc-profile-section h4 {
    margin: 0 0 var(--dc-space-3) 0;
    font-size: var(--dc-text-sm);
    font-weight: 600;
    color: var(--dc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dc-profile-bio {
    margin: 0;
    color: var(--dc-gray-700);
    line-height: 1.6;
}

.dc-profile-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dc-profile-interests .dc-interest-tag {
    padding: 8px 16px;
    background: var(--dc-gray-100);
    border: none;
    color: var(--dc-gray-700);
    font-size: var(--dc-text-sm);
}

.dc-profile-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--dc-space-4);
}

.dc-detail-item {
    display: flex;
    align-items: center;
    gap: var(--dc-space-3);
    padding: var(--dc-space-3);
    background: var(--dc-gray-50);
    border-radius: var(--dc-radius-md);
}

.dc-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--dc-radius-sm);
    background: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dc-gray-400);
}

.dc-detail-text {
    flex: 1;
}

.dc-detail-label {
    font-size: var(--dc-text-xs);
    color: var(--dc-gray-400);
}

.dc-detail-value {
    font-weight: 600;
    color: var(--dc-gray-800);
}

/* Profile Actions */
.dc-profile-actions {
    display: flex;
    justify-content: center;
    gap: var(--dc-space-4);
    padding: var(--dc-space-6);
    border-top: 1px solid var(--dc-gray-100);
    background: var(--dc-white);
}

.dc-profile-actions .dc-action-btn {
    width: 56px;
    height: 56px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
    .dc-card-stack {
        height: 65vh;
        min-height: 400px;
    }
    
    .dc-card-name {
        font-size: 1.5rem;
    }
    
    .dc-card-bio {
        -webkit-line-clamp: 1;
    }
    
    .dc-card-interests {
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .dc-action-buttons {
        gap: var(--dc-space-3);
    }
    
    .dc-action-btn-lg {
        width: 56px;
        height: 56px;
    }
    
    .dc-filters-panel {
        width: 100%;
    }
    
    .dc-profile-view {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .dc-profile-gallery {
        height: 50vh;
    }
    
    .dc-match-content {
        width: 100%;
        padding: var(--dc-space-8) var(--dc-space-6);
    }
    
    .dc-match-photo-wrapper {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .dc-card-stack {
        height: 55vh;
    }
    
    .dc-action-btn-sm {
        width: 40px;
        height: 40px;
    }
    
    .dc-action-btn-lg {
        width: 50px;
        height: 50px;
    }
    
    .dc-super-like-btn {
        width: 44px;
        height: 44px;
    }
}

/* ==========================================================================
   PREMIUM PROFILE MODAL - Two Column Layout (Modern & Professional)
   ========================================================================== */
.dc-premium-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.dc-premium-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.dc-premium-modal-backdrop {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.92) 0%, rgba(40, 20, 50, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.dc-premium-modal-container {
    position: relative;
    width: 95%;
    max-width: 1050px;
    max-height: 88vh;
    margin-top: 40px; /* Push down from top to show header */
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 28px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 30px 100px rgba(0, 0, 0, 0.4),
        0 10px 40px rgba(253, 41, 123, 0.1);
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dc-premium-modal.is-open .dc-premium-modal-container {
    transform: scale(1) translateY(0);
}

/* Close Button - Premium Floating Style */
.dc-premium-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dc-premium-modal-close:hover {
    background: linear-gradient(145deg, #fff0f3 0%, #ffe0e6 100%);
    transform: scale(1.08) rotate(90deg);
    box-shadow: 
        0 8px 30px rgba(253, 41, 123, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.dc-premium-modal-close:active {
    transform: scale(0.95) rotate(90deg);
}

.dc-premium-modal-close svg {
    width: 22px;
    height: 22px;
    color: #666;
    transition: color 0.3s ease;
}

.dc-premium-modal-close:hover svg {
    color: var(--dc-primary, #FD297B);
}

/* Two Column Content */
.dc-premium-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 80vh;
    max-height: 700px;
    min-height: 550px;
}

/* Left Column - Image Gallery */
.dc-premium-modal-left {
    display: flex;
    flex-direction: column;
    background: #000;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.dc-premium-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; /* Allow flex shrinking */
}

.dc-premium-gallery-main {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 0; /* Allow flex shrinking */
}

.dc-premium-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.dc-premium-gallery-main:hover img {
    transform: scale(1.02);
}

/* Smooth image fade on photo change */
.dc-premium-gallery-main img.loading {
    opacity: 0.6;
}

/* Gallery Navigation Arrows - Premium Design */
.dc-premium-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: none;
    border-radius: 18px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.dc-premium-gallery:hover .dc-premium-gallery-nav {
    opacity: 1;
}

.dc-premium-gallery-nav:hover {
    background: linear-gradient(145deg, #ffffff, #fff0f3);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 
        0 12px 35px rgba(253, 41, 123, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dc-premium-gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.dc-premium-gallery-prev {
    left: 20px;
}

.dc-premium-gallery-next {
    right: 20px;
}

.dc-premium-gallery-nav svg {
    color: #333;
    transition: color 0.3s ease;
}

.dc-premium-gallery-nav:hover svg {
    /* PROFESSIONAL: Neutral dark gray on hover */
    color: #2D3748;
}

/* Gallery Dots - Modern Pill Style */
.dc-premium-gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    z-index: 10;
}

.dc-premium-gallery-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dc-premium-gallery-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dc-premium-gallery-dot.active {
    width: 28px;
    /* PROFESSIONAL: Soft purple gradient instead of pink */
    background: linear-gradient(90deg, #6B46C1, #805AD5);
    box-shadow: 0 0 12px rgba(107, 70, 193, 0.4);
}

/* Photo Counter - Premium Badge */
.dc-premium-gallery-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 18px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(10px);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 14px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Thumbnail Strip - Premium Design */
.dc-premium-gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dc-premium-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.dc-premium-gallery-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid transparent;
    position: relative;
}

.dc-premium-gallery-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.dc-premium-gallery-thumb:hover {
    opacity: 0.85;
    transform: scale(1.08);
}

.dc-premium-gallery-thumb:hover::after {
    opacity: 0;
}

.dc-premium-gallery-thumb.active {
    opacity: 1;
    /* PROFESSIONAL: Purple accent instead of pink */
    border-color: #6B46C1;
    transform: scale(1.05);
    box-shadow: 
        0 0 0 3px rgba(107, 70, 193, 0.3),
        0 4px 15px rgba(107, 70, 193, 0.4);
}

.dc-premium-gallery-thumb.active::after {
    opacity: 0;
}

.dc-premium-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal Actions at bottom of left column - Tinder Premium Style */
.dc-premium-modal-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 20px 24px 24px !important;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(0, 0, 0, 0.85) 40%,
        rgba(0, 0, 0, 0.5) 80%,
        transparent 100%) !important;
    position: relative !important;
}

/* No decorative glow - cleaner Tinder style */
.dc-premium-modal-actions::before {
    display: none !important;
}

/* Base button - CIRCULAR like Tinder */
.dc-premium-modal-actions .dc-premium-action-btn,
button.dc-premium-action-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    background: transparent !important;
}

/* Outer glow ring animation on hover */
.dc-premium-modal-actions .dc-premium-action-btn::before,
button.dc-premium-action-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: calc(100% + 8px) !important;
    height: calc(100% + 8px) !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important;
}

.dc-premium-modal-actions .dc-premium-action-btn:hover::before,
button.dc-premium-action-btn:hover::before {
    opacity: 1 !important;
}

.dc-premium-modal-actions .dc-premium-action-btn:hover,
button.dc-premium-action-btn:hover {
    transform: scale(1.15) !important;
}

.dc-premium-modal-actions .dc-premium-action-btn:active,
button.dc-premium-action-btn:active {
    transform: scale(0.95) !important;
    transition: transform 0.1s ease !important;
}

/* === SKIP/PASS BUTTON (X) - Red outline style like Tinder === */
.dc-premium-modal-actions .dc-premium-action-skip,
button.dc-premium-action-skip,
#dc-profile-skip {
    width: 60px !important;
    height: 60px !important;
    background: transparent !important;
    border: 3px solid #ff6b6b !important;
    border-radius: 50% !important;
    box-shadow: 
        0 4px 15px rgba(255, 107, 107, 0.25),
        inset 0 0 0 0 rgba(255, 107, 107, 0) !important;
}

.dc-premium-modal-actions .dc-premium-action-skip::before,
button.dc-premium-action-skip::before,
#dc-profile-skip::before {
    background: rgba(255, 107, 107, 0.15) !important;
}

.dc-premium-modal-actions .dc-premium-action-skip:hover,
button.dc-premium-action-skip:hover,
#dc-profile-skip:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    border-color: #ff5252 !important;
    box-shadow: 
        0 8px 25px rgba(255, 107, 107, 0.35),
        0 0 20px rgba(255, 107, 107, 0.2) !important;
}

.dc-premium-modal-actions .dc-premium-action-skip svg,
button.dc-premium-action-skip svg,
#dc-profile-skip svg {
    stroke: #ff6b6b !important;
    fill: none !important;
    width: 26px !important;
    height: 26px !important;
    stroke-width: 3 !important;
    transition: all 0.25s ease !important;
}

.dc-premium-modal-actions .dc-premium-action-skip:hover svg,
button.dc-premium-action-skip:hover svg,
#dc-profile-skip:hover svg {
    stroke: #ff5252 !important;
    transform: rotate(90deg) !important;
}

/* === SUPER LIKE BUTTON (Star) - Blue filled style === */
.dc-premium-modal-actions .dc-premium-action-super,
button.dc-premium-action-super,
#dc-profile-super-like {
    width: 50px !important;
    height: 50px !important;
    background: transparent !important;
    border: 3px solid #3b82f6 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.25) !important;
}

.dc-premium-modal-actions .dc-premium-action-super::before,
button.dc-premium-action-super::before,
#dc-profile-super-like::before {
    background: rgba(59, 130, 246, 0.15) !important;
}

.dc-premium-modal-actions .dc-premium-action-super:hover,
button.dc-premium-action-super:hover,
#dc-profile-super-like:hover {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    box-shadow: 
        0 8px 25px rgba(59, 130, 246, 0.45),
        0 0 25px rgba(59, 130, 246, 0.3) !important;
}

.dc-premium-modal-actions .dc-premium-action-super svg,
button.dc-premium-action-super svg,
#dc-profile-super-like svg {
    fill: #3b82f6 !important;
    width: 22px !important;
    height: 22px !important;
    transition: all 0.25s ease !important;
}

.dc-premium-modal-actions .dc-premium-action-super:hover svg,
button.dc-premium-action-super:hover svg,
#dc-profile-super-like:hover svg {
    fill: #ffffff !important;
    transform: scale(1.1) !important;
}

/* === LIKE BUTTON (Heart) - Green/Teal filled style like Tinder === */
.dc-premium-modal-actions .dc-premium-action-like,
button.dc-premium-action-like,
#dc-profile-like {
    width: 60px !important;
    height: 60px !important;
    background: transparent !important;
    border: 3px solid #10b981 !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25) !important;
    animation: btn-pulse 2s ease-in-out infinite !important;
}

.dc-premium-modal-actions .dc-premium-action-like::before,
button.dc-premium-action-like::before,
#dc-profile-like::before {
    background: rgba(16, 185, 129, 0.15) !important;
}

.dc-premium-modal-actions .dc-premium-action-like:hover,
button.dc-premium-action-like:hover,
#dc-profile-like:hover {
    background: #10b981 !important;
    border-color: #10b981 !important;
    box-shadow: 
        0 8px 25px rgba(16, 185, 129, 0.45),
        0 0 25px rgba(16, 185, 129, 0.3) !important;
    animation: none !important;
}

.dc-premium-modal-actions .dc-premium-action-like svg,
button.dc-premium-action-like svg,
#dc-profile-like svg {
    fill: #10b981 !important;
    width: 28px !important;
    height: 28px !important;
    transition: all 0.25s ease !important;
}

.dc-premium-modal-actions .dc-premium-action-like:hover svg,
button.dc-premium-action-like:hover svg,
#dc-profile-like:hover svg {
    fill: #ffffff !important;
    transform: scale(1.1) !important;
}

/* Pulse animation for like button */
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25); }
    50% { box-shadow: 0 4px 25px rgba(16, 185, 129, 0.4); }
}

/* Right Column - Profile Info (Premium Design) */
.dc-premium-modal-right {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    overflow: hidden;
    position: relative;
    height: 100%;
}

/* Decorative gradient accent - PROFESSIONAL */
.dc-premium-modal-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    /* PROFESSIONAL: Soft purple gradient instead of pink */
    background: linear-gradient(90deg, #6B46C1 0%, #805AD5 50%, #6B46C1 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
    z-index: 10;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.dc-premium-profile-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 32px 28px;
    padding-top: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(253, 41, 123, 0.3) transparent;
    min-height: 0; /* Allow flex shrinking */
}

.dc-premium-profile-scroll::-webkit-scrollbar {
    width: 8px;
}

.dc-premium-profile-scroll::-webkit-scrollbar-track {
    background: transparent;
    margin: 12px 0;
}

.dc-premium-profile-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(253, 41, 123, 0.4), rgba(255, 101, 91, 0.4));
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.dc-premium-profile-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(253, 41, 123, 0.6), rgba(255, 101, 91, 0.6));
}

/* Profile Header - Modern Typography */
.dc-premium-profile-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.dc-premium-profile-name {
    margin: 0 0 14px 0;
    padding-right: 50px; /* Space for close button */
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.dc-premium-profile-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.dc-premium-profile-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #fff5f7 0%, #fff0f3 100%);
    border-radius: 25px;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(253, 41, 123, 0.12);
    transition: all 0.3s ease;
}

.dc-premium-profile-location:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(253, 41, 123, 0.12);
}

.dc-premium-profile-location svg {
    width: 14px;
    height: 14px;
    /* PROFESSIONAL: Neutral purple/indigo instead of pink */
    color: #6B46C1;
    flex-shrink: 0;
}

.dc-premium-profile-distance {
    color: #888;
    font-size: 12px;
    font-weight: 500;
}

.dc-premium-profile-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 25px;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.dc-premium-status-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    animation: pulse-status 2s ease-in-out infinite;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.25);
}

@keyframes pulse-status {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.dc-premium-status-text {
    color: #15803d;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Profile Sections - Compact Modern Card Style */
.dc-premium-profile-section {
    margin-bottom: 16px;
    padding: 18px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.02),
        0 1px 2px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.dc-premium-profile-section:hover {
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.05),
        0 2px 6px rgba(0, 0, 0, 0.02);
}

.dc-premium-profile-section:last-child {
    margin-bottom: 0;
}

.dc-premium-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.dc-premium-section-title svg {
    width: 18px;
    height: 18px;
    padding: 5px;
    /* PROFESSIONAL: Soft gradient (gray to purple) */
    background: linear-gradient(135deg, #4A5568 0%, #6B46C1 100%);
    border-radius: 8px;
    color: #ffffff;
    box-sizing: content-box;
}

.dc-premium-profile-bio {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    font-weight: 400;
}

/* Interests - Compact Premium Pills */
.dc-premium-profile-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dc-premium-profile-interests .dc-interest-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #fff5f7 0%, #fff0f3 100%);
    color: #be185d;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    border-radius: 25px;
    border: 1px solid rgba(253, 41, 123, 0.12);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
}

.dc-premium-profile-interests .dc-interest-tag:hover {
    background: linear-gradient(135deg, #ffe4ec 0%, #ffd6e0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 41, 123, 0.15);
}

/* Profile Details Grid - Compact Modern Cards */
.dc-premium-profile-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dc-premium-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.dc-premium-detail-item:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dc-premium-detail-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 10px;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

.dc-premium-detail-icon svg {
    width: 16px;
    height: 16px;
    /* PROFESSIONAL: Neutral indigo/purple instead of pink */
    color: #6B46C1;
}

.dc-premium-detail-content {
    flex: 1;
    min-width: 0;
}

.dc-premium-detail-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.dc-premium-detail-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
}

/* Looking For Section - Premium Style */
.dc-premium-profile-looking-for {
    margin: 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
    border-radius: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #854d0e;
    line-height: 1.7;
    border: 1px solid rgba(234, 179, 8, 0.2);
    position: relative;
    overflow: hidden;
}

.dc-premium-profile-looking-for::before {
    content: '💭';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 60px;
    opacity: 0.15;
}

/* Mobile Responsive - Stack columns vertically */
@media (max-width: 768px) {
    .dc-premium-modal-container {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
    }
    
    .dc-premium-modal-content {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh auto;
        min-height: 100vh;
        max-height: 100vh;
    }
    
    .dc-premium-modal-left {
        max-height: 50vh;
    }
    
    .dc-premium-gallery-main {
        min-height: unset;
        height: 100%;
    }
    
    .dc-premium-modal-right {
        max-height: 50vh;
    }
    
    .dc-premium-profile-scroll {
        padding: 24px 20px;
    }
    
    .dc-premium-profile-name {
        font-size: 26px;
    }
    
    .dc-premium-profile-details {
        grid-template-columns: 1fr;
    }
    
    .dc-premium-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
    
    .dc-premium-modal-actions .dc-premium-action-skip,
    .dc-premium-modal-actions .dc-premium-action-like,
    #dc-profile-skip,
    #dc-profile-like {
        width: 52px !important;
        height: 52px !important;
    }
    
    .dc-premium-modal-actions .dc-premium-action-super,
    #dc-profile-super-like {
        width: 44px !important;
        height: 44px !important;
    }
    
    .dc-premium-modal-actions .dc-premium-action-skip svg,
    .dc-premium-modal-actions .dc-premium-action-like svg,
    #dc-profile-skip svg,
    #dc-profile-like svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .dc-premium-modal-actions .dc-premium-action-super svg,
    #dc-profile-super-like svg {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 480px) {
    .dc-premium-modal-content {
        grid-template-rows: 45vh auto;
    }
    
    .dc-premium-modal-left {
        max-height: 45vh;
    }
    
    .dc-premium-modal-right {
        max-height: 55vh;
    }
    
    .dc-premium-profile-scroll {
        padding: 20px 16px;
    }
    
    .dc-premium-profile-name {
        font-size: 22px;
    }
    
    .dc-premium-gallery-thumbs {
        padding: 6px;
    }
    
    .dc-premium-gallery-thumb {
        width: 52px;
        height: 52px;
    }
    
    .dc-premium-modal-actions {
        padding: 14px 16px 18px !important;
        gap: 14px !important;
    }
    
    .dc-premium-modal-actions .dc-premium-action-skip,
    .dc-premium-modal-actions .dc-premium-action-like,
    #dc-profile-skip,
    #dc-profile-like {
        width: 48px !important;
        height: 48px !important;
        border-width: 2.5px !important;
    }
    
    .dc-premium-modal-actions .dc-premium-action-super,
    #dc-profile-super-like {
        width: 40px !important;
        height: 40px !important;
        border-width: 2.5px !important;
    }
    
    .dc-premium-modal-actions .dc-premium-action-skip svg,
    .dc-premium-modal-actions .dc-premium-action-like svg,
    #dc-profile-skip svg,
    #dc-profile-like svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .dc-premium-modal-actions .dc-premium-action-super svg,
    #dc-profile-super-like svg {
        width: 18px !important;
        height: 18px !important;
    }
}

