@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.fv-downloader-page {
    --fv-font: 'Inter', -apple-system, sans-serif;
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --fv-primary: #dc2743;       
    --fv-text-dark: #0f172a;
    --fv-text-muted: #475569;
    --fv-bg-white: #ffffff;
    --fv-bg-soft: #f8fafc;
    --fv-border: #e2e8f0;
    --fv-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --fv-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --fv-radius-lg: 24px;
    --fv-radius-md: 16px;

    width: 100%; max-width: 900px; margin: 0 auto; padding: 20px 0;
    font-family: var(--fv-font); color: var(--fv-text-dark); line-height: 1.6;
    box-sizing: border-box; transition: all 0.3s ease;
}

.fv-downloader-page * { box-sizing: border-box; }

body.dark .fv-downloader-page {
    --fv-text-dark: #f8fafc; --fv-text-muted: #94a3b8;
    --fv-bg-white: #1e293b; --fv-bg-soft: #0f172a; --fv-border: #334155;
    --fv-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    --fv-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

/* Breadcrumb */
.fv-downloader-page .fv-breadcrumb {
    width: 100%; max-width: 800px; margin: 0 auto 35px auto; padding: 10px 20px;
    background: rgba(241, 245, 249, 0.6); border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 50px; backdrop-filter: blur(8px);
}
body.dark .fv-downloader-page .fv-breadcrumb { background: rgba(30, 41, 59, 0.6); border-color: rgba(51, 65, 85, 0.8); }
.fv-downloader-page .fv-bc-wrapper { display: flex; align-items: center; overflow-x: auto; gap: 10px; scrollbar-width: none; }
.fv-downloader-page .fv-bc-wrapper::-webkit-scrollbar { display: none; }
.fv-downloader-page .fv-bc-item { display: flex; align-items: center; gap: 6px; white-space: nowrap; color: var(--fv-text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s ease; }
.fv-downloader-page .fv-bc-item svg { stroke: var(--fv-primary); }
.fv-downloader-page .fv-bc-item:hover { color: var(--fv-primary); }
.fv-downloader-page .fv-bc-item.active { color: var(--fv-text-dark); font-weight: 700; background: var(--fv-bg-white); padding: 6px 14px; border-radius: 20px; box-shadow: var(--fv-shadow-md); border: 1px solid var(--fv-border); }
body.dark .fv-downloader-page .fv-bc-item.active { background: #0f172a; color: #f8fafc; border-color: #334155; }
.fv-downloader-page .fv-bc-divider { font-size: 10px; color: #94a3b8; opacity: 0.6; }

/* Header */
.fv-dl-header { text-align: center; margin-bottom: 45px; padding: 0 20px; }
.fv-dl-header .fv-service-title { font-size: 34px; font-weight: 800; color: var(--fv-text-dark); margin: 0 0 15px 0; letter-spacing: -0.03em; line-height: 1.3; }
.fv-dl-header .fv-title-highlight { background: var(--ig-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; display: inline-block; padding: 0 4px; }
.fv-dl-header .fv-dl-subtitle { font-size: 16px; color: var(--fv-text-muted); font-weight: 500; max-width: 600px; margin: 0 auto; }

/* Search Widget */
.fv-dl-widget { width: 100%; margin-bottom: 60px; }
.fv-dl-search-section { position: relative; z-index: 100; width: 100%; margin-bottom: 30px; display: flex; flex-direction: column; align-items: center; }
.fv-dl-box { position: relative; width: 100%; display: flex; align-items: center; background: var(--fv-bg-white); border: 2px solid var(--fv-border); border-radius: 20px; padding: 6px; box-shadow: var(--fv-shadow-lg); transition: border-color 0.3s ease; }
body.dark .fv-dl-box { background: var(--fv-bg-soft); }
.fv-dl-box:focus-within { border-color: #dc2743; }

.fv-ig-icon { font-size: 26px; margin-left: 15px; color: transparent; background: var(--ig-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.fv-dl-box input { flex: 1; padding: 18px 20px; background: transparent; border: none; font-family: var(--fv-font); font-size: 16px; color: var(--fv-text-dark); font-weight: 600; outline: none; }

.fv-dl-fetch-btn { background: var(--ig-gradient); color: #fff; border: none; border-radius: 14px; padding: 0 30px; height: 50px; font-family: var(--fv-font); font-weight: 800; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap; }
.fv-dl-fetch-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -5px rgba(220, 39, 67, 0.4); }
.fv-dl-fetch-btn:active { transform: translateY(0); }

.fv-turnstile-container { margin-top: 15px; display: flex; justify-content: center; }

/* Empty State */
.fv-empty-state { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; animation: fadeIn 0.5s ease; }
.empty-state-card { background: var(--fv-bg-white); border: 1px solid var(--fv-border); padding: 25px 20px; border-radius: var(--fv-radius-md); box-shadow: var(--fv-shadow-md); text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.3s; }
body.dark .empty-state-card { background: var(--fv-bg-soft); }
.empty-state-card:hover { transform: translateY(-5px); }
.empty-state-card .es-icon { width: 50px; height: 50px; background: rgba(220, 39, 67, 0.1); color: var(--fv-primary); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 15px; }
.empty-state-card h3 { margin: 0 0 10px 0; font-size: 16px; color: var(--fv-text-dark); font-weight: 700; }
.empty-state-card p { margin: 0; font-size: 13.5px; color: var(--fv-text-muted); line-height: 1.5; }

/* Loader */
.fv-dl-loader { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 0; gap: 15px; }
.fv-dl-spinner { width: 40px; height: 40px; border: 4px solid rgba(220, 39, 67, 0.2); border-top-color: var(--fv-primary); border-radius: 50%; animation: spin 1s linear infinite; }
.fv-dl-loader span { font-weight: 600; color: var(--fv-primary); font-size: 15px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Results Area */
.fv-dl-result-area { background: var(--fv-bg-soft); border: 1px solid var(--fv-border); border-radius: var(--fv-radius-lg); padding: 30px; animation: fadeIn 0.5s ease; }
.fv-result-header { text-align: center; margin-bottom: 30px; border-bottom: 1px solid var(--fv-border); padding-bottom: 20px; }
.fv-result-header h3 { font-size: 22px; color: var(--fv-text-dark); margin: 0 0 5px 0; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 10px; }
.fv-result-header p { font-size: 15px; color: var(--fv-text-muted); margin: 0; font-weight: 600; }

.fv-media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.fv-media-card { background: var(--fv-bg-white); border: 1px solid var(--fv-border); border-radius: 16px; overflow: hidden; box-shadow: var(--fv-shadow-md); display: flex; flex-direction: column; }
body.dark .fv-media-card { background: #1e293b; }

.fv-media-preview { width: 100%; aspect-ratio: 4/5; background: #000; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fv-media-preview img, .fv-media-preview video { width: 100%; height: 100%; object-fit: cover; }
.fv-media-preview video { object-fit: contain; background: #000; }

.fv-media-type-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.6); color: #fff; padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 700; backdrop-filter: blur(4px); display: flex; align-items: center; gap: 5px; z-index: 10; }

.fv-media-actions { padding: 15px; display: flex; justify-content: center; }
.fv-btn-download { width: 100%; background: var(--fv-primary); color: #fff; text-decoration: none; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.3s, transform 0.2s; border: none; cursor: pointer; }
.fv-btn-download:hover { background: #b91c36; transform: translateY(-2px); }

/* SEO & FAQ (Aynı Stil) */
.fv-dynamic-seo { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 50px auto 60px; }
.fv-dynamic-seo .info-container, .fv-dynamic-seo .article-container { background: var(--fv-bg-white); border: 1px solid var(--fv-border); border-radius: var(--fv-radius-lg); box-shadow: var(--fv-shadow-md); padding: 40px; }
.fv-dynamic-seo h2 { font-size: 20px; color: var(--fv-text-dark); margin-top: 0; margin-bottom: 20px; font-weight: 800; border-bottom: 2px solid var(--fv-primary); padding-bottom: 10px; display: inline-block;}
.fv-dynamic-seo p { color: var(--fv-text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 15px; }
.fv-dynamic-seo ul { padding-left: 20px; color: var(--fv-text-muted); font-size: 15px; line-height: 1.7; }
.fv-dynamic-seo li { margin-bottom: 10px; }
.fv-dynamic-seo strong { color: var(--fv-text-dark); }

.faq-container { background: var(--fv-bg-white); border: 1px solid var(--fv-border); border-radius: var(--fv-radius-lg); box-shadow: var(--fv-shadow-md); padding: 40px; margin-bottom: 50px;}
.faq-title { text-align: center; margin-top:0; margin-bottom: 30px; color: var(--fv-text-dark); font-size: 24px; font-weight: 800;}
.faq-item { margin-bottom: 15px; border: 1px solid var(--fv-border); border-radius: 12px; overflow: hidden; }
.faq-item h3 { background: var(--fv-bg-soft); padding: 18px 20px; margin: 0; font-size: 15px; font-weight: 700; color: var(--fv-text-dark); cursor: pointer; display: flex; justify-content: space-between; }
.faq-item h3:hover { background: #f1f5f9; color: var(--fv-primary); }
body.dark .faq-item h3:hover { background: #1e293b; color: var(--fv-primary); }
.faq-item h3::after { content: '+'; font-size: 20px; font-weight: 400; color: #94a3b8; }
.faq-answer { padding: 20px; margin: 0; font-size: 14.5px; color: var(--fv-text-muted); border-top: 1px solid var(--fv-border); display: none; line-height: 1.7; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media screen and (max-width: 768px) {
    .fv-downloader-page { padding: 10px; }
    .fv-empty-state { grid-template-columns: 1fr; }
    .fv-dynamic-seo { grid-template-columns: 1fr; }
    .fv-dl-box { flex-direction: column; padding: 10px; border-radius: 16px; background: transparent; border: none; box-shadow: none; gap: 10px; }
    body.dark .fv-dl-box { background: transparent; }
    .fv-dl-box input { width: 100%; border-radius: 12px; background: var(--fv-bg-white); border: 2px solid var(--fv-border); padding: 18px 15px; box-shadow: var(--fv-shadow-sm); }
    .fv-dl-fetch-btn { width: 100%; height: 55px; justify-content: center; }
    .fv-ig-icon { display: none; }
    .fv-dl-result-area, .fv-dynamic-seo .info-container, .fv-dynamic-seo .article-container, .faq-container { padding: 20px; }
    .fv-media-grid { grid-template-columns: 1fr; }
}

/* Swal2 Popup CSS */
body.swal2-shown:not(.swal2-no-backdrop) .swal2-container { background-color: rgba(15, 23, 42, 0.8) !important; backdrop-filter: blur(10px); }
.fv-modal__popup.swal2-popup { border-radius: 24px !important; padding: 40px 30px 30px !important; font-family: 'Inter', sans-serif !important; }
.fv-modal__title { font-size: 22px !important; font-weight: 800 !important; color: var(--fv-text-dark) !important; margin-bottom: 15px !important; }
.fv-btn-confirm { background: var(--ig-gradient) !important; color: white !important; padding: 14px 30px !important; border-radius: 12px !important; font-weight: 700 !important; width: 100%; margin-top: 15px;}