/* ============================================================
   Bonusalem - Ana Stil Dosyası (tek dosya, inline CSS yok)
   Modern, sade, hızlı ve responsive arayüz
   ============================================================ */

/* ---------- 1. Tasarım Değişkenleri (CSS Custom Properties) ---------- */
:root {
  --bg: #0d1117;            /* koyu zemin */
  --bg-soft: #161b22;       /* kart zemini */
  --bg-soft-2: #1c2330;     /* ikincil kart zemini */
  --border: #2a3340;        /* ince kenarlık */
  --text: #e6edf3;          /* ana metin */
  --text-muted: #9aa7b4;    /* soluk metin */
  --primary: #f8534f;       /* mercan vurgu */
  --primary-2: #fbd6c9;     /* açık şeftali vurgu */
  --accent: #2ecc71;        /* yeşil (kazanç) */
  --danger: #ff4d4f;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 24px rgba(0, 0, 0, .35);
  --shadow-hover: 0 12px 32px rgba(248, 83, 79, .18);
  --max-width: 1200px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 2. Sıfırlama / Temel ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--primary-2);
}

ul {
  list-style: none;
}

/* Erişilebilirlik: klavye odak halkası */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Ekran okuyucular için gizli başlık */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. Yerleşim Yardımcıları ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 56px;
}

.section--tight {
  padding-block: 36px;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- 4. Başlık / Navigasyon ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
}

.nav__brand img {
  height: 38px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__menu a {
  color: var(--text);
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.nav__menu a:hover,
.nav__menu a[aria-current="page"] {
  color: var(--primary);
  background: var(--bg-soft);
}

.nav__toggle {
  display: none;
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* CSS ile çizilen hamburger (3 çizgi); açıkken X'e döner */
.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav__toggle-bar {
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-color .15s ease;
}

.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  left: 0;
  transition: transform .25s ease;
}

.nav__toggle-bar::before { top: -7px; }
.nav__toggle-bar::after  { top: 7px; }

.nav__toggle[aria-expanded="true"] .nav__toggle-bar {
  background: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar::before {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar::after {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes navDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 5. Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .98rem;
  padding: 12px 22px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #1a1205;
}

.btn--primary:hover {
  color: #1a1205;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--block {
  width: 100%;
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding-block: 64px 48px;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(248, 83, 79, .14), transparent 60%),
    radial-gradient(700px 380px at 0% 10%, rgba(251, 214, 201, .10), transparent 55%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 26px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--primary);
  line-height: 1.1;
}

.hero__stat span {
  font-size: .85rem;
  color: var(--text-muted);
}

.hero__art {
  display: flex;
  justify-content: center;
}

.hero__art img {
  width: min(360px, 80%);
  filter: drop-shadow(0 18px 40px rgba(248, 83, 79, .25));
}

/* ---------- 7. Genel Kart Izgarası ---------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid--brands {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.grid--bonus {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

/* ---------- 8. Marka Kartları ---------- */
.brand-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.brand-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
}

.brand-card__logo img {
  max-height: 56px;
  width: auto;
}

.brand-card h2,
.brand-card h3 {
  font-size: 1.2rem;
}

.brand-card p {
  color: var(--text-muted);
  font-size: .94rem;
  flex-grow: 1;
}

.brand-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: .74rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(248, 83, 79, .1);
  border: 1px solid rgba(248, 83, 79, .25);
  padding: 3px 9px;
  border-radius: 50px;
}

.brand-card__actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.brand-card__actions .btn {
  flex: 1;
  padding-inline: 12px;
}

/* ---------- 9. Bonus Kartları ---------- */
.bonus-card {
  position: relative;
  display: block;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.bonus-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft-2);
}

.bonus-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.bonus-card:hover .bonus-card__media img {
  transform: scale(1.05);
}

.bonus-card__body {
  padding: 14px 16px 18px;
}

.bonus-card__brand {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  font-weight: 700;
}

.bonus-card__body h3 {
  font-size: 1rem;
  margin: 4px 0 10px;
  color: var(--text);
}

.bonus-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--primary);
}

/* ---------- 10. Mini Logo Kartları (bet-group) ---------- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  min-height: 78px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: var(--bg-soft-2);
}

.logo-card img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

/* ---------- 10b. Bonuslu Mini Site Kartları (promo) ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.promo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

/* Öne çıkan 6 ana marka kartı */
.promo-card--featured {
  border-color: rgba(248, 83, 79, .55);
  background: linear-gradient(160deg, rgba(248, 83, 79, .12), var(--bg-soft) 60%);
}

