a{
  color:#fff!important;
  text-decoration: none;
}
:root {
  --bg: #0f172a;          /* arka plan */
  --card: #111827;        /* kart */
  --text: #e5e7eb;        /* metin */
  --muted: #9ca3af;       /* yardımcı metin */
  --accent: #ff0000;      /* vurgu rengi */
  --border: #1f2937;      /* kenar */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: radial-gradient(1200px 600px at 20% 10%, #0b1020 0%, var(--bg) 40%, #0b1020 100%);
  color: var(--text);
  display: grid;
  place-items: center;
  padding: 24px;
}

.container {
  width: 100%;
  max-width: 760px;
  background: linear-gradient(180deg, var(--card), #0d1324);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0a0f1f;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo {
  padding-left: 5px;
  height: 40px;
  width: auto;
  object-fit: cover;
  display: block;
}

.brand-text {
  line-height: 1.2;
}
.brand-title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.2px;
}
.brand-sub {
  color: var(--muted);
  font-size: 13px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px dashed #334155;
  background: #0a1223;
  color: var(--muted);
  font-size: 12px;
  margin: 6px 0 18px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.6; }
}

h1 {
  font-size: 28px;
  margin: 8px 0 10px;
}
.lead {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 18px;
}

.panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #0b1326;
}
.row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.label { color: var(--muted); }
.value { font-weight: 600; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.btn {
  appearance: none;
  border: 1px solid #1f2937;
  background: #0a1223;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.06s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover { transform: translateY(-1px); border-color: #334155; background: #0c1730; }
.btn.primary { border-color: var(--accent); background: #0f1f35; }
.btn.primary:hover { background: #122642; }

footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .row { flex-direction: column; gap: 6px; }
  h1 { font-size: 22px; }
  .brand-title { font-size: 16px; }
}
