*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a0a1a 0%, #2d0b2d 100%);
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - RESTORED PINK BORDER */
.header {
    background: rgba(44, 6, 30, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid #ff3366;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    font-size: 2.5rem;
    color: #ff3366;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo span {
    color: #ff3366;
}

.tagline {
    font-size: 0.8rem;
    color: #ff99cc;
    margin-top: -5px;
}

.navbar {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

.navbar a:hover {
    color: #ff3366;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff3366;
    transition: width 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* Hero Section - RESTORED PINK GRADIENTS */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 153, 204, 0.05));
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.15), rgba(255, 153, 204, 0.08));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.highlight {
    color: #ff3366;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffccdd;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff3366;
    margin-bottom: 5px;
}

.stat p {
    color: #ff99cc;
    font-size: 0.9rem;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ff3366, #cc0044);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #cc0044, #990033);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 0, 68, 0.3);
}

/* Categories - RESTORED PINK BORDERS & GRADIENTS */
.categories {
    padding: 100px 0 50px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: white;
}

.section-subtitle {
    color: #ffccdd;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tab-btn {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 51, 102, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #ff3366, #cc0044);
    border-color: #ff3366;
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
    transform: translateY(-5px);
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 51, 102, 0.1);
    border-color: #ff3366;
}

.badge {
    background: rgba(255, 51, 102, 0.3);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tab-btn.active .badge {
    background: rgba(255, 255, 255, 0.3);
}

/* Profile Sections */
.profiles-section {
    padding: 80px 0;
    display: none;
}

.profiles-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.profiles-title {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profiles-subtitle {
    color: #ffccdd;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Profile Card - RESTORED PINK GRADIENT TOP BORDER */
.profile-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #cc0044);
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
    border-color: #ff3366;
}

/* ========== UPDATED: INCREASED PHOTO HEIGHTS WITH VERIFIED BADGES REMOVED ========== */
.profile-photo-frame {
    width: 100%;
    height: 460px; /* INCREASED FROM 440px to 460px for better face visibility */
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(255, 153, 204, 0.1)); /* PINK GRADIENT RESTORED */
    border-radius: 15px;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 51, 102, 0.3); /* PINK BORDER RESTORED */
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 350px;
    height: 400px; /* INCREASED FROM 380px to 400px for better face visibility */
    background: transparent;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%; /* Adjusted for better face positioning */
    border-radius: 12px;
    display: block;
}

/* Ensure images don't scale on hover */
.profile-card:hover .photo-placeholder img {
    transform: none;
}

/* Hide icons when images are present */
.photo-placeholder:has(img) i {
    display: none;
}

/* VERIFIED BADGE CODE HAS BEEN REMOVED */
/* No more verified-badge styles */

.profile-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.age {
    color: #ff3366;
    font-weight: 400;
}

.profession {
    color: #ff99cc;
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Profile Details - RESTORED PINK BACKGROUND */
.profile-details {
    background: rgba(255, 51, 102, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.profile-details p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffccdd;
    font-size: 0.9rem;
}

.profile-description {
    color: #ffccdd;
    line-height: 1.6;
    margin: 20px 0;
    font-style: italic;
}

/* WhatsApp Button - RESTORED PINK GRADIENT */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff3366, #cc0044);
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3);
}

/* Load More Button Container - RESTORED PINK GRADIENT */
.load-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff3366 0%, #cc0044 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 51, 102, 0.4);
    background: linear-gradient(135deg, #cc0044 0%, #990033 100%);
}

.load-more-btn i {
    font-size: 18px;
}

/* Additional Profiles Container */
.additional-profiles {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Section - RESTORED PINK BACKGROUND */
.testimonials-section {
    padding: 100px 0;
    background: rgba(44, 6, 30, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 51, 102, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 51, 102, 0.2);
    border-color: #ff3366;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Testimonial Icon - RESTORED PINK GRADIENT */
.testimonial-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff3366, #cc0044);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #ff99cc;
    font-size: 0.9rem;
}

.rating {
    margin-left: auto;
    color: #FFD700;
    font-size: 0.9rem;
}

.testimonial-content {
    color: #ffccdd;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    color: #ff99cc;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 51, 102, 0.1);
    padding-top: 15px;
}

/* Testimonials CTA - RESTORED PINK GRADIENT */
.testimonials-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 153, 204, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 51, 102, 0.2);
}

