* { margin: 0; padding: 0; box-sizing: border-box; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0b33; }
::-webkit-scrollbar-thumb { background: #4c2f6f; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #c266a7; }

:root {
  --bg-body:     #0d0b33;
  --bg-card:     #1a1240;
  --bg-card2:    #4c2f6f;
  --bg-accent:   #52489f;
  --color-pink:  #c266a7;
  --color-light: #e7c8e7;
  --color-white: #f5f0ff;
  --border:      rgba(194, 102, 167, 0.25);
  --border-light: rgba(231, 200, 231, 0.15);
  --text-primary: #f5f0ff;
  --text-secondary: #e7c8e7;
  --text-muted:  #a89abb;
  --sidebar-width: 240px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(194,102,167,0.2);
}

a { color: var(--color-pink); text-decoration: none; }
a:hover { color: var(--color-light); }

/* ===== PUBLIC NAVBAR ===== */
.pub-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 11, 51, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pub-navbar-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.pub-navbar-brand span.brand-accent { color: var(--color-pink); }
.pub-navbar-links { display: flex; align-items: center; gap: 8px; }
.pub-navbar-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.pub-navbar-links a:hover { color: var(--text-primary); background: rgba(82,72,159,0.3); }
.btn-giris {
  background: linear-gradient(135deg, #c266a7, #52489f) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 24px !important;
  box-shadow: 0 0 20px rgba(194,102,167,0.4);
  transition: all 0.3s !important;
}
.btn-giris:hover {
  box-shadow: 0 0 30px rgba(194,102,167,0.7) !important;
  transform: translateY(-1px);
  color: #fff !important;
}
.pub-navbar-toggler {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}
.pub-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(13,11,51,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}
.pub-mobile-menu.open { display: flex; }
.pub-mobile-menu a {
  color: var(--text-secondary);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.pub-mobile-menu a:hover { background: rgba(82,72,159,0.3); color: var(--text-primary); }

/* ===== PUBLIC LAYOUT ===== */
.pub-main { padding-top: 64px; }

/* ===== HERO ===== */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76,47,111,0.6) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 50%, rgba(194,102,167,0.2) 0%, transparent 60%),
              radial-gradient(ellipse 40% 30% at 20% 80%, rgba(82,72,159,0.3) 0%, transparent 60%);
}
.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(194,102,167,0.3) 0%, transparent 70%);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(194,102,167,0.15);
  border: 1px solid rgba(194,102,167,0.3);
  color: var(--color-light);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-white);
}
.hero-title-gradient {
  background: linear-gradient(135deg, #e7c8e7 0%, #c266a7 50%, #52489f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #c266a7, #52489f);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(194,102,167,0.5);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(194,102,167,0.8);
  color: #fff;
}
.btn-hero-secondary {
  background: rgba(82,72,159,0.2);
  border: 1px solid rgba(82,72,159,0.5);
  color: var(--color-light);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 32px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover {
  background: rgba(82,72,159,0.4);
  color: var(--color-white);
}

/* ===== SECTION ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(194,102,167,0.12);
  border: 1px solid rgba(194,102,167,0.25);
  color: var(--color-pink);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 12px;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== BONUS KARTI ===== */
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-pink);
  box-shadow: 0 12px 40px rgba(194,102,167,0.2);
}
.bonus-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: linear-gradient(135deg, #4c2f6f, #52489f);
}
.bonus-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #4c2f6f, #52489f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(231,200,231,0.5);
}
.bonus-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bonus-type-badge {
  display: inline-block;
  background: rgba(194,102,167,0.15);
  border: 1px solid rgba(194,102,167,0.3);
  color: var(--color-light);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.bonus-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bonus-card-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-bonus {
  background: linear-gradient(135deg, #c266a7, #52489f);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.btn-bonus:hover {
  box-shadow: 0 0 20px rgba(194,102,167,0.5);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== GİRİŞ KARTI ===== */
.giris-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}
.giris-card:hover {
  border-color: var(--color-pink);
  box-shadow: 0 8px 30px rgba(194,102,167,0.15);
}
.giris-card-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.giris-url-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,11,51,0.8);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
}
.giris-url-text {
  flex: 1;
  color: var(--color-light);
  font-size: 14px;
  font-family: monospace;
  word-break: break-all;
}
.btn-copy {
  background: rgba(82,72,159,0.3);
  border: 1px solid rgba(82,72,159,0.5);
  color: var(--color-light);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-copy:hover, .btn-copy.copied {
  background: rgba(194,102,167,0.3);
  border-color: var(--color-pink);
  color: var(--color-pink);
}
.btn-site {
  display: block;
  background: linear-gradient(135deg, #c266a7, #52489f);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(194,102,167,0.3);
}
.btn-site:hover {
  box-shadow: 0 0 40px rgba(194,102,167,0.6);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== PUBLIC FOOTER ===== */
.pub-footer {
  background: rgba(13,11,51,0.8);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: 80px;
}
.pub-footer-brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.pub-footer-brand span { color: var(--color-pink); }
.pub-footer-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 360px;
}
.pub-footer-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.pub-footer-links { list-style: none; }
.pub-footer-links li { margin-bottom: 8px; }
.pub-footer-links a {
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.2s;
  text-decoration: none;
}
.pub-footer-links a:hover { color: var(--color-pink); }
.pub-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.pub-footer-social a {
  width: 36px; height: 36px;
  background: rgba(82,72,159,0.2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all 0.2s;
  text-decoration: none;
}
.pub-footer-social a:hover {
  background: rgba(194,102,167,0.2);
  border-color: var(--color-pink);
  color: var(--color-pink);
}
.pub-footer-bottom {
  border-top: 1px solid var(--border-light);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pub-footer-copy { color: var(--text-muted); font-size: 12px; }
.pub-footer-warning {
  background: rgba(194,102,167,0.1);
  border: 1px solid rgba(194,102,167,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
  margin-top: 24px;
}

/* ===== ADMIN PANEL ===== */
.admin-top-navbar {
  height: 56px;
  background: rgba(13,11,51,0.98);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: left 0.3s;
}
.admin-brand {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-brand i { color: var(--color-pink); }
.admin-sidebar {
  width: var(--sidebar-width);
  background: rgba(13,11,51,0.98);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  z-index: 1040;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s;
}
.admin-sidebar-header {
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.admin-sidebar-brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
}
.admin-sidebar-brand span { color: var(--color-pink); }
.admin-sidebar-menu { flex: 1; padding: 16px 12px; }
.admin-sidebar-section-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0 8px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.admin-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 2px;
}
.admin-sidebar-link:hover, .admin-sidebar-link.active {
  background: rgba(194,102,167,0.15);
  color: var(--color-light);
}
.admin-sidebar-link.active { border-left: 3px solid var(--color-pink); padding-left: 9px; }
.admin-sidebar-link i { font-size: 16px; width: 18px; text-align: center; }
.admin-main {
  margin-left: var(--sidebar-width);
  padding-top: 56px;
  min-height: 100vh;
}
.admin-content { padding: 28px; }
.admin-sidebar-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 20px; cursor: pointer; }
.admin-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1035; }
.admin-user-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.admin-user-name { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.admin-logout {
  color: var(--text-muted);
  font-size: 18px;
  transition: color 0.2s;
  text-decoration: none;
}
.admin-logout:hover { color: var(--color-pink); }

/* ===== KART ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.card-header {
  background: rgba(76,47,111,0.2);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-light);
  border-radius: 12px 12px 0 0;
}
.card-body { padding: 20px; }

/* ===== STAT KART ===== */
.stat-card { border: 1px solid var(--border); border-radius: 12px; transition: all 0.2s; }
.stat-card:hover { border-color: var(--color-pink); }
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.stat-icon-purple { background: rgba(194,102,167,0.15); color: var(--color-pink); }
.stat-icon-blue { background: rgba(82,72,159,0.2); color: #8b8ff8; }
.stat-icon-green { background: rgba(82,200,100,0.15); color: #5acc6a; }
.stat-icon-yellow { background: rgba(240,180,60,0.15); color: #f0b43c; }
.stat-value { font-size: 24px; font-weight: 800; color: var(--color-white); }
.stat-label { font-size: 12px; color: var(--text-muted); }

/* ===== FORM ===== */
.form-control, .form-select {
  background: rgba(13,11,51,0.8);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 8px;
}
.form-control:focus, .form-select:focus {
  background: rgba(13,11,51,0.9);
  border-color: var(--color-pink);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(194,102,167,0.15);
}
.form-control::placeholder { color: var(--text-muted); }
.form-label { color: var(--text-secondary); font-size: 13px; font-weight: 600; }

/* ===== BUTONLAR ===== */
.btn-primary-purple {
  background: linear-gradient(135deg, #c266a7, #52489f);
  border: none;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-primary-purple:hover { box-shadow: 0 0 20px rgba(194,102,167,0.4); color: #fff; }
.btn-outline-purple {
  background: transparent;
  border: 1px solid var(--color-pink);
  color: var(--color-pink);
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 18px;
  font-size: 13px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline-purple:hover { background: rgba(194,102,167,0.15); color: var(--color-light); }
.btn-danger-soft {
  background: rgba(220,53,69,0.15);
  border: 1px solid rgba(220,53,69,0.3);
  color: #ff6b7a;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-danger-soft:hover { background: rgba(220,53,69,0.25); }

/* ===== TABLO ===== */
.table { color: var(--text-primary); }
.table thead th { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; border-color: var(--border); padding: 12px 16px; }
.table tbody td { border-color: var(--border-light); padding: 12px 16px; vertical-align: middle; font-size: 13px; }
.table tbody tr:hover td { background: rgba(194,102,167,0.05); }

/* ===== BADGE ===== */
.badge-active { background: rgba(82,200,100,0.15); color: #5acc6a; border: 1px solid rgba(82,200,100,0.3); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-weight: 700; }
.badge-inactive { background: rgba(150,150,150,0.15); color: #aaa; border: 1px solid rgba(150,150,150,0.3); border-radius: 6px; padding: 3px 10px; font-size: 11px; font-weight: 700; }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76,47,111,0.5) 0%, transparent 70%);
}
.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.login-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 8px;
}
.login-logo span { color: var(--color-pink); }
.login-subtitle { color: var(--text-muted); font-size: 13px; text-align: center; margin-bottom: 32px; }
.alert-danger-custom { background: rgba(220,53,69,0.1); border: 1px solid rgba(220,53,69,0.3); color: #ff6b7a; border-radius: 8px; padding: 12px 16px; font-size: 13px; margin-bottom: 20px; }

/* ===== BONUS DETAY ===== */
.bonus-detail-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 28px;
}
.bonus-detail-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.bonus-detail-content {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}
.bonus-detail-terms {
  background: rgba(76,47,111,0.2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}
.bonus-detail-terms h5 { color: var(--color-light); font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.bonus-detail-terms p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .admin-top-navbar { left: 0; }
  .admin-main { margin-left: 0; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-sidebar-overlay.show { display: block; }
  .admin-sidebar-toggle { display: block; }
}

/* ===== MOBILE (<= 768px) ===== */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .pub-navbar-links { display: none; }
  .pub-navbar-toggler { display: block; }
  .pub-navbar { padding: 0 16px; height: 60px; }
  .pub-navbar-brand { font-size: 18px; }
  .pub-main { padding-top: 60px; }
  .pub-mobile-menu { top: 60px; }
  .hero-section {
    min-height: auto;
    padding: 32px 0 40px;
  }
  .hero-glow { width: 320px; height: 220px; filter: blur(28px); }
  .hero-badge { font-size: 12px; padding: 5px 12px; margin-bottom: 16px; }
  .hero-title { font-size: 34px; line-height: 1.15; margin-bottom: 14px; }
  .hero-desc { font-size: 16px; margin-bottom: 24px; }
  .btn-hero-primary { font-size: 15px; padding: 12px 24px; }
  .btn-hero-secondary { font-size: 14px; padding: 12px 20px; }
  .section-title { font-size: 24px; }
  .section-desc { font-size: 14px; }
  .bonus-card-img, .bonus-card-img-placeholder { height: 160px; }
  .bonus-card-body { padding: 16px; }
  .bonus-card-title { font-size: 15px; }
  .bonus-detail-title { font-size: 24px; }
  .bonus-detail-content { font-size: 15px; }
  .pub-footer { padding: 32px 0 24px; margin-top: 40px; }
  .pub-footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 576px) {
  .admin-content { padding: 16px; }
  .hero-title { font-size: 28px; }
  .login-card { margin: 16px; padding: 28px 24px; }
  .hero-section { padding: 24px 0 32px; }
  .hero-desc { font-size: 15px; }
  .pub-navbar-brand { font-size: 16px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .pub-footer-warning { font-size: 11px; }
}

/* ===== ACCESSIBILITY / PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-glow { animation: none; }
}

@media (max-width: 768px) {
  .pub-navbar, .pub-mobile-menu { backdrop-filter: none; background: rgba(13,11,51,0.98); }
  .bz-popup-overlay { backdrop-filter: none; }
}
