/* 1DollarPhoto.store - Custom CSS */
/* Dark Glassmorphism Theme with Neon Accents */

body {
    background-color: #0f0f11;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'DM Sans', sans-serif;
}

/* Hide scrollbar but keep functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.scan-line {
    width: 100%;
    height: 2px;
    background: #00ff9d;
    position: absolute;
    top: 0;
    left: 0;
    animation: scan 2s infinite linear;
    box-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d;
}

@keyframes scan {
    0% {
        top: 0%;
    }
    100% {
        top: 100%;
    }
}

.style-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.5;
}

.style-card:hover {
    filter: grayscale(50%);
    opacity: 0.7;
}

.style-card.selected {
    filter: grayscale(0%);
    opacity: 1;
    border: 2px solid #bd00ff;
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
}

.style-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.style-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem 0.5rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.style-card .checkmark {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #bd00ff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.style-card.selected .checkmark {
    display: flex;
}

#upload-zone.drag-over {
    border-color: #bd00ff;
    background: rgba(189, 0, 255, 0.05);
}

#upload-zone.verified {
    border-color: #00ff9d;
    background: rgba(0, 255, 157, 0.05);
}

.result-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: rgba(189, 0, 255, 0.5);
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.3);
}

.result-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.download-btn {
    background: linear-gradient(135deg, #bd00ff 0%, #7c00ff 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    display: block;
}

.download-btn:hover {
    box-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
    transform: translateY(-2px);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(189, 0, 255, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(189, 0, 255, 0.8);
}
