/* Görsel & Video Kazıyıcı Studio - Dark Cyberpunk Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --bg-dark: #090d16;
    --card-bg: rgba(18, 24, 38, 0.78);
    --border-color: rgba(51, 65, 85, 0.6);
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --accent: #a855f7;
    --neon-cyan: #06b6d4;
    --neon-pink: #ec4899;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: #f1f5f9;
}

code, .font-mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism & Cyberpunk Stilleri */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}

.glass-panel {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

/* Glow Efektleri */
.glow-primary {
    box-shadow: 0 0 25px -5px rgba(99, 102, 241, 0.45);
}

.glow-accent {
    box-shadow: 0 0 25px -5px rgba(168, 85, 247, 0.45);
}

/* Özel Scrollbar */
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.9);
}

::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.85);
}

/* Galeri Kartı Efekti */
.gallery-card {
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px -10px rgba(99, 102, 241, 0.35);
}

.gallery-card.selected {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.8), 0 12px 24px -6px rgba(99, 102, 241, 0.4);
    opacity: 1 !important;
}

.gallery-card.unselected {
    opacity: 0.65;
    border-color: rgba(51, 65, 85, 0.6) !important;
}

.gallery-card.unselected:hover {
    opacity: 0.92;
}

/* Özel Seçim Tik Kutusu */
.custom-checkbox {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    cursor: pointer;
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(148, 163, 184, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.custom-checkbox:hover {
    border-color: #818cf8;
    transform: scale(1.08);
}

.custom-checkbox.checked {
    background: #4f46e5;
    border-color: #818cf8;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.8);
}

.custom-checkbox.checked::after {
    content: '✓';
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

/* Sekme Butonları */
.tab-btn {
    transition: all 0.2s ease;
    position: relative;
}

.tab-btn.active {
    background: rgba(99, 102, 241, 0.18);
    color: #ffffff;
    border-color: rgba(99, 102, 241, 0.6);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #6366f1;
    border-radius: 9999px;
    box-shadow: 0 0 10px #6366f1;
}

/* Platform Hapları (Filter Pills) */
.platform-pill {
    transition: all 0.18s ease;
    cursor: pointer;
    user-select: none;
}

.platform-pill.active {
    background: rgba(99, 102, 241, 0.25);
    border-color: #6366f1;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
}

.platform-pill:hover {
    transform: translateY(-1px);
}

/* Animasyonlar */
@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.animate-pulse-glow {
    animation: pulseGlow 3s infinite ease-in-out;
}