.promo-card__logo {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card__logo img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.promo-card__bonus {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  min-height: 2.4em;
  display: flex;
  align-items: center;
}

.promo-card__cta {
  font-size: .76rem;
  font-weight: 800;
  color: #1a1205;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: .01em;
}

.promo-card__name {
  font-weight: 700;
  font-size: .94rem;
  color: var(--text);
}

.promo-card__stars {
  color: var(--primary);
  font-size: .8rem;
  letter-spacing: 1px;
}

.promo-card__badge {
  font-size: .68rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(46, 204, 113, .12);
  border: 1px solid rgba(46, 204, 113, .3);
  padding: 2px 8px;
  border-radius: 50px;
}

/* ---------- 10c. Sıralı Liste (En İyi Siteler) ---------- */
.searchbar {
  display: flex;
  max-width: 520px;
  margin: 22px auto 0;
  gap: 8px;
}

.searchbar input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  font-size: .95rem;
}

.searchbar input::placeholder {
  color: var(--text-muted);
}

.searchbar input:focus {
  outline: none;
  border-color: var(--primary);
}

.search-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 24px;
  display: none;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.rank-item--top {
  border-color: rgba(248, 83, 79, .5);
  background: linear-gradient(160deg, rgba(248, 83, 79, .1), var(--bg-soft) 55%);
}

.rank-item__logo {
  width: 96px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rank-item__logo img {
  max-height: 42px;
  max-width: 96px;
  width: auto;
  object-fit: contain;
}

.rank-item__info {
  flex: 1;
  min-width: 0;
}

.rank-item__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.rank-item__bonus {
  color: var(--text-muted);
  font-size: .86rem;
}

.rank-item__stars {
  color: var(--primary);
  font-size: .8rem;
  letter-spacing: 1px;
}

.rank-item__cta {
  flex-shrink: 0;
  padding: 10px 22px;
}

/* ---------- 11. Oyun Sağlayıcı / Ödül Kartları ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 16px;
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* ---------- 12. Özellik / Avantaj Kutuları ---------- */
.features {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

a.feature {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

a.feature:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

a.feature h3 {
  color: var(--text);
}

.feature__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(248, 83, 79, .12);
  color: var(--primary);
  font-size: 1.5rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  font-size: .92rem;
}

/* ---------- 13. İçerik / Makale Metni ---------- */
.prose {
  max-width: 820px;
  margin-inline: auto;
}

.prose h2 {
  font-size: 1.55rem;
  margin: 32px 0 14px;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: var(--primary);
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.prose ul.bullets {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.prose ul.bullets li {
  margin-bottom: 6px;
}

.prose a {
  text-decoration: underline;
}

/* ---------- 14. Tablo ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

table.compare th,
table.compare td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}

table.compare th {
  background: var(--bg-soft);
  color: var(--primary);
}

table.compare tr:last-child td {
  border-bottom: none;
}

/* ---------- 15. SSS / FAQ Accordion ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq__a-inner {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: .95rem;
}

/* ---------- 16. CTA Şeridi ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(248, 83, 79, .12), rgba(251, 214, 201, .08));
  border: 1px solid rgba(248, 83, 79, .25);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.cta-band h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.cta-band p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* ---------- 17. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding-block: 44px 24px;
  margin-top: 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer__brand img {
  height: 40px;
  margin-bottom: 12px;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: .9rem;
  max-width: 320px;
}

.footer__col h4 {
  font-size: .95rem;
  margin-bottom: 14px;
  color: var(--text);
}

.footer__col li {
  margin-bottom: 8px;
}

.footer__col a {
  color: var(--text-muted);
  font-size: .9rem;
}

.footer__col a:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-muted);
  font-size: .82rem;
}

.footer__age {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__age span {
  background: var(--danger);
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: .8rem;
}

/* ---------- 18. Breadcrumb ---------- */
.breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  padding-block: 16px 0;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);
}

/* ---------- 19. Uyarı / Bilgi Kutusu ---------- */
.notice {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  color: var(--text-muted);
  font-size: .9rem;
  margin-block: 20px;
}

/* ---------- 20. Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero__cta,
  .hero__stats {
    justify-content: center;
  }

  .hero__art {
    order: -1;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 12px 16px;
    display: none;
  }

  .nav__menu.is-open {
    display: flex;
    animation: navDrop .22s ease;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__menu a {
    display: block;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav__menu a:hover,
  .nav__menu a[aria-current="page"] {
    background: var(--bg-soft-2);
    color: var(--primary);
  }

  .section {
    padding-block: 40px;
  }

  /* Sıralı liste tablet/mobil: tek sütun */
  .rank-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    gap: 18px;
  }

  .cta-band {
    padding: 26px 20px;
  }

  /* Sıralı liste mobil düzeni */
  .rank-item {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 14px;
  }

  .rank-item__logo {
    width: 70px;
    height: 38px;
  }

  .rank-item__logo img {
    max-width: 70px;
    max-height: 34px;
  }

  .rank-item__info {
    flex: 1 1 50%;
  }

  .rank-item__cta {
    flex: 1 1 100%;
    text-align: center;
    padding: 11px 18px;
  }
}

/* ---------- 21. Yardımcı Sınıflar ---------- */
.mt-lg {
  margin-top: 40px;
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
