@font-face {
  font-family: 'Nunito';
  src: url('fonts/Nunito-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Nunito';
  src: url('fonts/Nunito-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Nunito';
  src: url('fonts/Nunito-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}
/* ── CSS DEĞİŞKENLERİ ─────────────────────────── */
:root {
  --bg:          #EEF0FF;
  --bg2:         #E0E3FF;
  --bg-card:     rgba(255,255,255,0.8);
  --text:        #1E1B4B;
  --text-muted:  #4338CA;
  --text-light:  #6366F1;
  --border:      rgba(99,102,241,0.2);
  --navbar-bg:   rgba(238,240,255,0.92);
  --orange:      #F5A623;
  --indigo:      #4F46E5;
  --shadow:      0 4px 24px rgba(99,102,241,0.12);
}

[data-theme="dark"] {
  --bg:          #1E1B4B;
  --bg2:         #13113A;
  --bg-card:     rgba(255,255,255,0.05);
  --text:        #EEF2FF;
  --text-muted:  #A5B4FC;
  --text-light:  #818CF8;
  --border:      rgba(129,140,248,0.15);
  --navbar-bg:   rgba(30,27,75,0.95);
  --shadow:      0 4px 24px rgba(0,0,0,0.3);
}

/* ── RESET ────────────────────────────────────── */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background .3s, color .3s;
}
h1,h2,h3,h4 { font-family: 'Nunito', sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ── NAVBAR ───────────────────────────────────── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px; height: 110px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 52px; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: var(--text-light); font-size: 15px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-right {
  display: flex; align-items: center; gap: 10px;
}
.btn-currency, .btn-theme {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 14px;
  color: var(--orange); font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.btn-theme { color: var(--text); font-size: 16px; padding: 7px 12px; }
.lang-switcher {
  display: flex; gap: 4px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 4px;
}
.lang-switcher a {
  padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  transition: all .2s;
}
.lang-switcher a.active, .lang-switcher a:hover {
  background: var(--indigo); color: #fff;
}
.btn-nav {
  background: linear-gradient(135deg, #F5A623, #E8941A);
  color: #000 !important; font-weight: 700; font-size: 14px;
  padding: 9px 20px; border-radius: 8px;
}
.btn-nav-ghost {
  color: var(--text-muted) !important; font-size: 14px;
  font-weight: 500; padding: 9px 14px;
}
/* ── HAMBURGEr BUTONU ─────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  transition: background .2s;
}
.hamburger:hover { background: var(--bg2); }
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBİL DRAWER ─────────────────────────────── */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--navbar-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(99,102,241,0.15);
  padding: 12px 24px 20px;
  z-index: 99;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
/* masaüstünde .open bile olsa gizli */
@media (min-width: 769px) {
  .mobile-drawer,
  .mobile-drawer.open { display: none !important; }
}

/* mobilede .open ile görünür */
@media (max-width: 768px) {
  .mobile-drawer.open {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-drawer-extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.mobile-drawer-links {
  list-style: none;
  margin: 0 0 12px; padding: 0;
}
.mobile-drawer-links li a {
  display: block;
  padding: 14px 0;
  font-size: 16px; font-weight: 500;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.mobile-drawer-links li:last-child a { border-bottom: none; }
.mobile-drawer-links li a:hover,
.mobile-drawer-links li a.active { color: var(--text); }
.mobile-drawer-actions {
  display: flex; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.mobile-btn-ghost {
  flex: 1; text-align: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  transition: background .15s;
}
.mobile-btn-ghost:hover { background: var(--bg2); }
.mobile-btn-cta {
  flex: 1; text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #F5A623, #E8941A);
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  color: #000;
  transition: opacity .15s;
}
.mobile-btn-cta:hover { opacity: .88; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 140px 24px 100px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px);
}
.hero-orb-1 { width:500px; height:500px; background:rgba(99,102,241,0.15); top:10%; left:5%; }
.hero-orb-2 { width:400px; height:400px; background:rgba(245,166,35,0.1);  bottom:10%; right:5%; }
.hero-orb-3 { width:600px; height:600px; background:rgba(129,140,248,0.08); top:40%; left:30%; }
.hero-content { max-width: 800px; position: relative; z-index:1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3);
  border-radius: 20px; padding: 8px 20px; margin-bottom: 28px;
  color: var(--indigo); font-size: 14px; font-weight: 600;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.1;
  color: var(--text); margin-bottom: 20px;
}
.hero h1 span {
  background: linear-gradient(90deg, #F5A623, #818CF8, #00BCD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  color: var(--text-light); font-size: 19px;
  line-height: 1.8; margin-bottom: 44px;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 64px;
}
.btn-primary {
  background: linear-gradient(135deg, #F5A623, #E8941A);
  color: #000; font-weight: 700; font-size: 16px;
  padding: 15px 36px; border-radius: 10px;
  box-shadow: 0 8px 28px rgba(245,166,35,0.25);
  transition: all .2s; display: inline-block;
}
.btn-primary:hover { opacity:.9; transform:translateY(-2px); }
.btn-outline {
  border: 1px solid var(--border); color: var(--text);
  font-weight: 500; font-size: 16px;
  padding: 15px 36px; border-radius: 10px;
  background: var(--bg-card); transition: all .2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--bg2); }
.hero-stats {
  display: flex; gap: 48px;
  justify-content: center; flex-wrap: wrap;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800; color: var(--orange);
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── BÖLÜM BAŞLIĞI ────────────────────────────── */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg2); }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800; color: var(--text); margin-bottom: 12px;
}
.section-head p { color: var(--text-muted); font-size: 17px; }

/* ── ÜRÜN KARTLARI ────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card.popular { border-color: rgba(245,166,35,0.4); }
.badge-popular {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, #F5A623, #E8941A);
  color: #000; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}
.product-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.product-card h3 {
  font-size: 18px; font-weight: 700; color: var(--text);
}
.product-card p {
  color: var(--text-muted); font-size: 14px; line-height: 1.6;
}
.product-features { display: flex; flex-direction: column; gap: 7px; }
.product-features li {
  display: flex; align-items: center; gap: 8px;
  color: var(--text); font-size: 13px;
}
.product-price-row {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.price-label { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing:.5px; }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--orange);
}

/* ── AUTH FORMLAR ─────────────────────────────── */
.auth-page {
  min-height: 100vh; background: var(--bg);
  display: flex; align-items: center;
  justify-content: center; padding: 100px 24px 40px;
}
.auth-card {
  width: 100%; max-width: 460px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 36px;
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo img { height: 52px; object-fit: contain; }
.auth-title { font-size: 22px; font-weight: 700; color: var(--text); text-align: center; margin-bottom: 6px; }
.auth-sub { color: var(--text-muted); font-size: 14px; text-align: center; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; color: var(--text-muted);
  font-size: 13px; font-weight: 500; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 14px; color: var(--text); font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none; transition: border .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, #F5A623, #E8941A);
  color: #000; font-weight: 700; font-size: 15px;
  padding: 14px; border-radius: 10px; border: none;
  cursor: pointer; margin-top: 8px; transition: opacity .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-submit:hover { opacity: .9; }
.auth-footer {
  color: var(--text-muted); font-size: 14px;
  text-align: center; margin-top: 20px;
}
.auth-footer a { color: var(--orange); font-weight: 500; }
.alert {
  padding: 10px 14px; border-radius: 8px;
  font-size: 14px; margin-bottom: 16px;
}
.alert-error { background: rgba(239,68,68,.1); color: #F87171; border: 1px solid rgba(239,68,68,.2); }
.alert-success { background: rgba(34,197,94,.1); color: #4ADE80; border: 1px solid rgba(34,197,94,.2); }

/* ── DASHBOARD ────────────────────────────────── */
.dashboard-page { padding: 100px 24px 60px; min-height: 100vh; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin-bottom: 40px;
}
.dash-stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px;
}
.dash-stat-label { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing:.6px; margin-bottom: 6px; }
.dash-stat-val { font-family:'Syne',sans-serif; font-size:28px; font-weight:800; color:var(--orange); }
.purchase-row {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap; margin-bottom: 14px;
}
.purchase-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  flex-shrink: 0;
}
.purchase-info { flex: 1; min-width: 180px; }
.purchase-name { color: var(--text); font-size: 16px; font-weight: 600; }
.purchase-meta { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
.license-key {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; padding: 3px 10px;
  font-family: monospace; font-size: 11px; color: var(--text-muted);
  margin-top: 6px; display: inline-block;
}
.btn-download {
  background: linear-gradient(135deg, #F5A623, #E8941A);
  color: #000; font-weight: 700; font-size: 13px;
  padding: 9px 20px; border-radius: 8px;
}

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 24px 28px;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height:1.7; margin-bottom:16px; }
.footer-flags { display:flex; gap:10px; flex-wrap:wrap; }
.footer-flags span {
  background: rgba(99,102,241,0.1); border: 1px solid var(--border);
  border-radius: 4px; padding: 3px 10px;
  color: var(--text-light); font-size: 11px; font-weight: 600;
}
.footer-col h4 {
  color: var(--text); font-size: 13px; font-weight: 600;
  letter-spacing:.8px; text-transform:uppercase; margin-bottom:16px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size:14px; transition:color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px; text-align: center;
  color: var(--text-muted); font-size: 13px;
}

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  .nav-links  { display: none !important; }
  .nav-right  { display: none !important; }
  .hamburger  { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero-stats { gap: 28px; }
}


@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.1); }
}
@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-orb-1 { animation: pulse 6s ease-in-out infinite; }
.hero-orb-2 { animation: pulse 8s ease-in-out infinite 2s; }
.hero-orb-3 { animation: pulse 10s ease-in-out infinite 4s; }

.hero-badge  { animation: fadeUp .8s ease both; }
.hero h1     { animation: fadeUp 1s ease .2s both, shimmer 3s linear infinite; }
.hero p      { animation: fadeUp 1s ease .4s both; }
.hero-btns   { animation: fadeUp 1s ease .6s both; }
.hero-stats  { animation: fadeUp 1s ease .8s both; }

.hero-title {
  background: linear-gradient(90deg, #F5A623, #4CAF50, #00BCD4, #F5A623);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}

/* ── ÜRÜN CAROUSEL ─── */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.carousel-track {
  display: flex;
  gap: 24px;
  animation: slide 20s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.carousel-track {
  display: flex;
  gap: 24px;
  animation: slide 20s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s;
  transform-style: preserve-3d;
  will-change: transform;
}

.carousel-card:hover {
  transform: perspective(800px) rotateY(-8deg) rotateX(4deg) translateY(-12px) scale(1.04);
  box-shadow: 
    0 24px 60px rgba(99,102,241,0.25),
    0 8px 20px rgba(0,0,0,0.1),
    4px 0 20px rgba(245,166,35,0.15);
  border-color: rgba(99,102,241,0.4);
  z-index: 10;
}

.carousel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  z-index: 1;
}

.carousel-card:hover::before {
  opacity: 1;
}

.carousel-card-logo {
  width: 100%;
  height: 180px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-bottom: 1px solid var(--border);
}
.carousel-card-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carousel-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.carousel-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.carousel-card-body p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.product-price-row {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--orange);
}

/* ── 3D CAROUSEL ─────────────────────────────── */
#carousel-3d-scene {
  width: 100%;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  position: relative;
}
#carousel-3d-scene:active { cursor: grabbing; }

#carousel-3d-spin {
  position: relative;
  width: 200px;
  height: 260px;
  transform-style: preserve-3d;
  animation: carousel3d-spin 20s linear infinite;
}
#carousel-3d-spin:hover { animation-play-state: paused; }

#carousel-3d-spin img {
  position: absolute;
  width: 200px;
  height: 260px;        /* 400x520 oranıyla aynı */
  object-fit: contain;  /* logoyu kırpmaz */
  border-radius: 16px;
  background: white;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

#carousel-3d-ground {
  position: absolute;
  bottom: -80px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.15) 0%, transparent 70%);
  transform: rotateX(90deg);
  transform-style: preserve-3d;
  pointer-events: none;
}

@keyframes carousel3d-spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

/* ── SCREENSHOT SLIDER ── */
.ss-slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(99,102,241,0.15);
  border: 1px solid var(--border);
}
.ss-track {
  display: flex;
  transition: transform 0.5s ease;
}
.ss-slide {
  min-width: 100%;
  position: relative;
}
.ss-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  background: var(--bg2);
}
.ss-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 40px 24px 20px;
  font-size: 16px;
  font-weight: 600;
}
.ss-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 20px; cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.ss-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.ss-prev { left: 16px; }
.ss-next { right: 16px; }
.ss-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 16px;
  background: var(--bg-card);
}
.ss-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all .2s;
}
.ss-dot.active {
  background: var(--indigo);
  width: 24px;
  border-radius: 4px;
}
```

Son olarak `assets/screenshots/` klasörünü oluştur:
```
C:\xampp\htdocs\mambosoft\assets\screenshots\