/* ============ Hesap Durumu (deactivation/inactivity notice) ============ */
.status-banner {
  background: var(--accent-red, #e6362c);
  color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.status-banner svg { flex-shrink: 0; width: 22px; height: 22px; }

.status-main {
  max-width: 640px;
  margin: 0 auto;
  padding: 110px 32px 100px;
  text-align: center;
}
.status-icon {
  width: 68px; height: 68px; margin: 0 auto 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
}
.status-icon svg { width: 30px; height: 30px; }

.status-main h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}

.status-main p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0 0 26px;
}
.status-main p a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.status-main p a:hover { color: var(--accent-red, #e6362c); }
.status-main strong { color: #fff; }

.status-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.status-toast {
  display: none;
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}
.status-toast.show { display: block; }

@media (max-width: 640px) {
  .status-banner { padding: 14px 20px; font-size: 13.5px; text-align: left; }
  .status-main { padding: 80px 20px 70px; }
  .status-actions { flex-direction: column; width: 100%; }
  .status-actions .btn { width: 100%; justify-content: center; }
}
