:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #06b6d4;
  --muted: #94a3b8;
  --text: #e6eef6;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

body {
  background: linear-gradient(180deg, #071022 0%, #07192a 100%);
  color: var(--text);
  padding: 28px;
}

.container {
    display: flex;
    flex-direction: column;
  text-align: center;
  width: 100%;
  max-width: 760px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.7);
  border: 1px solid rgba(255,255,255,0.03);
}

h1 {
  margin: 0 0 14px 0;
  font-size: 20px;
}

.control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input[type="text"] {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  background: transparent;
  color: var(--text);
  outline: none;
  font-size: 15px;
}

input[type="text"]::placeholder {
  color: rgba(230,238,246,0.28);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

button {
  padding: 8px 12px;
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: #042028;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(6,182,212,0.12);
}

button.secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: none;
}

.console-wrap {
  margin-top: 6px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.console-header h2 {
  margin: 0;
  font-size: 14px;
}

.page-console {
  min-height: 140px;
  max-height: 300px;
  overflow: auto;
  padding: 12px;
  border-radius: 10px;
  background: rgba(2,6,23,0.6);
  border: 1px solid rgba(255,255,255,0.02);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
  font-size: 13px;
  color: #d6f6ff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.log-entry {
  padding: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.02);
}

.log-meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}

.note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}
.custom-link {
    margin-right: auto;
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(38, 50, 56, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
  }

  .custom-link:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    box-shadow: 0 6px 20px rgba(38, 50, 56, 0.5);
    text-decoration: none;
  }