/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #000000;
  --bg2: #0a0a0a;
  --bg3: #111111;
  --bg4: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);
  --accent: #6366f1;
  --accent2: #818cf8;
  --accent-glow: rgba(99,102,241,0.3);
  --text: #f5f5f7;
  --text2: #a1a1aa;
  --text3: #71717a;
  --green: #34d399;
  --radius: 18px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo-mark {
  width: 32px; height: 32px;
  background: rgba(129,140,248,0.1);
  border: 1px solid rgba(129,140,248,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
}
.logo:hover .logo-mark {
  background: rgba(129,140,248,0.2);
  box-shadow: 0 0 16px rgba(129,140,248,0.3);
}

.logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: logoShimmer 4s linear infinite;
}
.logo-accent {
  background: linear-gradient(90deg, #818cf8, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes logoShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.logo-icon { display: none; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #000;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, opacity 0.15s;
  font-family: inherit;
}
.btn-primary:hover { background: #e5e5e7; transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.04); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-blur {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content > p {
  color: var(--text2);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: inline-flex;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background 0.2s;
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,0.04); }
.stat strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span {
  font-size: 0.65rem;
  color: #52525b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TRUST ===== */
.trust {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-inner { max-width: 1100px; margin: 0 auto; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.trust-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 18px 14px;
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.trust-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(129,140,248,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.trust-card:hover {
  border-color: rgba(129,140,248,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99,102,241,0.1);
}

.trust-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-icon {
  width: 36px; height: 36px;
  background: rgba(129,140,248,0.08);
  border: 1px solid rgba(129,140,248,0.15);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s;
}
.trust-card:hover .trust-icon {
  background: rgba(129,140,248,0.15);
  box-shadow: 0 0 12px rgba(129,140,248,0.2);
}

.trust-text h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.trust-text p {
  font-size: 0.78rem;
  color: var(--text3);
  line-height: 1.5;
}

.trust-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 500;
}
.trust-stat span {
  color: #34d399;
  font-weight: 700;
  font-size: 0.72rem;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.section-header p {
  color: var(--text2);
  font-size: 1rem;
}

/* ===== PROGRAMS ===== */
.programs {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 20px;
}

.program-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.program-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.program-card.featured {
  border-color: rgba(99,102,241,0.3);
  background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, var(--bg3) 60%);
}
.program-card.featured:hover {
  border-color: rgba(99,102,241,0.5);
  box-shadow: 0 20px 60px rgba(99,102,241,0.15);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.program-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.program-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  border: 1px solid var(--border);
  transition: background 0.2s, box-shadow 0.2s;
}
.program-card:hover .program-icon {
  background: rgba(255,255,255,0.1);
}
.program-icon.gradient {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(192,132,252,0.2));
  border-color: rgba(99,102,241,0.3);
  color: #a78bfa;
}
.program-card.featured:hover .program-icon.gradient {
  box-shadow: 0 0 24px rgba(99,102,241,0.3);
}

.program-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.program-badge.stable {
  background: rgba(52,211,153,0.1);
  color: var(--green);
  border: 1px solid rgba(52,211,153,0.2);
}

.program-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.program-card > p {
  color: var(--text2);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.program-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.program-features span {
  font-size: 0.75rem;
  color: var(--text2);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.program-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: var(--text3);
  flex-wrap: wrap;
}
.download-count strong {
  color: var(--text2);
  font-weight: 600;
}

.program-footer {
  display: flex;
  gap: 10px;
}

.btn-download {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #000;
  color: #a78bfa;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid rgba(129,140,248,0.3);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn-download::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-download:hover {
  border-color: rgba(129,140,248,0.7);
  color: #c4b5fd;
  box-shadow: 0 0 20px rgba(99,102,241,0.25), inset 0 0 20px rgba(99,102,241,0.05);
  transform: translateY(-1px);
}
.btn-download:hover::after { opacity: 1; }
.btn-download:active { transform: scale(0.97); }

.program-card.featured .btn-download {
  background: #000;
  color: #a78bfa;
  border: 1px solid rgba(129,140,248,0.4);
  box-shadow: 0 0 16px rgba(99,102,241,0.15);
}
.program-card.featured .btn-download:hover {
  border-color: #818cf8;
  color: #c4b5fd;
  box-shadow: 0 0 32px rgba(99,102,241,0.4), inset 0 0 24px rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
}
.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.about-content p {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-content p:last-of-type { margin-bottom: 24px; }

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-skills span {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.about-card-main {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 220px;
  text-align: center;
}
.about-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 14px;
}
.about-info h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.about-info p { font-size: 0.8rem; color: var(--text3); margin-bottom: 20px; }

.about-stats-mini {
  display: flex;
  gap: 0;
  background: var(--bg4);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.stat-mini {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-mini:last-child { border-right: none; }
.stat-mini strong { display: block; font-size: 1.1rem; font-weight: 800; }
.stat-mini span { font-size: 0.7rem; color: var(--text3); }

.about-social {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.social-link {
  width: 38px; height: 38px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.social-link:hover { border-color: var(--border-hover); color: var(--text); }

/* ===== CONTACT ===== */
.contact {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 24px;
}

.discord-contact {
  display: flex;
  justify-content: center;
}

.discord-card {
  background: var(--bg3);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.discord-card:hover {
  border-color: rgba(88,101,242,0.5);
  box-shadow: 0 20px 60px rgba(88,101,242,0.1);
}

.discord-icon {
  width: 72px; height: 72px;
  background: rgba(88,101,242,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7289da;
}

.discord-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.discord-info p {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.discord-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
}
.discord-username {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}
.discord-tag {
  font-size: 0.8rem;
  color: var(--text3);
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5865f2;
  color: #fff;
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  width: 100%;
  justify-content: center;
}
.btn-discord:hover { background: #4752c4; transform: scale(1.02); }
.btn-discord:active { transform: scale(0.98); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 24px 28px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 12px;
}
.footer-desc {
  color: var(--text3); font-size: 0.85rem;
  line-height: 1.6; margin-bottom: 16px; max-width: 260px;
}
.footer-discord {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(88,101,242,0.1);
  border: 1px solid rgba(88,101,242,0.2);
  color: #7289da; padding: 8px 14px;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600;
  text-decoration: none; transition: background 0.15s;
}
.footer-discord:hover { background: rgba(88,101,242,0.2); }

.footer-links-col h4 {
  font-size: 0.75rem; font-weight: 700;
  color: var(--text); text-transform: uppercase;
  letter-spacing: 0.8px; margin-bottom: 14px;
}
.footer-links-col a {
  display: block; color: var(--text3);
  font-size: 0.85rem; text-decoration: none;
  margin-bottom: 10px; transition: color 0.15s;
}
.footer-links-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p { color: var(--text3); font-size: 0.8rem; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); padding: 4px 10px;
  border-radius: 6px; font-size: 0.75rem; font-weight: 500;
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand-col { grid-column: 1 / -1; }
}

/* ===== FORM STATUS ===== */
.form-status {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 4px;
}
.form-status.success {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  color: var(--green);
}
.form-status.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
}

/* ===== TOAST ===== */
.swex-toast {
  position: fixed;
  top: 80px;
  right: 20px;
  max-width: 280px;
  z-index: 99999;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .programs-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-card-main { max-width: 280px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero-content h1 { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ===== CANVAS PARTİKÜL ===== */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ===== Z-INDEX FIX ===== */
.navbar, .hero, .trust, .programs, .about, .contact, .footer {
  position: relative;
  z-index: 2;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ANIMASYONLARI ===== */
.hero-content {
  animation: heroFadeIn 1s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge { animation: heroFadeIn 0.8s 0.1s cubic-bezier(0.16,1,0.3,1) both; }
.hero-content h1 { animation: heroFadeIn 0.8s 0.2s cubic-bezier(0.16,1,0.3,1) both; }
.hero-content > p { animation: heroFadeIn 0.8s 0.3s cubic-bezier(0.16,1,0.3,1) both; }
.hero-actions { animation: heroFadeIn 0.8s 0.4s cubic-bezier(0.16,1,0.3,1) both; }
.hero-stats { animation: heroFadeIn 0.8s 0.5s cubic-bezier(0.16,1,0.3,1) both; }

/* ===== KART HOVER GLOW ===== */
.program-card {
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.program-card:hover {
  transform: translateY(-6px) scale(1.01);
}
.trust-card {
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99,102,241,0.1);
}

/* ===== BUTON SHINE EFEKTİ ===== */
.btn-primary, .btn-download, .btn-discord {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-download::after, .btn-discord::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s;
}
.btn-primary:hover::after, .btn-download:hover::after, .btn-discord:hover::after {
  left: 150%;
}

/* ===== LOGO PULSE — artık CSS animasyonu ile ===== */
.logo-mark svg {
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-2px); }
}

/* ===== CLICK RIPPLE ===== */
.ripple {
  position: fixed;
  border-radius: 50%;
  background: rgba(129,140,248,0.25);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
  z-index: 9999;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ===== GRADIENT TEXT ANİMASYON ===== */
.gradient-text {
  background-size: 200% auto;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===== FEATURED KART GLOW ===== */
.program-card.featured {
  box-shadow: 0 0 40px rgba(99,102,241,0.08);
  animation: featuredPulse 3s ease-in-out infinite;
}
@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(99,102,241,0.08); }
  50%       { box-shadow: 0 0 60px rgba(99,102,241,0.18); }
}

/* ===== STAT SAYAÇ ANİMASYON ===== */
.stat strong, .stat-mini strong {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.stat strong.bump, .stat-mini strong.bump {
  transform: scale(1.3);
}

/* ===== UPDATE BANNER ===== */
.update-banner {
  background: linear-gradient(90deg, rgba(99,102,241,0.15), rgba(244,114,182,0.1));
  border-bottom: 1px solid rgba(99,102,241,0.2);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 101;
}
.update-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text2);
}
.update-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.update-banner-inner strong { color: var(--text); }
.update-link {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  transition: color 0.15s;
}
.update-link:hover { color: #fff; }
.update-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--text3);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.update-close:hover { color: var(--text); background: rgba(255,255,255,0.06); }

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.theme-toggle:hover { background: rgba(255,255,255,0.1); color: var(--text); }

/* ===== LIGHT MODE ===== */
body.light {
  --bg: #f5f5f7;
  --bg2: #ffffff;
  --bg3: #f0f0f5;
  --bg4: #e5e5ea;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.16);
  --text: #1d1d1f;
  --text2: #6e6e73;
  --text3: #aeaeb2;
}
body.light .btn-primary { background: #1d1d1f; color: #fff; }
body.light .btn-primary:hover { background: #3a3a3c; }
body.light .btn-download { background: #1d1d1f; color: #fff; }
body.light #particles-canvas { opacity: 0.15; }

/* ===== REVIEWS ===== */
.reviews {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.review-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card > p { color: var(--text2); font-size: 0.875rem; line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.875rem; font-weight: 700; }
.review-author span { font-size: 0.75rem; color: var(--text3); }

/* ===== CHANGELOG ===== */
.changelog {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
}
.changelog-inner { max-width: 760px; margin: 0 auto; }
.changelog-list { display: flex; flex-direction: column; gap: 0; }
.changelog-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.changelog-item:last-child { border-bottom: none; }
.changelog-item::before {
  content: '';
  position: absolute;
  left: 148px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.changelog-item::after {
  content: '';
  position: absolute;
  left: 143px;
  top: 32px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg2);
}
.changelog-version { padding-top: 4px; }
.version-tag {
  display: inline-block;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  color: var(--accent2);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.version-tag.latest {
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.2);
  color: var(--green);
}
.version-date { display: block; font-size: 0.75rem; color: var(--text3); }
.changelog-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.changelog-content ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.changelog-content li { font-size: 0.85rem; color: var(--text2); padding-left: 14px; position: relative; }
.changelog-content li::before { content: '—'; position: absolute; left: 0; color: var(--text3); }

/* ===== FAQ ===== */
.faq {
  padding: 100px 24px;
}
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-arrow { flex-shrink: 0; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); color: var(--text3); }
.faq-question.open .faq-arrow { transform: rotate(180deg); color: var(--accent2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-answer.open { max-height: 200px; }
.faq-answer p { padding: 0 20px 18px; color: var(--text2); font-size: 0.875rem; line-height: 1.7; }

@media (max-width: 640px) {
  .changelog-item { grid-template-columns: 1fr; gap: 8px; }
  .changelog-item::before, .changelog-item::after { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== YORUM FORMU ===== */
.review-form-wrap {
  max-width: 600px;
  margin: 0 auto 48px;
}
.review-login-prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  color: var(--text2);
  font-size: 0.9rem;
}
.review-login-prompt a { color: var(--accent2); text-decoration: none; font-weight: 600; }
.review-login-prompt a:hover { color: #fff; }
.review-login-prompt svg { flex-shrink: 0; color: var(--text3); }

.review-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}
.review-form-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #a855f7);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: #fff;
}

.star-picker {
  display: flex;
  gap: 4px;
}
.star-picker span {
  font-size: 1.6rem;
  color: var(--bg4);
  cursor: pointer;
  transition: color 0.1s, transform 0.1s;
  line-height: 1;
}
.star-picker span.active,
.star-picker span.hover { color: #fbbf24; }
.star-picker span:hover { transform: scale(1.2); }

.review-form textarea {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.15s;
}
.review-form textarea:focus { border-color: rgba(99,102,241,0.5); }
.review-form textarea::placeholder { color: var(--text3); }
.review-form .btn-primary { align-self: flex-start; }

.review-status {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.review-status.success {
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.2);
  color: var(--green);
}
.review-status.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
}

/* ===== GİRİŞ GEREKLİ OVERLAY ===== */
.download-locked {
  position: relative;
}
.download-locked .btn-download {
  pointer-events: none;
  opacity: 0.5;
}
.lock-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  z-index: 10;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 16px;
}
.lock-overlay p { font-size: 0.85rem; color: var(--text2); }
.lock-overlay a {
  background: var(--text);
  color: #000;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.15s;
}
.lock-overlay a:hover { background: #e5e5e7; }

/* ===== GELİŞMİŞ BİLDİRİM SİSTEMİ ===== */
.notif-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.notif {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(15,15,20,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 300px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: all;
  animation: notifIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.notif::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.notif.success::before { background: linear-gradient(90deg, #34d399, #059669); }
.notif.download::before { background: linear-gradient(90deg, #818cf8, #f472b6); }
.notif.warning::before { background: linear-gradient(90deg, #fbbf24, #f59e0b); }
.notif.error::before { background: linear-gradient(90deg, #f87171, #ef4444); }
.notif.info::before { background: linear-gradient(90deg, #60a5fa, #3b82f6); }

@keyframes notifIn {
  from { transform: translateX(120%) scale(0.8); opacity: 0; }
  to   { transform: translateX(0) scale(1); opacity: 1; }
}
@keyframes notifOut {
  to { transform: translateX(120%) scale(0.9); opacity: 0; }
}

.notif-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.notif.success .notif-icon { background: rgba(52,211,153,0.15); }
.notif.download .notif-icon { background: rgba(129,140,248,0.15); }
.notif.warning .notif-icon { background: rgba(251,191,36,0.15); }
.notif.error .notif-icon { background: rgba(248,113,113,0.15); }
.notif.info .notif-icon { background: rgba(96,165,250,0.15); }

.notif-body { flex: 1; }
.notif-title { font-size: 0.875rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.notif-msg { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

.notif-close {
  background: none; border: none; color: rgba(255,255,255,0.3);
  cursor: pointer; font-size: 0.8rem; padding: 2px 4px;
  transition: color 0.15s; flex-shrink: 0;
}
.notif-close:hover { color: #fff; }

.notif-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: rgba(255,255,255,0.15);
  animation: notifProgress linear forwards;
}
@keyframes notifProgress {
  from { width: 100%; }
  to   { width: 0%; }
}

/* ===== İNDİRME OVERLAY ===== */
.download-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.download-modal {
  background: var(--bg3);
  border: 1px solid rgba(129,140,248,0.3);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 0 80px rgba(99,102,241,0.2), 0 32px 64px rgba(0,0,0,0.5);
  animation: modalIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { transform: scale(0.7) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

.dl-icon-wrap {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(244,114,182,0.2));
  border: 1px solid rgba(129,140,248,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.dl-icon-wrap svg { animation: dlIconBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.2s both; }
@keyframes dlIconBounce {
  from { transform: scale(0) rotate(-20deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.dl-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #818cf8;
  border-right-color: #f472b6;
  animation: spin 1.5s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.download-modal h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.download-modal p { color: var(--text2); font-size: 0.875rem; margin-bottom: 24px; }

.dl-progress-bar {
  background: var(--bg4);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 10px;
}
.dl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #818cf8, #f472b6);
  border-radius: 50px;
  width: 0%;
  transition: width 0.1s linear;
}
.dl-percent { font-size: 0.8rem; color: var(--text3); margin-bottom: 20px; }
.dl-close {
  background: none; border: 1px solid var(--border);
  color: var(--text2); padding: 8px 20px;
  border-radius: 8px; font-family: inherit;
  font-size: 0.8rem; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  display: none;
}
.dl-close:hover { border-color: var(--border-hover); color: var(--text); }

/* ===== WATCHDOG BANNER ===== */
.watchdog-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10001;
  background: linear-gradient(90deg, rgba(251,191,36,0.95), rgba(245,158,11,0.95));
  color: #000;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
.watchdog-banner svg { flex-shrink: 0; }
.watchdog-close {
  position: absolute; right: 16px;
  background: rgba(0,0,0,0.15); border: none;
  border-radius: 6px; padding: 4px 8px;
  cursor: pointer; font-size: 0.8rem; color: #000;
}

/* ===== CONFETTI ===== */
.confetti-piece {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 10002;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ===== PROGRAM MOCKUP ===== */
.program-mockup {
  background: #0d0d12;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.mock-titlebar {
  background: #111118;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mock-dots .r { background: #ff5f57; }
.mock-dots .y { background: #febc2e; }
.mock-dots .g { background: #28c840; }
.mock-title {
  font-size: 0.7rem; font-weight: 600;
  color: rgba(255,255,255,0.4);
  margin-left: 4px; flex: 1;
}
.mock-badge-sm {
  font-size: 0.62rem; font-weight: 700;
  background: rgba(99,102,241,0.2);
  border: 1px solid rgba(99,102,241,0.3);
  color: #818cf8;
  padding: 2px 7px; border-radius: 4px;
}

.mock-body {
  display: flex;
  height: 160px;
}

.mock-sidebar-sm {
  width: 90px;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 5px;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  cursor: default;
  transition: background 0.15s;
}
.mock-nav-item.active {
  background: rgba(99,102,241,0.15);
  color: #818cf8;
}

.mock-content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

/* PC Optimizer stats */
.mock-stat-row {
  display: flex;
  gap: 6px;
}
.mock-stat-box {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 6px 7px;
}
.mock-stat-label { font-size: 0.55rem; color: rgba(255,255,255,0.3); margin-bottom: 2px; font-weight: 600; }
.mock-stat-val { font-size: 0.8rem; font-weight: 800; margin-bottom: 4px; }
.mock-stat-val.blue { color: #60a5fa; }
.mock-stat-val.purple { color: #a78bfa; }
.mock-stat-val.green { color: #34d399; }
.mock-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 2px; }
.mock-bar-fill.blue { background: #60a5fa; }
.mock-bar-fill.purple { background: #a78bfa; }
.mock-bar-fill.green { background: #34d399; }

.mock-action-row { display: flex; gap: 5px; }
.mock-action-btn {
  flex: 1; padding: 5px 8px;
  border-radius: 5px;
  font-size: 0.6rem; font-weight: 700;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.4);
}
.mock-action-btn.primary {
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(168,85,247,0.3));
  border-color: rgba(99,102,241,0.4);
  color: #a78bfa;
}

.mock-log { display: flex; flex-direction: column; gap: 3px; }
.mock-log-line {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.25);
  display: flex; align-items: center; gap: 4px;
}
.mock-log-line .ok { color: #34d399; }
.mock-log-line .wait { color: #fbbf24; }

/* Swex Optimizer */
.mock-big-btn {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2));
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 7px;
  padding: 8px;
  cursor: default;
}
.mock-big-btn-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  color: #a78bfa;
}

.mock-mini-stats { display: flex; gap: 5px; }
.mock-mini-stat {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 5px;
  padding: 5px 6px;
  text-align: center;
}
.mock-mini-label { font-size: 0.52rem; color: rgba(255,255,255,0.25); margin-bottom: 2px; }
.mock-mini-val { font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.7); }
.mock-mini-val.ok-text { color: #34d399; }

.mock-chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  padding: 0 2px;
}
.mock-chart-bar {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.mock-chart-bar.active {
  background: linear-gradient(to top, #6366f1, #a855f7);
}

/* ===== SHOWCASE ===== */
.showcase {
  padding: 0 24px 80px;
  position: relative; z-index: 2;
}
.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== DASHBOARD MOCK ===== */
.dashboard-mock {
  background: #080810;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(99,102,241,0.12), 0 32px 64px rgba(0,0,0,0.5);
}
.dash-titlebar {
  background: #0d0d18;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-logo {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 800;
  background: linear-gradient(90deg,#818cf8,#f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dash-dots { display: flex; gap: 5px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.1); }

.dash-body { display: flex; height: 280px; }

.dash-sidebar {
  width: 160px;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dash-user { display: flex; align-items: center; gap: 8px; }
.dash-avatar {
  width: 30px; height: 30px;
  background: linear-gradient(135deg,#6366f1,#a855f7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.dash-uname { font-size: 0.75rem; font-weight: 700; color: #fff; }
.dash-role { font-size: 0.6rem; color: #f472b6; font-weight: 600; }

.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-item {
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  cursor: default;
  transition: background 0.15s;
}
.dash-nav-item.active {
  background: rgba(99,102,241,0.15);
  color: #818cf8;
  font-weight: 600;
}

.dash-main {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.dash-cards { display: flex; gap: 8px; }
.dash-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
}
.dash-card.blue { border-color: rgba(96,165,250,0.15); }
.dash-card.purple { border-color: rgba(167,139,250,0.15); }
.dash-card.green { border-color: rgba(52,211,153,0.15); }
.dash-card-label { font-size: 0.58rem; color: rgba(255,255,255,0.3); margin-bottom: 3px; font-weight: 600; text-transform: uppercase; }
.dash-card-val { font-size: 1.1rem; font-weight: 900; color: #fff; margin-bottom: 2px; }
.dash-card-sub { font-size: 0.58rem; color: rgba(255,255,255,0.25); margin-bottom: 6px; }
.dash-mini-bar { height: 3px; background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden; }
.dash-mini-bar div { height: 100%; border-radius: 2px; }

.dash-chart-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px 12px;
  flex: 1;
}
.dash-chart-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.65rem; color: rgba(255,255,255,0.4); font-weight: 600;
}
.dash-chart-tabs { display: flex; gap: 4px; }
.dash-chart-tabs span {
  padding: 2px 7px; border-radius: 4px;
  font-size: 0.58rem; font-weight: 700;
  color: rgba(255,255,255,0.25);
  cursor: default;
}
.dash-chart-tabs span.active {
  background: rgba(99,102,241,0.2);
  color: #818cf8;
}
.dash-chart canvas { width: 100%; }

.dash-quick { display: flex; flex-direction: column; gap: 4px; }
.dash-quick-title { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.dash-quick-item { display: flex; align-items: center; gap: 6px; font-size: 0.62rem; color: rgba(255,255,255,0.3); }
.dash-check { font-size: 0.65rem; }
.dash-check.done { color: #34d399; }

/* ===== PERF SECTION ===== */
.perf-section { display: flex; flex-direction: column; gap: 12px; }

.perf-card {
  background: #080810;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px 22px;
}
.perf-card.wide { width: 100%; }
.perf-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.perf-card > p { color: var(--text3); font-size: 0.82rem; margin-bottom: 12px; }

.perf-legend { display: flex; gap: 16px; margin-bottom: 10px; }
.leg { font-size: 0.72rem; font-weight: 600; }
.leg.blue { color: #818cf8; }
.leg.red  { color: #f87171; }

.perf-chart-wrap { position: relative; }
.perf-chart-wrap canvas { width: 100%; }

.perf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ping-compare { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.ping-row { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; }
.ping-row span:first-child { width: 48px; color: var(--text3); font-weight: 600; }
.ping-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.ping-bar { height: 100%; border-radius: 3px; }
.ping-row.bad .ping-bar { background: #f87171; }
.ping-row.good .ping-bar { background: #34d399; }
.ping-val { font-size: 0.72rem; font-weight: 700; width: 36px; text-align: right; }
.ping-row.bad .ping-val { color: #f87171; }
.ping-row.good .ping-val { color: #34d399; }

.perf-grade {
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, #34d399, #059669);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center; margin-top: 8px;
}

@media (max-width: 768px) {
  .dash-body { height: auto; flex-direction: column; }
  .dash-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .perf-row { grid-template-columns: 1fr; }
}

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: #000;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(129,140,248,0.15), rgba(244,114,182,0.15));
  border: 1px solid rgba(129,140,248,0.3);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  animation: loaderPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(99,102,241,0.3);
}
@keyframes loaderPulse {
  0%,100% { box-shadow: 0 0 20px rgba(99,102,241,0.2); }
  50%      { box-shadow: 0 0 50px rgba(99,102,241,0.5); }
}
.loader-text {
  font-size: 1.2rem; font-weight: 800;
  background: linear-gradient(90deg,#818cf8,#f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
  margin: 0 auto 8px;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg,#818cf8,#f472b6);
  width: 0%;
  border-radius: 2px;
  animation: loaderAuto 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderAuto {
  0%   { width: 0%; }
  60%  { width: 75%; }
  85%  { width: 90%; }
  100% { width: 100%; }
}
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}
.loader-pct { font-size: 0.75rem; color: #52525b; font-weight: 600; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, #818cf8, #f472b6);
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(129,140,248,0.6);
}

/* ===== FLOATING BUTONLAR ===== */
.floating-btns {
  position: fixed;
  right: 20px; bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 500;
}
.float-btn {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.12) translateY(-2px); }
.float-btn.discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 4px 20px rgba(88,101,242,0.4);
}
.float-btn.discord:hover { box-shadow: 0 8px 28px rgba(88,101,242,0.6); }
.float-btn.totop {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.float-btn.totop.show { opacity: 1; pointer-events: all; }
.float-btn.totop:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ===== KARŞILAŞTIRMA TABLOSU ===== */
.compare {
  padding: 80px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-inner { max-width: 800px; margin: 0 auto; }

.compare-table {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg4);
  border-bottom: 1px solid var(--border);
}
.compare-feature-col {
  padding: 16px 20px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px;
}
.compare-prog-col {
  padding: 16px 20px;
  text-align: center;
  border-left: 1px solid var(--border);
}
.compare-prog-col.featured-col {
  background: rgba(99,102,241,0.06);
  border-left-color: rgba(99,102,241,0.2);
  position: relative;
}
.compare-best {
  font-size: 0.65rem; font-weight: 700;
  color: #fbbf24; margin-bottom: 4px;
}
.compare-prog-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.compare-prog-sub  { font-size: 0.7rem; color: var(--text3); margin-top: 2px; }

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.compare-row:last-of-type { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,0.02); }

.compare-feature {
  padding: 13px 20px;
  font-size: 0.85rem; color: var(--text2); font-weight: 500;
  display: flex; align-items: center;
}
.compare-val {
  padding: 13px 20px;
  text-align: center;
  border-left: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.compare-val.featured-col {
  background: rgba(99,102,241,0.04);
  border-left-color: rgba(99,102,241,0.15);
}
.yes     { color: #34d399; font-weight: 700; font-size: 1rem; }
.no      { color: var(--text3); font-size: 1.1rem; }
.neutral { color: var(--text2); font-weight: 600; font-size: 0.82rem; }

.compare-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 0;
  background: var(--bg4);
  border-top: 1px solid var(--border);
}
.compare-dl-btn {
  display: inline-block;
  padding: 9px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text2);
  font-size: 0.82rem; font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.compare-dl-btn:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.compare-dl-btn.featured {
  background: linear-gradient(135deg, var(--accent), #a855f7);
  border-color: transparent; color: #fff;
}
.compare-dl-btn.featured:hover { opacity: 0.88; }

/* ===== DUYURU BANNER ===== */
.announce-banner {
  background: linear-gradient(90deg, rgba(251,191,36,0.12), rgba(245,158,11,0.08));
  border-bottom: 1px solid rgba(251,191,36,0.2);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 102;
}
.announce-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: #fbbf24; font-weight: 600;
}
.announce-close {
  position: absolute; right: 16px;
  background: none; border: none;
  color: rgba(251,191,36,0.5); cursor: pointer; font-size: 0.8rem;
  transition: color 0.15s;
}
.announce-close:hover { color: #fbbf24; }

/* ===== SİSTEM GEREKSİNİMLERİ ===== */
.sysreq {
  padding: 80px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sysreq-inner { max-width: 900px; margin: 0 auto; }
.sysreq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.sysreq-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.sysreq-card:hover {
  border-color: rgba(129,140,248,0.3);
  transform: translateY(-2px);
}
.sysreq-icon { font-size: 1.8rem; margin-bottom: 10px; }
.sysreq-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 8px; }
.sysreq-card p { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }
.sysreq-card p span { font-size: 0.75rem; color: var(--text3); }

@media (max-width: 768px) { .sysreq-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sysreq-grid { grid-template-columns: 1fr 1fr; } }

/* ===== USER MENU ===== */
.user-menu-item {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.user-menu-item:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* ===== DİL TOGGLE ===== */
.lang-toggle {
  width: 40px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text2);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  letter-spacing: 0.5px;
}
.lang-toggle:hover {
  background: rgba(129,140,248,0.15);
  border-color: rgba(129,140,248,0.3);
  color: #818cf8;
}

/* ===== CUSTOM CURSOR ===== */
* { cursor: none !important; }

.cursor-dot {
  position: fixed;
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
}

.cursor-ring {
  position: fixed;
  width: 28px; height: 28px;
  border: 1.5px solid rgba(129,140,248,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, transform 0.08s;
}

/* Hover durumu */
.cursor-dot.hover {
  width: 8px; height: 8px;
  background: #818cf8;
  box-shadow: 0 0 12px rgba(129,140,248,0.9);
}
.cursor-ring.hover {
  width: 36px; height: 36px;
  border-color: rgba(129,140,248,0.9);
}

/* Tıklama durumu */
.cursor-dot.click {
  width: 4px; height: 4px;
  background: #f472b6;
  box-shadow: 0 0 10px rgba(244,114,182,0.9);
}
.cursor-ring.click {
  width: 20px; height: 20px;
  border-color: rgba(244,114,182,0.8);
}

/* ===== NASIL ÇALIŞIR ===== */
.howto {
  padding: 80px 24px;
  position: relative; z-index: 2;
}
.howto-inner { max-width: 1000px; margin: 0 auto; }
.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.howto-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}
.howto-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent2);
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.howto-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  animation: iconFloat 3s ease-in-out infinite;
}
.howto-step:nth-child(2) .howto-icon { animation-delay: 0.5s; }
.howto-step:nth-child(3) .howto-icon { animation-delay: 1s; }
.howto-step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.howto-step p {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}
.howto-connector {
  position: absolute;
  top: 52px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(129,140,248,0.4), rgba(244,114,182,0.4));
  z-index: 1;
}
.howto-step:last-child .howto-connector { display: none; }

@media (max-width: 768px) {
  .howto-steps { grid-template-columns: 1fr; gap: 8px; }
  .howto-connector { display: none; }
}

/* ===== MOBİL MENÜ ===== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  animation: slideDown 0.25s ease;
}
.mobile-nav.show { display: flex; }
.mobile-nav a {
  color: var(--text2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* ===== PROGRAM KART HOVER ÖNİZLEME ===== */
.program-card {
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}

.preview-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.92) translateY(8px);
  width: 320px;
  background: #0d0d18;
  border: 1px solid rgba(129,140,248,0.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(99,102,241,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 100;
}

.program-card:hover .preview-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1) translateY(0);
}

/* İndirme butonuna hover'da tooltip ÇIKMASIN */
.program-card .program-footer:hover ~ .preview-tooltip,
.program-card .program-footer button:hover ~ .preview-tooltip,
.program-footer:hover .preview-tooltip {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Mobilde hiç gösterme */
@media (max-width: 768px) {
  .preview-tooltip { display: none !important; }
}

.preview-bar {
  background: #111120;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.preview-bar-dot { width: 8px; height: 8px; border-radius: 50%; }
.preview-bar-dot.r { background: #ff5f57; }
.preview-bar-dot.y { background: #febc2e; }
.preview-bar-dot.g { background: #28c840; }
.preview-bar-title { font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-left: 6px; font-weight: 500; }

.preview-body { padding: 14px; }

.preview-stat-row { display: flex; gap: 8px; margin-bottom: 10px; }
.preview-stat {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px 10px;
}
.preview-stat-label { font-size: 0.55rem; color: rgba(255,255,255,0.3); font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.preview-stat-val { font-size: 0.9rem; font-weight: 800; }
.preview-stat-val.blue { color: #60a5fa; }
.preview-stat-val.purple { color: #a78bfa; }
.preview-stat-val.green { color: #34d399; }

.preview-chart {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 56px;
  margin-bottom: 10px;
}
.preview-bar-item {
  flex: 1;
  border-radius: 3px;
  background: rgba(129,140,248,0.2);
  transition: height 0.3s;
}
.preview-bar-item.active { background: linear-gradient(to top, #6366f1, #a855f7); }

.preview-btn {
  width: 100%;
  padding: 8px;
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(168,85,247,0.3));
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 7px;
  color: #a78bfa;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

/* Arrow */
.preview-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #0d0d18;
  border-right: 1px solid rgba(129,140,248,0.3);
  border-bottom: 1px solid rgba(129,140,248,0.3);
}

/* ===== MOCKUP ANİMASYONLARI ===== */

/* Bar dolma animasyonu */
@keyframes barFill {
  from { width: 0%; }
}
.mock-bar-fill {
  animation: barFill 1.2s cubic-bezier(0.34,1.56,0.64,1) both;
}
.mock-bar-fill.blue  { animation-delay: 0.2s; }
.mock-bar-fill.purple{ animation-delay: 0.4s; }
.mock-bar-fill.green { animation-delay: 0.6s; }

/* Sayı pulse */
@keyframes numPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.6; transform:scale(0.95); }
}
.mock-stat-val { animation: numPulse 2.5s ease-in-out infinite; }
.mock-stat-val.blue   { animation-delay: 0s; }
.mock-stat-val.purple { animation-delay: 0.8s; }
.mock-stat-val.green  { animation-delay: 1.6s; }

/* Log satırları yazılma */
@keyframes logAppear {
  from { opacity:0; transform:translateX(-8px); }
  to   { opacity:1; transform:translateX(0); }
}
.mock-log-line:nth-child(1) { animation: logAppear 0.4s 0.8s both; }
.mock-log-line:nth-child(2) { animation: logAppear 0.4s 1.4s both; }
.mock-log-line:nth-child(3) { animation: logAppear 0.4s 2.0s both; }

/* Büyük buton shine */
@keyframes btnShine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.mock-big-btn-inner {
  background: linear-gradient(90deg,
    rgba(99,102,241,0) 0%,
    rgba(129,140,248,0.3) 50%,
    rgba(99,102,241,0) 100%);
  background-size: 200% auto;
  animation: btnShine 2.5s linear infinite;
  border-radius: 6px;
  padding: 2px;
}

/* Mini stat sayaçları */
@keyframes countUp {
  from { opacity:0; transform:translateY(6px); }
  to   { opacity:1; transform:translateY(0); }
}
.mock-mini-val { animation: countUp 0.5s cubic-bezier(0.34,1.56,0.64,1) both; }
.mock-mini-stat:nth-child(1) .mock-mini-val { animation-delay: 0.3s; }
.mock-mini-stat:nth-child(2) .mock-mini-val { animation-delay: 0.5s; }
.mock-mini-stat:nth-child(3) .mock-mini-val { animation-delay: 0.7s; }

/* Chart bar büyüme */
@keyframes chartGrow {
  from { height: 0% !important; }
}
.mock-chart-bar { animation: chartGrow 0.8s cubic-bezier(0.34,1.56,0.64,1) both; }
.mock-chart-bar:nth-child(1) { animation-delay: 0.1s; }
.mock-chart-bar:nth-child(2) { animation-delay: 0.2s; }
.mock-chart-bar:nth-child(3) { animation-delay: 0.3s; }
.mock-chart-bar:nth-child(4) { animation-delay: 0.4s; }
.mock-chart-bar:nth-child(5) { animation-delay: 0.5s; }
.mock-chart-bar:nth-child(6) { animation-delay: 0.6s; }
.mock-chart-bar:nth-child(7) { animation-delay: 0.7s; }

/* Nav item slide */
@keyframes navSlide {
  from { opacity:0; transform:translateX(-10px); }
  to   { opacity:1; transform:translateX(0); }
}
.mock-nav-item { animation: navSlide 0.3s both; }
.mock-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mock-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mock-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mock-nav-item:nth-child(4) { animation-delay: 0.4s; }

/* Mockup glow pulse */
@keyframes mockGlow {
  0%,100% { box-shadow: 0 0 20px rgba(99,102,241,0.1), 0 8px 32px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 0 40px rgba(99,102,241,0.2), 0 8px 32px rgba(0,0,0,0.4); }
}
.program-mockup { animation: mockGlow 3s ease-in-out infinite; }

/* Aktif dot yanıp sönme */
@keyframes activeDot {
  0%,100% { opacity:1; box-shadow: 0 0 6px #34d399; }
  50%      { opacity:0.4; box-shadow: 0 0 2px #34d399; }
}
.mock-stat-val.green { animation: activeDot 1.5s ease-in-out infinite !important; }

/* Optimize Et butonu */
@keyframes optimizeBtn {
  0%,100% { box-shadow: 0 0 0 rgba(99,102,241,0); }
  50%      { box-shadow: 0 0 16px rgba(99,102,241,0.4); }
}
.mock-action-btn.primary { animation: optimizeBtn 2s ease-in-out infinite; }

/* Waiting dot spin */
@keyframes waitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.mock-log-line .wait { display: inline-block; animation: waitSpin 1s linear infinite; }

/* ===== YENİ İNDİR BUTONU ===== */
.btn-dl-new {
  all: unset;
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #050508 !important;
  color: #818cf8 !important;
  padding: 13px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(99,102,241,0.35) !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
}
.btn-dl-new:hover {
  color: #c4b5fd !important;
  border-color: rgba(129,140,248,0.8) !important;
  box-shadow: 0 0 24px rgba(99,102,241,0.3), 0 0 8px rgba(99,102,241,0.15) inset !important;
  transform: translateY(-2px) !important;
  background: #0a0a14 !important;
}
.btn-dl-new:active {
  transform: scale(0.97) !important;
}

.btn-dl-featured {
  border-color: rgba(129,140,248,0.5) !important;
  box-shadow: 0 0 16px rgba(99,102,241,0.15) !important;
}
.btn-dl-featured:hover {
  box-shadow: 0 0 36px rgba(99,102,241,0.45), 0 0 12px rgba(99,102,241,0.2) inset !important;
}

/* ===== SKELETON LOADER ===== */
@keyframes skeleton {
  0%,100% { opacity:1; }
  50%      { opacity:0.4; }
}

/* ===== NAVBAR SCROLL GİZLEME ===== */
.navbar {
  transition: transform 0.3s ease, background 0.2s;
}

/* ===== SCROLL TO TOP DAHA BELİRGİN ===== */
.float-btn.totop {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.float-btn.totop.show {
  animation: bounce 2s ease-in-out infinite, fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  backdrop-filter: blur(20px);
  animation: slideIn 0.3s ease;
  max-width: 350px;
}

.notification.info {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.1);
}

.notification-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  color: #f5f5f7;
  font-size: 14px;
  margin-bottom: 4px;
}

.notification-message {
  color: #a1a1aa;
  font-size: 13px;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  color: #71717a;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== ARAMA OVERLAY ===== */
#search-overlay {
  transition: opacity 0.2s ease;
}
#search-overlay.show {
  display: flex !important;
}
#search-input:focus {
  border-color: rgba(129,140,248,0.5) !important;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.search-result-item:hover {
  background: rgba(99,102,241,0.1);
  border-color: rgba(129,140,248,0.3);
}
.search-result-icon {
  font-size: 1.2rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}
.search-result-title {
  color: #f5f5f7;
  font-weight: 600;
  font-size: 0.88rem;
}
.search-result-sub {
  color: #71717a;
  font-size: 0.75rem;
  margin-top: 2px;
}
.search-result-tag {
  margin-left: auto;
  padding: 3px 8px;
  background: rgba(99,102,241,0.1);
  border-radius: 4px;
  color: #818cf8;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== SCROLL REVEAL GELİŞMİŞ ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== SECTION SEPARATOR ===== */
.section-glow-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), rgba(168,85,247,0.3), transparent);
  margin: 0 auto;
}

/* ===== NAV SEARCH BTN ===== */
#search-btn {
  display: inline-flex;
}
@media (max-width: 640px) {
  #search-btn { display: none; }
}

/* ===== POPULAR BADGE ===== */
.popular-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, rgba(251,146,60,0.2), rgba(239,68,68,0.2));
  border: 1px solid rgba(251,146,60,0.4);
  color: #fb923c;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
  animation: popularPulse 2s ease-in-out infinite;
}
@keyframes popularPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,146,60,0); }
  50% { box-shadow: 0 0 12px 2px rgba(251,146,60,0.25); }
}

/* ===== CURSOR TRAIL ===== */
.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99990;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
}

/* ===== SECTION COLOR TRANSITION ===== */
body.in-trust    { --section-bg: rgba(99,102,241,0.03); }
body.in-programs { --section-bg: rgba(129,140,248,0.04); }
body.in-reviews  { --section-bg: rgba(244,114,182,0.03); }

/* ===== KEYBOARD SHORTCUTS ===== */
#shortcuts-modal.show {
  display: flex !important;
}

/* ===== KARŞILAŞTIRMA MODAL ===== */
#compare-modal.show {
  display: flex !important;
}
.cmp-row {
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.cmp-row.yes {
  background: rgba(52,211,153,0.07);
  color: #34d399;
}
.cmp-row.no {
  background: rgba(255,255,255,0.03);
  color: #3f3f46;
}

/* ===== SUCCESS POPUP ===== */
#success-popup.show {
  display: block !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* ===== ONBOARDING ===== */
#onboarding-overlay.show {
  display: block !important;
}

/* ===== ANİMASYONLU LOGO ===== */
.logo-mark {
  position: relative;
}
.logo-mark svg {
  animation: logoFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(129,140,248,0.6));
  transition: filter 0.3s;
}
.logo:hover .logo-mark svg {
  filter: drop-shadow(0 0 16px rgba(244,114,182,0.8));
  animation: logoSpin 0.5s ease;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}
@keyframes logoSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ===== NAVBAR GLOW EFEKTİ ===== */
.navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(99,102,241,0.15);
}

/* ===== BUTON PULSE EFEKTİ ===== */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6366f1, #a855f7, #f472b6, #6366f1);
  background-size: 300% 300%;
  border-radius: inherit;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before {
  opacity: 1;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== HERO BADGE PULSE ===== */
.badge-dot {
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