.testimonials-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.testimonials-cta p {
    color: #ffccdd;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer - RESTORED PINK BORDER & BACKGROUND */
.footer {
    background: rgba(26, 6, 20, 0.95);
    padding: 80px 0 30px;
    border-top: 3px solid #ff3366;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-logo i {
    font-size: 2.5rem;
    color: #ff3366;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.footer-logo span {
    color: #ff3366;
}

.footer-tagline {
    color: #ff99cc;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-description {
    color: #ff99aa;
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.contact-method i {
    font-size: 1.5rem;
    color: #ff3366;
    min-width: 30px;
}

.contact-title {
    color: #ff99cc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-detail {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links a {
    color: #ff99cc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #ff3366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 51, 102, 0.1);
    padding-top: 30px;
}

.footer-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.footer-stats .stat {
    text-align: center;
}

.footer-stats h4 {
    font-size: 2rem;
    color: #ff3366;
    margin-bottom: 5px;
}

.footer-stats p {
    color: #ff99cc;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    color: #ff99aa;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #ff6688;
    margin-top: 10px;
}

/* Floating Hearts - PINK HEARTS RESTORED */
.floating-heart {
    position: fixed;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    color: #ff3366;
    animation: floatHeart 20s infinite linear;
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Back to Top Button - PINK RESTORED */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff3366;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: scale(1.1);
    background: #cc0044;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-profiles {
        grid-template-columns: 1fr;
    }
    
    /* Updated mobile responsive heights */
    .profile-photo-frame {
        height: 400px; /* INCREASED FROM 380px to 400px for mobile */
    }
    
    .photo-placeholder {
        width: 300px;
        height: 350px; /* INCREASED FROM 330px to 350px for mobile */
    }
    
    .photo-placeholder img {
        object-position: center 20%; /* Better face positioning for mobile */
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-method {
        justify-content: center;
    }

    .footer-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .load-more-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}

/* Dark Mode Scrollbar - PINK RESTORED */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(44, 6, 30, 0.2);
}

::-webkit-scrollbar-thumb {
    background: #ff3366;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0044;
}

/* Profile Count Badge - PINK RESTORED */
.profile-count {
    background: rgba(255, 51, 102, 0.3);
    color: #ffccdd;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

/* Active navigation link - PINK RESTORED */
.navbar a.active {
    color: #ff3366;
}

.navbar a.active::after {
    width: 100%;
}

/* Animation for loaded profiles */
.profiles-loaded .profile-card {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effect for testimonial cards */
.testimonial-card:hover .testimonial-icon {
    transform: rotate(360deg);
    transition: transform 0.5s ease;
}

/* Pulse animation for WhatsApp buttons - PINK RESTORED */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

.whatsapp-btn.pulse {
    animation: pulse 2s infinite;
}

/* Success badge style - PINK RESTORED */
.badge-success {
    background: #ff3366 !important;
    color: white !important;
}

/* Updated color scheme classes - ALL PINK RESTORED */
.text-pink {
    color: #ff3366;
}

.text-light-pink {
    color: #ff99cc;
}

.bg-pink {
    background-color: #ff3366;
}

.bg-dark-pink {
    background-color: #cc0044;
}

/* Instruction text for profile photos */
.photo-instruction {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 0 0 13px 13px;
}

/* ===== ADDED STYLES FOR JAVASCRIPT FUNCTIONALITY ===== */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Fix for tab switching */
.profiles-section {
    display: none;
}

.profiles-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Fix for tab buttons */
.tab-btn {
    cursor: pointer;
}

.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
}

/* Load More button fix */
.load-more-btn {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 51, 102, 0.4);
}

/* Additional profiles grid fix */
.additional-profiles {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff3366;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    transition: all 0.3s ease;
}

#back-to-top:hover {
    transform: scale(1.1);
    background: #cc0044;
}

/* Active navigation link */
.navbar a.active {
    color: #ff3366;
}

.navbar a.active::after {
    width: 100%;
}

/* Profile card animation */
.profiles-loaded .profile-card {
    animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for WhatsApp buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 51, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 51, 102, 0);
    }
}

.whatsapp-btn.pulse {
    animation: pulse 2s infinite;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .additional-profiles {
        grid-template-columns: 1fr;
    }
    
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* ===== MINIMAL IMAGE FIX ONLY ===== */
/* This ensures images display correctly without affecting other styles */
img {
    max-width: 100%;
    height: auto;
}

/* Remove any conflicting styles */
.photo-placeholder img:not([src]) {
    display: none;
}