/* ═══════════════════════════════════════════════════════════
   LinkPaylaş — Ana CSS Dosyası
   Landing page, auth modals, genel bileşenler
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

/* ── CSS Değişkenleri ────────────────────────────────────── */
:root {
  --primary:       #7c3aed;
  --primary-light: #a78bfa;
  --primary-dark:  #5b21b6;
  --accent:        #06b6d4;
  --accent-light:  #67e8f9;
  --success:       #10b981;
  --danger:        #ef4444;
  --warning:       #f59e0b;

  --bg-dark:       #050816;
  --bg-card:       rgba(255,255,255,0.06);
  --bg-card-hover: rgba(255,255,255,0.10);
  --border:        rgba(255,255,255,0.12);
  --border-hover:  rgba(255,255,255,0.25);

  --text-primary:  #f8fafc;
  --text-secondary:#94a3b8;
  --text-muted:    #64748b;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.4);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.5);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 40px rgba(124,58,237,0.3);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Animated Background ─────────────────────────────────── */
.bg-animated {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(120,40,200,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 80%, rgba(124,58,237,0.08) 0%, transparent 60%),
              var(--bg-dark);
}

.bg-animated::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  animation: bgMove 40s linear infinite;
}

@keyframes bgMove {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

/* ── Floating Orbs ───────────────────────────────────────── */
.orb {
  position: fixed; border-radius: 50%; filter: blur(80px);
  opacity: 0.15; animation: float 20s ease-in-out infinite; pointer-events: none; z-index: -1;
}
.orb-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -200px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; right: -100px; animation-delay: -10s; }
.orb-3 { width: 300px; height: 300px; background: #ec4899; top: 50%; left: 50%; animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

/* ── Navigation ──────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 8, 22, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.nav-links { display: flex; align-items: center; gap: 0.5rem; }

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-card); }

.btn { 
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem; font-weight: 600;
  border: none; border-radius: var(--radius-full);
  cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(124,58,237,0.5); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover { background: var(--bg-card-hover); border-color: var(--primary-light); }

.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-card); }

.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #dc2626; }

.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}

.hero-content { max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; color: var(--primary-light);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--accent), #ec4899);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: 1.2rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ── Stats ───────────────────────────────────────────────── */
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
  margin-top: 4rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); }

/* ── Mock Profile Preview ────────────────────────────────── */
.mock-preview {
  max-width: 360px; margin: 5rem auto 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  animation: floatCard 6s ease-in-out infinite;
  box-shadow: var(--shadow-glow);
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50%       { transform: translateY(-15px) rotateX(2deg); }
}

.mock-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 30px rgba(124,58,237,0.5);
}

.mock-name { font-weight: 700; font-size: 1.1rem; text-align: center; }
.mock-bio { font-size: 0.8rem; color: var(--text-secondary); text-align: center; margin: 0.5rem 0 1.5rem; }

.mock-link {
  display: block;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem; text-align: center; font-weight: 500;
  margin-bottom: 0.75rem;
  transition: var(--transition);
  cursor: pointer;
}
.mock-link:hover { background: rgba(124,58,237,0.2); border-color: var(--primary); transform: translateY(-2px); }

