/* ============================================
   ZANAT ⚡ Masters List — GTA6 Style
   ============================================ */

.list-container {
    justify-content: flex-start;
    padding-top: 30px;
    padding-bottom: 100px;
}

/* Filters */
.filters {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.filter-select {
    flex: 1;
    background: rgba(26, 10, 46, 0.8);
    border: 1.5px solid rgba(181, 55, 242, 0.3);
    border-radius: 12px;
    padding: 12px 14px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    outline: none;
    -webkit-appearance: none;
}

.filter-select option {
    background: #1A0A2E;
}

.filter-select:focus {
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(181, 55, 242, 0.3);
}

.filter-loc-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1.5px solid rgba(0, 212, 255, 0.4);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--neon-blue);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-loc-btn:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.filter-loc-btn.active {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* Masters list */
.masters-list {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Master card — GTA Wanted Poster style */
.master-card {
    background: linear-gradient(145deg, rgba(26, 10, 46, 0.9), rgba(45, 16, 69, 0.7));
    border: 1.5px solid rgba(181, 55, 242, 0.25);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.master-card:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 25px rgba(181, 55, 242, 0.3);
    transform: translateY(-3px);
}

/* Neon line at top of card */
.master-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink), var(--neon-blue));
}

/* Photo layout — BIG photo centered on top */
.card-top-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
}

.card-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--neon-purple);
    box-shadow: 
        0 0 20px rgba(181, 55, 242, 0.4),
        0 0 40px rgba(181, 55, 242, 0.2),
        0 0 60px rgba(255, 46, 151, 0.1);
    flex-shrink: 0;
    margin-bottom: 12px;
}

.card-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(181, 55, 242, 0.3), rgba(255, 46, 151, 0.2));
    font-family: 'Passion One', cursive;
    font-size: 42px;
    font-weight: 700;
    color: var(--neon-purple);
    letter-spacing: 2px;
}

.card-info {
    width: 100%;
    text-align: center;
}

.card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.card-name {
    font-family: 'Passion One', cursive;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-badge.available {
    background: rgba(0, 255, 136, 0.15);
    color: #00FF88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.card-badge.busy {
    background: rgba(255, 68, 68, 0.15);
    color: #FF4444;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.card-category {
    font-size: 16px;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 8px;
    text-align: center;
}

.card-location {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 8px;
    text-align: center;
}

.card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 14px;
    text-align: center;
}

.card-distance {
    font-size: 13px;
    font-weight: 700;
    color: var(--neon-orange);
    margin-bottom: 8px;
}

/* Contact buttons */
.card-actions {
    display: flex;
    gap: 10px;
}

.card-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.card-action.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border: 1.5px solid rgba(37, 211, 102, 0.4);
    color: #25D366;
}

.card-action.whatsapp:hover {
    background: rgba(37, 211, 102, 0.25);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.card-action.phone {
    background: rgba(0, 212, 255, 0.1);
    border: 1.5px solid rgba(0, 212, 255, 0.4);
    color: var(--neon-blue);
}

.card-action.phone:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 0.6s ease-out;
}

.empty-state.hidden {
    display: none;
}

.empty-icon {
    font-size: 50px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: 'Passion One', cursive;
    font-size: 28px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.empty-state a {
    color: var(--neon-purple);
    text-decoration: none;
    font-weight: 700;
}

.empty-state a:hover {
    text-shadow: 0 0 10px var(--neon-purple);
}

/* Mobile */
@media (max-width: 520px) {
    .filters {
        flex-direction: column;
    }
    
    .master-card {
        padding: 16px;
    }
    
    .card-photo {
        width: 100px;
        height: 100px;
    }

    .card-photo-placeholder {
        font-size: 36px;
    }
    
    .card-name {
        font-size: 22px;
    }
}
