/* KodBende — koyu tema + altın vurgu */
:root {
  --bg: #0a0e1a;
  --bg-2: #0f1524;
  --card: #111827;
  --card-2: #16202f;
  --border: #1f2a3d;
  --text: #e5e7eb;
  --muted: #8b93a7;
  --gold: #f5c518;
  --gold-2: #fbbf24;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #3b82f6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Giriş splash */
.splash {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  display: grid;
  place-items: center;
  animation: splash-hide .5s ease 2s forwards;
}
.splash-inner { text-align: center; animation: splash-pop .55s cubic-bezier(.2, 1.4, .4, 1); }
.splash-logo {
  width: 220px;
  max-width: 70vw;
  animation: shield-pulse 1.2s ease-in-out infinite;
}
.splash-shield {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  background: linear-gradient(160deg, var(--gold), #d99e00);
  color: #10131c;
  clip-path: polygon(50% 0, 100% 15%, 100% 65%, 50% 100%, 0 65%, 0 15%);
  font-weight: 800;
  font-size: 40px;
  animation: shield-pulse 1.2s ease-in-out infinite;
}
.splash-name { font-size: 26px; font-weight: 700; margin-top: 12px; }
.splash-name em { font-style: normal; color: var(--gold); }
.splash-spinner {
  width: 42px;
  height: 42px;
  margin: 22px auto 14px;
  border-radius: 999px;
  border: 4px solid #1f2a3d;
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
.splash-text { color: var(--muted); font-size: 13.5px; }
.splash-dots i { font-style: normal; animation: dot-blink 1.2s infinite; }
.splash-dots i:nth-child(2) { animation-delay: .2s; }
.splash-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shield-pulse { 50% { transform: scale(1.08); filter: drop-shadow(0 0 14px rgba(245, 197, 24, .5)); } }
@keyframes dot-blink { 0%, 60%, 100% { opacity: .2; } 30% { opacity: 1; } }
@keyframes splash-pop { from { transform: scale(.7); opacity: 0; } }
@keyframes splash-hide { to { opacity: 0; visibility: hidden; } }

/* Header */
.site-header {
  background: rgba(10, 14, 26, .92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
}
.menu-btn {
  font-size: 20px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-img { height: 56px; width: auto; display: block; }
.logo.small .logo-img { height: 52px; }
.logo-shield {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--gold), #d99e00);
  color: #10131c;
  clip-path: polygon(50% 0, 100% 15%, 100% 65%, 50% 100%, 0 65%, 0 15%);
  font-weight: 800; font-size: 18px;
}
.logo-text { font-size: 20px; font-weight: 700; letter-spacing: .3px; }
.logo-text em { font-style: normal; color: var(--gold); }
.logo.small .logo-shield { width: 28px; height: 28px; font-size: 15px; }
.logo.small .logo-text { font-size: 17px; }
.active-bonus {
  margin-left: auto;
  position: relative;
  background: linear-gradient(160deg, #233047, #1a2436);
  border: 1px solid #31415d;
  color: var(--gold-2);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
}
.bonus-count {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  min-width: 19px; height: 19px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 4px;
  font-weight: 700;
}

/* Mobil menü */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px;
  position: sticky;
  top: 58px;
  z-index: 49;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 10px 4px; border-bottom: 1px solid var(--border); font-size: 14px; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}
.ticker { display: flex; gap: 12px; width: max-content; animation: scroll 60s linear infinite; }
.ticker-wrap:hover .ticker { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  min-width: 150px;
  position: relative;
}
.ticker-item.vip { border-color: rgba(245, 197, 24, .65); }
.ticker-item.vip::before {
  content: "VIP";
  position: absolute; top: -1px; left: -1px;
  background: var(--gold);
  color: #10131c;
  font-size: 9px; font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px 0 8px 0;
}
.ticker-item .t-logo {
  display: grid; place-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 3px 8px;
  height: 26px;
}
.ticker-item .t-logo.dark { background: #1b2436; }
.ticker-item img { height: 20px; max-width: 110px; object-fit: contain; }
.ticker-item .t-name { font-size: 12px; font-weight: 700; }
.ticker-item .t-bonus { font-size: 10px; color: var(--gold-2); white-space: nowrap; }
.ticker-item .t-stars { color: var(--gold); font-size: 9px; letter-spacing: 1px; }

/* Intro */
.intro {
  max-width: 1140px;
  margin: 0 auto;
  padding: 22px 20px 0;
}
.intro h1 { font-size: 24px; margin-bottom: 10px; }
.intro h1 + p strong, .intro p strong { color: var(--gold-2); }
.intro p { color: var(--muted); font-size: 13.5px; line-height: 1.7; max-width: 900px; margin-bottom: 8px; }

/* SSS */
.faq { margin-top: 56px; max-width: 900px; margin-left: auto; margin-right: auto; }
.faq h2 { font-size: 20px; text-align: center; margin-bottom: 18px; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 0 16px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--gold); font-weight: 700; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); font-size: 13.5px; line-height: 1.7; padding-bottom: 14px; }

/* Toolbar */
.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 16px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--muted);
  flex: 1 1 220px;
  max-width: 320px;
}
.search-box input {
  background: none; border: none; outline: none;
  color: var(--text); width: 100%; font-size: 14px;
}
#filterSelect {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 14px;
  outline: none;
}
.report-btn {
  margin-left: auto;
  background: rgba(239, 68, 68, .12);
  border: 1px solid rgba(239, 68, 68, .45);
  color: #f87171;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}
.report-btn:hover { background: rgba(239, 68, 68, .22); }

/* Grid */
main { max-width: 1140px; margin: 0 auto; padding: 0 20px 40px; }
.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.card {
  min-width: 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid rgba(34, 197, 94, .5);
  border-radius: 14px;
  padding: 34px 12px 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
a.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0, 0, 0, .45); }
.card.nonsponsor { border-color: rgba(239, 68, 68, .55); cursor: pointer; }
.badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.badge.sponsor { background: rgba(34, 197, 94, .15); color: var(--green); border: 1px solid rgba(34, 197, 94, .5); }
.badge.nonsponsor { background: rgba(239, 68, 68, .15); color: var(--red); border: 1px solid rgba(239, 68, 68, .5); }
.fav-btn {
  position: absolute; top: 0; right: 0;
  font-size: 15px;
  color: var(--muted);
  padding: 12px 14px;
  z-index: 2;
}
.fav-btn.active { color: var(--red); }
.card-logo {
  height: 46px;
  width: 100%;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 6px 10px;
  overflow: hidden;
}
.card-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.card-logo.dark { background: #1b2436; }
.card-logo.text-logo {
  background: linear-gradient(160deg, var(--card-2), #0d1420);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .5px;
}
.card-name { font-size: 13px; font-weight: 600; }
.card-bonus { font-size: 10px; color: var(--gold-2); text-align: center; min-height: 12px; }
.stars { font-size: 11px; letter-spacing: 2px; color: #3a4459; }
.stars .on { color: var(--gold); }
.card-tag {
  font-size: 10px;
  color: var(--muted);
  background: var(--card-2);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 999px;
}
.card.vip {
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(245, 197, 24, .18);
}
.vip-pill {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(160deg, var(--gold), #d99e00);
  color: #10131c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
}
.card.hide { display: none; }
.no-result { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 40px 0; }

/* Load more */
.load-more-wrap { text-align: center; margin: 26px 0 10px; }
.load-more {
  background: var(--card-2);
  border: 1px solid #2b3a55;
  color: var(--text);
  padding: 11px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.load-more:hover { border-color: var(--gold); color: var(--gold); }

/* Stats */
.stats { margin-top: 64px; text-align: center; }
.stats-kicker {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.stats h2 { font-size: 24px; margin-bottom: 6px; }
.stats-sub { color: var(--muted); font-size: 13.5px; margin-bottom: 28px; }
.stats-cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat-card {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: linear-gradient(180deg, #111a2e, #0d1424);
  border: 1px solid #26334c;
  border-radius: 16px;
  padding: 26px 16px 22px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.stat-card::before {
  content: "";
  position: absolute; top: 0; left: 18%; right: 18%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, .45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
}
.stat-card > div { display: flex; flex-direction: column-reverse; gap: 4px; }
.stat-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 999px;
  font-size: 22px;
}
.stat-icon.gold {
  background: linear-gradient(160deg, rgba(245, 197, 24, .22), rgba(245, 197, 24, .05));
  box-shadow: inset 0 0 0 1px rgba(245, 197, 24, .3);
}
.stat-icon.blue {
  background: linear-gradient(160deg, rgba(59, 130, 246, .22), rgba(59, 130, 246, .05));
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, .3);
}
.stats-note { margin-top: 14px; font-size: 12px; color: var(--muted); }
.stat-card small { display: block; color: var(--muted); font-size: 10.5px; letter-spacing: 2px; }
.stat-card strong {
  font-size: 30px; font-weight: 800; line-height: 1.1;
  background: linear-gradient(180deg, #ffffff, #c9d4e8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); margin-top: 40px; }
.footer-cols {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 36px 20px;
}
.footer-about p { color: var(--muted); font-size: 12.5px; line-height: 1.7; margin-top: 12px; max-width: 420px; }
.footer-links, .footer-social { font-size: 14px; }
.footer-links h3, .footer-social h3 { font-size: 15px; margin-bottom: 12px; color: var(--blue); }
.footer-links a { display: block; color: var(--muted); padding: 4px 0; }
.footer-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  font-size: 16px;
  border: 1px solid var(--border);
}
.s-tg { color: #29b6f6; } .s-yt { color: #ff4c4c; } .s-ig { color: #e1306c; }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  padding: 16px 20px;
  font-size: 12.5px; color: var(--muted);
}
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold); }

/* Modal */
.modal-overlay[hidden] { display: none; }
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(4, 6, 12, .8);
  display: grid; place-items: center;
  z-index: 100;
  padding: 20px;
}
.modal {
  background: #0f1626;
  border: 1px solid #26334c;
  border-radius: 16px;
  padding: 28px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .6);
}
.warn-modal h2 { color: var(--red); font-size: 20px; margin-bottom: 14px; }
.warn-modal p { font-size: 13.5px; line-height: 1.7; color: #f0a1a1; margin-bottom: 12px; }
.confirm-btn {
  display: block;
  width: 100%;
  background: linear-gradient(160deg, var(--blue), #2563eb);
  color: #fff;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  margin-top: 6px;
}
.confirm-btn:hover { filter: brightness(1.1); }
.modal-close {
  position: absolute; top: 10px; right: 12px;
  color: var(--muted); font-size: 16px; padding: 4px 8px;
}

/* Sponsor olmayan site pop-up'ı */
.site-modal { max-width: 420px; text-align: center; }
.site-tip {
  background: rgba(245, 197, 24, .1);
  border: 1px solid rgba(245, 197, 24, .35);
  color: var(--gold-2);
  font-size: 13px;
  line-height: 1.6;
  border-radius: 10px;
  padding: 10px 14px;
  margin: 6px 0 14px;
}
.site-banners { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.site-banners a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--card);
  border: 1px solid rgba(34, 197, 94, .45);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
}
.site-banners a:hover { border-color: var(--gold); }
.site-banners .b-logo {
  display: grid; place-items: center;
  background: #fff; border-radius: 6px;
  padding: 3px 8px; height: 30px; min-width: 86px;
}
.site-banners .b-logo.dark { background: #1b2436; }
.site-banners .b-logo img { height: 22px; max-width: 90px; object-fit: contain; }
.site-banners .b-bonus { color: var(--gold-2); font-weight: 600; text-align: right; }
.site-warn { color: var(--red); font-weight: 700; font-size: 14.5px; margin-bottom: 8px; }
.site-warn2 { color: #f0a1a1; font-size: 12.5px; line-height: 1.6; }
.site-ask { color: var(--muted); font-size: 12.5px; margin-top: 14px; }
.site-ask[hidden], .proceed-btn[hidden] { display: none; }
.proceed-btn {
  display: inline-block;
  margin-top: 10px;
  background: none;
  border: 1px solid rgba(239, 68, 68, .6);
  color: #f87171;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
}
.proceed-btn:hover { background: rgba(239, 68, 68, .12); }

/* Aktif Bonus çekmecesi */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(4, 6, 12, .7);
  z-index: 90;
}
.drawer-overlay[hidden] { display: none; }
.bonus-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 360px;
  max-width: 92vw;
  background: #0d1322;
  border-left: 1px solid var(--border);
  z-index: 95;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0, 0, 0, .5);
}
.bonus-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.drawer-head h2 { font-size: 17px; color: var(--gold); }
.drawer-head .modal-close { position: static; }
.drawer-list { overflow-y: auto; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.drawer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 10px;
}
.drawer-item.vip { border-color: rgba(245, 197, 24, .55); }
.drawer-item .d-logo {
  display: grid; place-items: center;
  background: #fff; border-radius: 6px;
  height: 34px; min-width: 90px; max-width: 90px;
  padding: 3px 6px; flex-shrink: 0;
}
.drawer-item .d-logo.dark { background: #1b2436; }
.drawer-item .d-logo img { height: 24px; max-width: 78px; object-fit: contain; }
.drawer-item .d-info { flex: 1; min-width: 0; }
.drawer-item .d-name { font-size: 13px; font-weight: 700; }
.drawer-item .d-bonus { font-size: 11px; color: var(--gold-2); }
.drawer-item .d-go {
  background: linear-gradient(160deg, var(--gold), #d99e00);
  color: #10131c;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Çark */
.wheel-fab {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: conic-gradient(var(--gold) 0 25%, #1d2941 25% 50%, var(--gold) 50% 75%, #1d2941 75% 100%);
  color: #fff;
  font-size: 11px; font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .8);
  border: 2px solid var(--gold-2);
  z-index: 60;
  animation: fab-pulse 2.4s ease-in-out infinite;
}
@keyframes fab-pulse { 50% { transform: scale(1.07); box-shadow: 0 0 22px rgba(245, 197, 24, .45); } }
.wheel-modal { text-align: center; max-width: 380px; }
.wheel-modal h2 { color: var(--gold); margin-bottom: 4px; }
.wheel-sub { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.wheel-box { position: relative; width: 260px; margin: 0 auto 18px; }
.wheel-pointer {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 20px;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .7);
}
.wheel {
  width: 260px; height: 260px;
  border-radius: 999px;
  border: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
  transition: transform 4.2s cubic-bezier(.12, .6, .08, 1);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .55);
}
.wheel-label {
  position: absolute;
  top: 50%; left: 50%;
  font-size: 10px;
  font-weight: 700;
  color: #0e1220;
  white-space: nowrap;
}
.wheel-label.q { font-size: 26px; font-weight: 800; }
.wheel-win-logo {
  display: inline-grid;
  place-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
  margin: 8px 0 4px;
}
.wheel-win-logo.dark { background: #1b2436; }
.wheel-win-logo img { height: 30px; max-width: 150px; object-fit: contain; }
.wheel-result { margin-top: 16px; font-size: 14px; line-height: 1.6; }
.wheel-result a.claim-btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(160deg, var(--gold), #d99e00);
  color: #10131c;
  font-weight: 800;
  padding: 11px 24px;
  border-radius: 10px;
  animation: shield-pulse 1.4s ease-in-out infinite;
}
#spinBtn.spinning { opacity: .6; cursor: wait; }

/* Responsive */
@media (max-width: 1200px) { .grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .report-btn { margin-left: 0; }
  .stats-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .logo-text { font-size: 17px; }
  .active-bonus { font-size: 12px; padding: 7px 12px; }
  .stat-card { padding: 20px 12px 18px; }
  .stat-card strong { font-size: 24px; }
  .stat-icon { width: 44px; height: 44px; font-size: 19px; }
}

/* Sorun bildirme modalı */
.report-modal { max-width: 440px; }
.report-modal h2 { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.rf-label { display: block; font-size: 12.5px; color: var(--muted); margin: 12px 0 6px; }
.rf-input {
  width: 100%;
  background: #0a101d;
  border: 1px solid #26334c;
  border-radius: 10px;
  padding: 10px 12px;
  color: #e5e7eb;
  font-size: 13.5px;
  font-family: inherit;
}
.rf-input:focus { outline: none; border-color: var(--gold); }
textarea.rf-input { resize: vertical; min-height: 90px; }
.rf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.rf-actions { display: flex; gap: 10px; margin-top: 16px; }
.rf-actions .confirm-btn { margin-top: 0; flex: 1; }
.rf-cancel {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid #26334c;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}
.rf-cancel:hover { color: #e5e7eb; border-color: #3b4a68; }
.rf-status { margin-top: 12px; font-size: 13px; color: var(--muted); }
.rf-status.ok { color: #4ade80; }
.rf-status.err { color: var(--red); }
