:root {
  --gp35-m6-bg: #06111e;
  --gp35-m6-panel: rgba(255,255,255,.066);
  --gp35-m6-panel-2: rgba(255,255,255,.098);
  --gp35-m6-line: rgba(255,255,255,.16);
  --gp35-m6-text: #eef6ff;
  --gp35-m6-muted: #9fb3cc;
  --gp35-m6-strong: #fff;
  --gp35-m6-accent: #8fe8c8;
  --gp35-m6-blue: #7cc7ff;
  --gp35-m6-warn: #ffd38c;
  --gp35-m6-danger: #ff9aa9;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(143,232,200,.15), transparent 30rem),
    radial-gradient(circle at 98% 4%, rgba(124,199,255,.17), transparent 28rem),
    var(--gp35-m6-bg);
  color: var(--gp35-m6-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.gp35-m6-shell {
  width: min(1580px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.gp35-m6-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid var(--gp35-m6-line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.gp35-m6-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gp35-m6-accent);
  font-size: 12px;
  font-weight: 900;
}

.gp35-m6-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.gp35-m6-lead {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--gp35-m6-muted);
  font-size: 18px;
  line-height: 1.55;
}

.gp35-m6-lockbox {
  border: 1px solid rgba(255,211,140,.28);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,211,140,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.gp35-m6-lockbox strong {
  color: var(--gp35-m6-warn);
  font-size: 18px;
}

.gp35-m6-lockbox span,
.gp35-m6-card span,
.gp35-m6-panel p,
.gp35-m6-row span {
  color: var(--gp35-m6-muted);
  line-height: 1.45;
}

.gp35-m6-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.gp35-m6-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gp35-m6-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gp35-m6-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gp35-m6-panel,
.gp35-m6-card {
  border: 1px solid var(--gp35-m6-line);
  border-radius: 26px;
  background: var(--gp35-m6-panel);
  padding: 24px;
  box-shadow: 0 18px 54px rgba(0,0,0,.18);
}

.gp35-m6-panel {
  margin-top: 22px;
}

.gp35-m6-card {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp35-m6-card strong,
.gp35-m6-row strong {
  color: var(--gp35-m6-strong);
  font-size: 18px;
}

.gp35-m6-panel-head {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.gp35-m6-panel h2 {
  margin: 0 0 8px;
  letter-spacing: -.025em;
}

.gp35-m6-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

button,
.gp35-m6-link-button,
.gp35-m6-button {
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #8fe8c8, #7cc7ff);
  color: #06111f;
  font-weight: 900;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(124,199,255,.18);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gp35-m6-button-disabled {
  opacity: .72;
  cursor: not-allowed;
  background: rgba(255,211,140,.18);
  color: var(--gp35-m6-warn);
  border: 1px solid rgba(255,211,140,.28);
  box-shadow: none;
}

.gp35-m6-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(143,232,200,.28);
  color: var(--gp35-m6-accent);
  background: rgba(143,232,200,.08);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.gp35-m6-badge-warn {
  border-color: rgba(255,211,140,.32);
  color: var(--gp35-m6-warn);
  background: rgba(255,211,140,.08);
}

.gp35-m6-form,
.gp35-m6-inline-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.gp35-m6-inline-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.gp35-m6-form label,
.gp35-m6-inline-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--gp35-m6-muted);
  font-size: 13px;
  font-weight: 800;
}

.gp35-m6-form input,
.gp35-m6-form select,
.gp35-m6-form textarea,
.gp35-m6-inline-form input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(0,0,0,.22);
  color: var(--gp35-m6-text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}

.gp35-m6-form textarea {
  min-height: 110px;
  resize: vertical;
}

.gp35-m6-wide {
  grid-column: 1 / -1;
}

.gp35-m6-output,
.gp35-m6-empty {
  overflow: auto;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.12);
  color: #dbeaff;
  white-space: pre-wrap;
}

.gp35-m6-list {
  display: grid;
  gap: 14px;
}

.gp35-m6-row {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 14px;
  background: rgba(0,0,0,.16);
}

.gp35-m6-row-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.gp35-m6-total {
  font-size: 28px;
  font-weight: 950;
  color: var(--gp35-m6-strong);
  letter-spacing: -.03em;
}

.gp35-m6-admin-panel {
  width: min(1580px, calc(100% - 48px));
  margin: 22px auto;
  padding: 18px 22px;
  border: 1px solid rgba(143,232,200,.24);
  border-radius: 22px;
  background: rgba(143,232,200,.075);
  color: var(--gp35-m6-text);
}

.gp35-m6-admin-panel a {
  color: var(--gp35-m6-accent);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .gp35-m6-hero,
  .gp35-m6-grid-2,
  .gp35-m6-grid-3,
  .gp35-m6-grid-4,
  .gp35-m6-form,
  .gp35-m6-inline-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .gp35-m6-shell,
  .gp35-m6-admin-panel {
    width: min(100% - 24px, 1580px);
  }

  .gp35-m6-hero,
  .gp35-m6-panel,
  .gp35-m6-card {
    padding: 18px;
    border-radius: 22px;
  }
}
