@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.fv-fc-page {
    --fv-font: 'Inter', -apple-system, sans-serif;
    --fv-primary: #8b5cf6;       
    --fv-accent: #6d28d9;
    --fv-gradient: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    
    --fv-text-dark: #0f172a;
    --fv-text-muted: #475569;
    --fv-bg-white: #ffffff;
    --fv-bg-soft: #f8fafc;
    --fv-border: #e2e8f0;
    --fv-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --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: 950px; margin: 0 auto; padding: 20px 0;
    font-family: var(--fv-font); color: var(--fv-text-dark); line-height: 1.6;
}
.fv-fc-page * { box-sizing: border-box; }

body.dark .fv-fc-page {
    --fv-text-dark: #f8fafc; --fv-text-muted: #94a3b8;
    --fv-bg-white: #1e293b; --fv-bg-soft: #0f172a; --fv-border: #334155;
}

/* Breadcrumb & Header */
.fv-fc-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-fc-page .fv-breadcrumb { background: rgba(30, 41, 59, 0.6); border-color: rgba(51, 65, 85, 0.8); }
.fv-fc-page .fv-bc-wrapper { display: flex; align-items: center; overflow-x: auto; gap: 10px; scrollbar-width: none; }
.fv-fc-page .fv-bc-wrapper::-webkit-scrollbar { display: none; }
.fv-fc-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-fc-page .fv-bc-item svg { stroke: var(--fv-primary); }
.fv-fc-page .fv-bc-item:hover { color: var(--fv-primary); }
.fv-fc-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-sm); border: 1px solid var(--fv-border); }
body.dark .fv-fc-page .fv-bc-item.active { background: #0f172a; color: #f8fafc; border-color: #334155; }
.fv-fc-page .fv-bc-divider { font-size: 10px; color: #94a3b8; opacity: 0.6; }

.fv-fc-header { text-align: center; margin-bottom: 30px; padding: 0 20px; }
.fv-fc-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-fc-header .fv-title-highlight { background: var(--fv-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; display: inline-block; padding: 0 4px; }
.fv-fc-header .fv-fc-subtitle { font-size: 16px; color: var(--fv-text-muted); font-weight: 500; max-width: 650px; margin: 0 auto; }

/* ⚡ Hero Image - Şık ve Uyumlu ⚡ */
.fv-hero-image-container { margin: 0 auto 40px; max-width: 650px; border-radius: 20px; overflow: hidden; box-shadow: var(--fv-shadow-lg); border: 1px solid var(--fv-border); background: var(--fv-bg-white);}
body.dark .fv-hero-image-container { border-color: #334155; }
.fv-hero-image { width: 100%; height: auto; display: block; transition: transform 0.3s ease; }
.fv-hero-image:hover { transform: scale(1.02); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* Widget Area & Steps */
.fv-fc-widget { width: 100%; margin-bottom: 60px; }
.fv-step-section { background: var(--fv-bg-white); border: 1px solid var(--fv-border); border-radius: var(--fv-radius-lg); box-shadow: var(--fv-shadow-lg); padding: 40px; text-align: center; position: relative; animation: fadeIn 0.5s ease; max-width: 800px; margin: 0 auto 30px auto; overflow: hidden;}
body.dark .fv-step-section { background: var(--fv-bg-soft); }
.fv-step-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--fv-gradient); }

.step-badge { display: inline-block; background: #0f172a; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 1px; padding: 6px 12px; border-radius: 8px; margin-bottom: 15px; }
body.dark .step-badge { background: #334155; }

.fv-step-section h3 { margin: 0 0 10px 0; font-size: 22px; color: var(--fv-text-dark); font-weight: 800; }
.fv-step-section p { margin: 0 0 25px 0; font-size: 15px; color: var(--fv-text-muted); }

.fv-search-box { position: relative; width: 100%; display: flex; align-items: center; background: var(--fv-bg-soft); border: 2px solid var(--fv-border); border-radius: 16px; padding: 4px; box-shadow: var(--fv-shadow-sm); transition: border-color 0.3s ease; }
body.dark .fv-search-box { background: #0f172a; }
.fv-search-box:focus-within { border-color: var(--fv-primary); }

.fv-fc-icon { font-size: 18px; margin-left: 15px; color: #94a3b8; transition: color 0.3s; }
.target-icon { color: #f43f5e; }
.fv-search-box:focus-within .fv-fc-icon { color: var(--fv-primary); }
.fv-search-box:focus-within .target-icon { color: #f43f5e; }

.fv-search-box input { flex: 1; padding: 15px 12px; background: transparent; border: 0px solid transparent !important; font-family: var(--fv-font); font-size: 15px; color: var(--fv-text-dark); font-weight: 600; outline: none !important; box-shadow: none !important; width: 100%;}
.fv-search-box input:focus { outline: none !important; border: 0px solid transparent !important; box-shadow: none !important; background: transparent !important; }

.fv-btn-track { background: var(--fv-gradient); color: #fff; border: none; border-radius: 14px; padding: 0 30px; height: 55px; font-family: var(--fv-font); font-weight: 800; font-size: 15px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;}
.fv-btn-track:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -5px rgba(139, 92, 246, 0.4); }

.fv-credit-status { margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--fv-text-muted); display: inline-block; background: var(--fv-bg-soft); border: 1px solid var(--fv-border); padding: 8px 16px; border-radius: 20px; }
body.dark .fv-credit-status { background: #0f172a; }
.fv-credit-status i { color: #f59e0b; margin-right: 5px; }
.fv-credit-status strong { color: var(--fv-text-dark); font-weight: 800; }
body.dark .fv-credit-status strong { color: #fff; }

.fv-turnstile-container { margin-top: 15px; display: flex; justify-content: center; }

/* Loader */
.fv-loader-area { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 0; gap: 15px; }
.fv-spinner { width: 50px; height: 50px; border: 4px solid rgba(139, 92, 246, 0.2); border-top-color: var(--fv-primary); border-radius: 50%; animation: spin 1s linear infinite; }
.fv-spinner-small { width: 25px; height: 25px; border: 3px solid rgba(255, 255, 255, 0.3); border-top-color: #fff; border-radius: 50%; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.fv-loader-area p { font-weight: 700; color: var(--fv-primary); font-size: 16px; margin: 0;}

/* STEP 2: Loaded Profile Bar */
.fv-loaded-profile-bar { display: flex; align-items: center; gap: 15px; background: rgba(139, 92, 246, 0.05); border: 1px solid rgba(139, 92, 246, 0.2); padding: 15px 20px; border-radius: 16px; margin-bottom: 30px; text-align: left;}
body.dark .fv-loaded-profile-bar { background: rgba(139, 92, 246, 0.1); }
#loaded-avatar { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 2px solid var(--fv-primary); }
.loaded-info { flex: 1; }
.loaded-info h4 { margin: 0 0 5px 0; font-size: 16px; color: var(--fv-text-dark); font-weight: 800; }
.loaded-info p { margin: 0; font-size: 13px; color: var(--fv-text-muted); font-weight: 600; }
.loaded-info i { color: var(--fv-primary); margin-right: 3px; }
.fv-btn-outline { background: transparent; border: 2px solid var(--fv-border); color: var(--fv-text-dark); padding: 8px 15px; border-radius: 10px; font-weight: 700; font-size: 13px; cursor: pointer; transition: all 0.2s;}
body.dark .fv-btn-outline { color: #fff; }
.fv-btn-outline:hover { background: var(--fv-bg-soft); border-color: var(--fv-text-muted); }

/* ⚡ ŞIK KARTLI SONUÇ ALANI ⚡ */
.fv-local-result { margin-top: 35px; padding-top: 35px; border-top: 1px dashed var(--fv-border); display: flex; flex-direction: column; align-items: center; gap: 20px; animation: fadeIn 0.4s ease; }

.fv-result-visual-cards { display: flex; align-items: center; justify-content: center; gap: 20px; width: 100%; position: relative; }

.res-card-pro { 
    background: var(--fv-bg-soft); border: 1px solid var(--fv-border); border-radius: 20px; 
    padding: 15px; display: flex; flex-direction: column; align-items: center; gap: 10px; 
    width: 160px; box-shadow: var(--fv-shadow-md); transition: transform 0.3s;
}
body.dark .res-card-pro { background: #0f172a; }
.res-card-pro:hover { transform: translateY(-3px); }

.res-card-pro img { width: 85px; height: 85px; border-radius: 50%; object-fit: cover; border: 3px solid var(--fv-bg-white); box-shadow: var(--fv-shadow-sm); background:#e2e8f0; }
body.dark .res-card-pro img { border-color: #1e293b; background:#334155; }

.res-card-username { font-weight: 700; font-size: 14px; color: var(--fv-text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px; }
body.dark .res-card-username { color: #fff; }

.res-status-badge { width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; z-index: 10; border: 4px solid var(--fv-bg-white); box-shadow: var(--fv-shadow-md); flex-shrink: 0;}
body.dark .res-status-badge { border-color: #1e293b; }

.status-loading { background: #94a3b8; }
.status-yes { background: linear-gradient(135deg, #10b981, #059669); }
.status-no { background: linear-gradient(135deg, #ef4444, #b91c1c); }

.fv-result-text { text-align: center; font-size: 18px; font-weight: 700; margin: 0; line-height: 1.5; color: var(--fv-text-dark); background: var(--fv-bg-soft); padding: 15px 25px; border-radius: 12px; border: 1px solid var(--fv-border); width: 100%;}
body.dark .fv-result-text { color: #fff; background: #0f172a; }

/* SEO & FAQ */
.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; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media screen and (max-width: 768px) {
    .fv-fc-page { padding: 5px 0; }
    .fv-step-section { padding: 25px 15px; border: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--fv-border); border-bottom: 1px solid var(--fv-border); }
    .fv-search-box { flex-direction: column; padding: 0; background: transparent; border: none; box-shadow: none; gap: 10px; }
    body.dark .fv-search-box { background: transparent; }
    .fv-search-box input { width: 100%; border-radius: 12px; background: var(--fv-bg-soft) !important; border: 2px solid var(--fv-border) !important; padding: 18px 15px; text-align: center; }
    .fv-search-box input:focus { border-color: var(--fv-primary) !important; }
    .fv-fc-icon { display: none; }
    .fv-btn-track { max-width: 100%; height: 55px; width: 100%; margin-bottom: 10px;}
    
    .fv-loaded-profile-bar { flex-direction: column; text-align: center; }
    .fv-btn-outline { width: 100%; margin-top: 10px; }
    .fv-dynamic-seo { grid-template-columns: 1fr; }
    
    /* Mobil Kart Düzeni */
    .fv-result-visual-cards { gap: 10px; }
    .res-card-pro { width: 130px; padding: 10px; }
    .res-card-pro img { width: 65px; height: 65px; }
    .res-status-badge { width: 45px; height: 45px; font-size: 20px; border-width: 2px;}
    .fv-result-text { font-size: 15px; padding: 12px; }
}

/* SweetAlert2 */
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(--fv-gradient) !important; color: white !important; padding: 14px 30px !important; border-radius: 12px !important; font-weight: 700 !important; width: 100%; margin-top: 15px; border: none !important;}
.fv-btn-close-icon { color: var(--fv-text-muted) !important; font-size: 28px !important; transition: color 0.2s ease !important; background: transparent !important; border: none !important; }
.fv-btn-close-icon:hover { color: #ef4444 !important; }
.fv-btn-close-icon:focus { outline: none !important; box-shadow: none !important; }