/* ── Features Section ────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  color: var(--primary-light);
  background: rgba(124,58,237,0.1);
  padding: 0.35rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -1px;
  margin-bottom: 1rem;
}

.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.05), transparent);
  opacity: 0; transition: var(--transition);
}

.feature-card:hover { transform: translateY(-8px); border-color: rgba(124,58,237,0.4); box-shadow: var(--shadow-glow); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 8px 20px rgba(124,58,237,0.3);
}

.feature-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.75rem; }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Pricing Section ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 800px; margin: 0 auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.price-card.featured {
  border-color: var(--primary);
  background: rgba(124,58,237,0.1);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}

.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 1rem; border-radius: var(--radius-full);
}

.price-plan { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 0.75rem; }
.price-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--text-primary); }
.price-period { font-size: 0.875rem; color: var(--text-muted); }
.price-features { text-align: left; margin: 2rem 0; list-style: none; }
.price-features li { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.9rem; color: var(--text-secondary); }
.price-features li .check { color: var(--success); flex-shrink: 0; }
.price-features li .cross { color: var(--text-muted); flex-shrink: 0; }

/* ── Auth Modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
  background: rgba(15, 20, 40, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%; max-width: 440px;
  transform: scale(0.95) translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal { transform: scale(1) translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
}

.modal-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; }

.modal-close {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-secondary);
  transition: var(--transition);
}
.modal-close:hover { color: var(--text-primary); background: var(--bg-card-hover); }

/* ── Form Elements ───────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.5rem; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.form-input::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select option { background: #1a1a2e; }

.form-check {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; color: var(--text-secondary);
}
.form-check input[type=checkbox] {
  width: 16px; height: 16px; accent-color: var(--primary);
}

.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.35rem; }
.form-error { font-size: 0.8rem; color: var(--danger); margin-top: 0.35rem; }

.form-divider {
  text-align: center; position: relative;
  color: var(--text-muted); font-size: 0.85rem; margin: 1.25rem 0;
}
.form-divider::before, .form-divider::after {
  content: ''; position: absolute; top: 50%;
  width: 42%; height: 1px; background: var(--border);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.form-footer { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: var(--text-secondary); }
.form-link { color: var(--primary-light); font-weight: 600; }
.form-link:hover { text-decoration: underline; }

/* ── Alert Messages ──────────────────────────────────────── */
.alert {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.alert-error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }
.alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }
.alert-info    { background: rgba(6,182,212,0.1);  border: 1px solid rgba(6,182,212,0.3);  color: #67e8f9; }
.alert-warning { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #fcd34d; }

/* ── Toast Notifications ─────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; flex-direction: column; gap: 0.75rem;
}

.toast {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(15,20,40,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px; max-width: 380px;
  animation: toastIn 0.3s ease;
  font-size: 0.9rem;
}

.toast.success { border-color: rgba(16,185,129,0.4); }
.toast.error   { border-color: rgba(239,68,68,0.4);  }

.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.toast-msg  { flex: 1; }
.toast-close { color: var(--text-muted); font-size: 1rem; flex-shrink: 0; transition: var(--transition); }
.toast-close:hover { color: var(--text-primary); }

@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-link { font-size: 0.875rem; color: var(--text-muted); transition: var(--transition); }
.footer-link:hover { color: var(--text-primary); }

.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.fade-in-up { animation: fadeInUp 0.6s ease both; }
.fade-in    { animation: fadeIn 0.6s ease both; }

/* Scroll-based reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Loading Spinner ─────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center  { text-align: center; }
.text-muted   { color: var(--text-secondary); }
.text-primary { color: var(--primary-light); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-4 { margin-bottom: 1rem; }
.d-flex { display: flex; } .gap-2 { gap: 0.5rem; } .gap-4 { gap: 1rem; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.fw-600 { font-weight: 600; } .fw-700 { font-weight: 700; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.5); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 1rem; }
  .nav-links .nav-link { display: none; }
  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 2rem; }
  .section { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .modal { padding: 1.75rem; }
  .toast { min-width: auto; }
  .toast-container { right: 1rem; left: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-xl { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   Profil Accordion Kategoriler
═══════════════════════════════════════════════════════════ */

/* ── Akordeon Wrapper ─────────────────────────────────────── */
.profile-container {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

/* ── Ekranlar ────────────────────────────────────────────── */
.profile-main-screen,
.profile-folder-screen {
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.profile-main-screen {
  transform: translateX(0);
  opacity: 1;
}

.profile-main-screen.slide-out {
  transform: translateX(-105%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.profile-folder-screen {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(105%);
  opacity: 0;
  pointer-events: none;
  display: none;
  width: 100%;
}

.profile-folder-screen.active {
  position: relative;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  display: block;
}

/* ── Kategori Folder Butonu ──────────────────────────────── */
.folder-btn {
  cursor: pointer;
  width: 100%;
}

/* ── Alt Sayfa Header ────────────────────────────────────── */
.folder-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem 0 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.folder-back-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: inherit;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, border-color 0.25s;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.folder-back-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.folder-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.folder-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.folder-subtitle {
  font-size: 0.78rem;
  opacity: 0.6;
}

/* ── Light Theme Uyumlaştırması (Minimal vb.) ─────────────── */
.theme-minimal .folder-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
.theme-minimal .folder-back-btn {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}
.theme-minimal .folder-back-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}

/* ── Gruba atanmamış linklerin ayracı ────────────────────── */
.profile-section-divider {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  margin: 1rem 0 0.5rem;
}
.theme-minimal .profile-section-divider {
  color: rgba(0, 0, 0, 0.35);
}

/* ═══════════════════════════════════════════════════════════
   Modular Blocks Custom Profile Styling
   Metin, SSS Accordion, Video Entegrasyonu ve Ayraç/Boşluk
   (Tüm temalarla uyumludur, hem koyu hem açık)
   ═══════════════════════════════════════════════════════════ */

/* ── Metin Bloku ────────────────────────────────────────── */
.profile-text-block {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  text-align: center;
  color: inherit;
}

.profile-text-block-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: inherit;
}

.profile-text-block-content {
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* ── SSS (FAQ) Akordeon Bloku ────────────────────────────── */
.profile-faq-block {
  margin-bottom: 0.75rem;
  text-align: left;
  color: inherit;
}

.profile-faq-block-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  color: inherit;
}

.profile-faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.profile-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
}

.profile-faq-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.profile-faq-question {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-icon {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-faq-answer {
  padding: 0.875rem 1.25rem;
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.5;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.15);
}

/* ── Video Entegrasyonu ─────────────────────────────────── */
.profile-video-block {
  margin-bottom: 0.75rem;
  color: inherit;
}

.profile-video-block-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding: 0 0.5rem;
  color: inherit;
}

.profile-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  box-shadow: var(--shadow-sm);
}

.profile-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.profile-video-error {
  padding: 1.25rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(239, 68, 68, 0.05);
  border-radius: var(--radius-md);
  color: var(--danger);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

/* ── Ayraçlar & Boşluklar ───────────────────────────────── */
.profile-spacer.spacer-small { height: 10px; }
.profile-spacer.spacer-medium { height: 20px; }
.profile-spacer.spacer-large { height: 40px; }
.profile-spacer.spacer-xlarge { height: 60px; }

.profile-divider-wrap.divider-wrap-small { padding: 5px 0; }
.profile-divider-wrap.divider-wrap-medium { padding: 10px 0; }
.profile-divider-wrap.divider-wrap-large { padding: 20px 0; }
.profile-divider-wrap.divider-wrap-xlarge { padding: 30px 0; }

.profile-divider {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0;
}
.profile-divider.divider-style-dashed { border-top-style: dashed; }
.profile-divider.divider-style-dotted { border-top-style: dotted; }
.profile-divider.divider-style-double { border-top-width: 3px; border-top-style: double; }

/* ── Açık Renk Temalar İçin Düzeltmeler (Örn: Minimal) ────── */
.theme-minimal .profile-text-block {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}

.theme-minimal .profile-faq-item {
  border-color: rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
}

.theme-minimal .profile-faq-item:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}

.theme-minimal .profile-faq-answer {
  border-top-color: rgba(0, 0, 0, 0.04);
  background: rgba(0, 0, 0, 0.03);
}

.theme-minimal .profile-video-wrapper {
  border-color: rgba(0, 0, 0, 0.06);
}

.theme-minimal .profile-divider {
  border-top-color: rgba(0, 0, 0, 0.08);
}
