
/* GHOST STRIP SOCIAL PROOF */
.ghost-strip-container {
    width: 100%;
    padding: 100px 0; /* Increased from 40px/60px */
    background: #000;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.ghost-header {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.ghost-strip-track {
    display: flex;
    gap: 40px; /* Reduced from 60px to ensure fit */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Keeps mobile responsiveness */
    max-width: 1400px; /* Increased from 1200px */
    width: 100%;
    padding: 0 20px;
}

.ghost-logo {
    height: 36px; /* Increased from 28px */
    width: auto;
    /* BASE STATE: Silver/Grey Ghost */
    filter: brightness(0) invert(1) opacity(0.3); 
    transition: all 0.4s ease;
    cursor: pointer;
    object-fit: contain;
}

/* FIX FOR LOGOS WITH WHITE BACKGROUNDS (HP, Tractor Supply) */
/* This converts: White Background -> Transparent/Black, Text -> Grey */
.ghost-logo.logo-with-bg {
    /* Critical Fix: Invert colors first so White BG becomes Black (transparent in screen mode) */
    filter: invert(1) grayscale(100%) brightness(1.5) opacity(0.5);
    mix-blend-mode: screen;
}

.ghost-logo:hover {
    /* HOVER STATE: Pure White Glow */
    filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 8px rgba(255,255,255,0.6));
    transform: scale(1.05);
}

.ghost-logo.logo-with-bg:hover {
    /* HOVER STATE FOR BG LOGOS: Bright White */
    filter: grayscale(100%) brightness(2) contrast(1) opacity(1) drop-shadow(0 0 8px rgba(255,255,255,0.4));
    mix-blend-mode: normal; /* Restore normal blend on hover if possible, or keep screen */
    mix-blend-mode: screen; 
}

@media (max-width: 768px) {
    .ghost-strip-container {
        padding: 40px 20px;
        /* Visible on mobile but scaled down */
    }
    
    .ghost-strip-track {
        gap: 30px;
    }
    
    .ghost-logo {
        height: 24px;
    }
}
