/* ============================================
   ESTRO - Main Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --blue: #00aaff;
  --blue-dark: #0066cc;
  --blue-deep: #003d80;
  --cyan: #00e5ff;
  --bg: #000000;
  --surface: rgba(4, 10, 18, 0.88);
  --border: rgba(0, 120, 200, 0.2);
  --border-hover: rgba(0, 200, 255, 0.45);
  --text: #eaf4ff;
  --text-dim: #6a9cc0;
  --text-faint: #2e5575;
  --green: #00d080;
  --radius: 12px;
  --radius-lg: 16px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Body & Background --- */
body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Hexagon grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background-color: #000;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49'%3E%3Cpath d='M14 0L28 8.1V24.3L14 32.4L0 24.3V8.1Z' fill='none' stroke='%23062a50' stroke-width='0.5'/%3E%3Cpath d='M14 16.6L28 24.7V40.9L14 49L0 40.9V24.7Z' fill='none' stroke='%23062a50' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 28px 32.4px;
}

/* Center spotlight glow */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 55%, rgba(0, 60, 180, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0, 80, 200, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(0, 200, 255, 0); }
  50% { box-shadow: 0 0 14px rgba(0, 200, 255, 0.12); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes borderStream {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 0;
  background: rgba(0, 2, 6, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.logo-img { width: 30px; height: 30px; border-radius: 6px; }
.logo-text {
  font-size: 1.1rem; font-weight: 800; letter-spacing: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--blue-dark));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav-tabs {
  display: flex; gap: 3px;
  background: rgba(0, 10, 20, 0.7); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px;
}
.nav-tab {
  padding: 7px 16px; border-radius: 6px; font-size: 0.78rem; font-weight: 500;
  border: none; cursor: pointer; font-family: inherit; color: var(--text-dim); background: transparent;
  transition: all 0.2s;
}
.nav-tab:hover { color: var(--text); }
.nav-tab.active {
  background: linear-gradient(135deg, #0060cc, #0090ee);
  color: #fff;
}

.nav-auth { display: flex; align-items: center; }
.btn-sm { padding: 7px 14px; font-size: 0.78rem; }
.user-info { display: flex; align-items: center; gap: 8px; }
.user-avatar { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border); }
.user-name { color: var(--text); font-size: 0.8rem; font-weight: 500; }
.btn-logout {
  background: none; border: 1px solid var(--border); color: var(--text-dim);
  font-size: 0.72rem; padding: 4px 10px; border-radius: 6px; cursor: pointer; font-family: inherit;
}
.btn-logout:hover { color: var(--text); border-color: var(--text-faint); }

/* --- Tabs --- */
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-page { padding: 100px 0 60px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px; font-size: 0.88rem; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.25s; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #0070dd, #00a0ff);
  color: #fff;
  border: 1px solid rgba(0, 160, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 130, 255, 0.3);
}

.btn-secondary {
  background: transparent; color: var(--text-dim); border: 1px solid var(--border);
}
.btn-secondary:hover { color: var(--text); border-color: var(--border-hover); }

.btn-robux {
  background: linear-gradient(135deg, #00a060, #00cc77);
  color: #fff;
  border: 1px solid rgba(0, 200, 120, 0.3);
}
.btn-robux:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 200, 100, 0.3);
}

.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* --- Hero --- */
.hero {
  min-height: 100vh; padding: 80px 20px 40px;
  display: flex; align-items: center; justify-content: center;
}
.hero-inner {
  max-width: 1100px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-left {
  display: flex; flex-direction: column; gap: 20px;
  animation: fadeInUp 0.7s ease both;
}
.hero-badge {
  display: inline-flex; align-self: flex-start;
  padding: 5px 12px; border-radius: 6px;
  background: rgba(0, 180, 255, 0.06); border: 1px solid rgba(0, 180, 255, 0.2);
  color: var(--cyan); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}

.api-status {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.api-status-checking {
  color: #8ecbff;
  background: rgba(0, 120, 220, 0.12);
  border-color: rgba(0, 120, 220, 0.3);
}

.api-status-online {
  color: #6af0b6;
  background: rgba(0, 180, 110, 0.14);
  border-color: rgba(0, 180, 110, 0.35);
}

.api-status-issue {
  color: #ffc88f;
  background: rgba(220, 120, 0, 0.14);
  border-color: rgba(220, 120, 0, 0.35);
}

.api-status-offline {
  color: #ff9e9e;
  background: rgba(210, 40, 40, 0.16);
  border-color: rgba(210, 40, 40, 0.35);
}
.hero-title { font-size: 2.8rem; font-weight: 800; line-height: 1.1; }
.hero-title span {
  background: linear-gradient(135deg, var(--cyan), var(--blue), #00ffaa);
  background-size: 200% 200%; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  animation: gradientFlow 5s ease infinite;
}
.hero-subtitle { font-size: 0.92rem; color: var(--text-dim); max-width: 400px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; }

.hero-right { animation: fadeInUp 0.7s ease 0.15s both; }
.product-image-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(0, 100, 255, 0.12), 0 20px 50px rgba(0,0,0,0.5);
  animation: float 5s ease-in-out infinite 1s;
}
.product-image-wrapper img { border-radius: var(--radius-lg); }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 48px; animation: fadeInUp 0.5s ease both; }
.section-title {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { color: var(--text-dim); font-size: 0.92rem; }

/* --- Features Grid --- */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease both;
}
.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.06s; }
.feature-card:nth-child(3) { animation-delay: 0.12s; }
.feature-card:nth-child(4) { animation-delay: 0.18s; }
.feature-card:nth-child(5) { animation-delay: 0.24s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }
.feature-card:nth-child(7) { animation-delay: 0.36s; }
.feature-card:nth-child(8) { animation-delay: 0.42s; }
.feature-card:nth-child(9) { animation-delay: 0.48s; }

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(0, 160, 255, 0.1), 0 10px 24px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  width: 42px; height: 42px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 100, 255, 0.08), rgba(0, 220, 255, 0.04));
  border: 1px solid rgba(0, 160, 255, 0.18);
  color: var(--cyan);
  animation: pulse 3.5s ease-in-out infinite;
}

.feature-card h3 {
  font-size: 0.95rem; font-weight: 600; margin-bottom: 6px;
  color: #ddf0ff;
}
.feature-card p { color: var(--text-dim); font-size: 0.82rem; line-height: 1.65; }

/* --- Pricing --- */
.pricing-showcase {
  display: flex; justify-content: center;
  animation: fadeInUp 0.6s ease both;
}

.pricing-card {
  background: rgba(2, 8, 16, 0.92);
  border: 1px solid rgba(0, 140, 220, 0.25);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 60px rgba(0, 100, 200, 0.06), 0 20px 50px rgba(0, 0, 0, 0.4);
}
.pricing-card::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--blue-dark), var(--cyan), var(--blue), transparent, var(--blue-dark));
  background-size: 400% 400%;
  z-index: -1;
  animation: borderStream 6s linear infinite;
  opacity: 0.4;
}
.pricing-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-lg);
  background: rgba(2, 8, 16, 0.92);
  z-index: -1;
}

.pricing-badge {
  display: inline-block; padding: 4px 12px; border-radius: 6px;
  background: rgba(0, 200, 255, 0.06); color: var(--cyan);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.pricing-amount { margin-bottom: 22px; }
.price {
  font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.period { font-size: 0.85rem; color: var(--text-faint); }

.pricing-features { text-align: left; margin-bottom: 24px; }
.pricing-features li {
  padding: 8px 0; color: var(--text-dim); font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-features li:last-child { border-bottom: none; }

.payment-methods { display: flex; flex-direction: column; gap: 10px; }

/* --- Account --- */
.account-login-hint {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(4, 10, 18, 0.7);
  color: var(--text-dim);
}

.account-content {
  max-width: 900px;
  margin: 0 auto;
}

.account-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.account-status {
  margin-bottom: 14px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.purchase-list {
  display: grid;
  gap: 12px;
}

.purchase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.purchase-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.purchase-id {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.purchase-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.pill-completed {
  color: #6af0b6;
  border-color: rgba(0, 200, 130, 0.35);
  background: rgba(0, 200, 130, 0.08);
}

.pill-pending {
  color: #ffd68d;
  border-color: rgba(255, 185, 60, 0.35);
  background: rgba(255, 185, 60, 0.1);
}

.purchase-body {
  display: grid;
  gap: 10px;
}

.license-row {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.license-row code {
  color: var(--cyan);
  font-weight: 600;
}

.hwid-controls {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.hwid-input {
  width: 100%;
  padding: 10px 12px;
  background: rgba(0, 10, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.82rem;
  font-family: inherit;
}

.hwid-input:focus {
  outline: none;
  border-color: var(--cyan);
}

.hwid-note {
  color: var(--text-faint);
  font-size: 0.74rem;
}

.hwid-feedback {
  margin-top: 8px;
  font-size: 0.78rem;
}

.hwid-feedback.error { color: #ff9e9e; }
.hwid-feedback.success { color: #6af0b6; }

/* --- Admin --- */
.admin-content {
  max-width: 900px;
  margin: 0 auto;
}

.admin-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.admin-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #ddf0ff;
}

.admin-card p {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.admin-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 8px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
}

.audit-list {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.audit-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: rgba(0, 10, 20, 0.45);
}

.audit-item-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.audit-action {
  color: #ddf0ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.audit-time {
  color: var(--text-faint);
  font-size: 0.75rem;
}

.audit-meta {
  color: var(--text-dim);
  font-size: 0.77rem;
  line-height: 1.5;
}

.btn-purchase {
  background: linear-gradient(135deg, #0070dd, #00a0ff);
  color: #fff; font-size: 0.95rem; font-weight: 700;
  padding: 14px 24px;
  border: 1px solid rgba(0, 160, 255, 0.3);
}
.btn-purchase:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 130, 255, 0.35);
}

/* Method selection grid */
.method-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px;
}
.method-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 30px 16px;
  background: rgba(6, 12, 20, 0.9); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  transition: all 0.2s; font-family: inherit; color: var(--text-dim); font-size: 0.9rem; font-weight: 600;
}
.method-card small {
  font-size: 0.7rem; font-weight: 400; color: var(--text-faint); margin-top: -4px;
}
.method-card:hover {
  border-color: var(--border-hover); color: var(--text);
  background: rgba(0, 30, 60, 0.3);
}
.method-card:hover small { color: var(--text-dim); }
.method-card svg { color: var(--cyan); opacity: 0.7; }
.method-card:hover svg { opacity: 1; }

.back-btn {
  background: none; border: none; color: var(--text-dim); font-size: 0.82rem;
  cursor: pointer; font-family: inherit; margin-bottom: 12px; padding: 0;
}
.back-btn:hover { color: var(--text); }

/* --- Footer --- */
.footer { padding: 24px 0; border-top: 1px solid var(--border); }
.footer-bottom { text-align: center; }
.footer-bottom p { color: var(--text-faint); font-size: 0.72rem; }

/* --- Modal --- */
.modal { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); }
.modal-content {
  position: relative; background: rgba(4, 10, 18, 0.95); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; max-width: 420px; width: 100%;
  animation: fadeInUp 0.25s ease; box-shadow: 0 0 40px rgba(0, 80, 200, 0.12);
  backdrop-filter: blur(10px);
}
.modal-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  color: var(--text-faint); font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--text); }

.payment-form h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.modal-subtitle { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 22px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--text-dim); margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 11px 14px; background: rgba(0, 10, 20, 0.6);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-size: 0.88rem; font-family: inherit; transition: border-color 0.2s;
}
.form-group input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 8px rgba(0, 200, 255, 0.1); }
.form-group input::placeholder { color: var(--text-faint); }
.form-note { margin-top: 14px; font-size: 0.72rem; color: var(--text-faint); text-align: center; }

/* --- Robux Steps --- */
.robux-instructions { margin-bottom: 16px; }
.step-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.step {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.78rem;
  background: rgba(0, 10, 20, 0.6); border: 1px solid var(--border); color: var(--text-faint);
}
.step.active { background: var(--blue-dark); border-color: var(--blue); color: #fff; }
.step-line { width: 40px; height: 2px; background: var(--border); }
.instruction-text { color: var(--text-dim); font-size: 0.82rem; margin-bottom: 14px; text-align: center; }

.verify-status { margin-top: 10px; padding: 10px; border-radius: 8px; font-size: 0.78rem; text-align: center; display: none; }
.verify-status.error { display: block; background: rgba(255, 60, 60, 0.06); border: 1px solid rgba(255, 60, 60, 0.2); color: #ff6b6b; }
.verify-status.success { display: block; background: rgba(0, 220, 130, 0.06); border: 1px solid rgba(0, 220, 130, 0.2); color: var(--green); }
.verify-status.loading { display: block; background: rgba(0, 160, 255, 0.06); border: 1px solid rgba(0, 160, 255, 0.2); color: var(--blue); }

/* --- Success --- */
.success-icon {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(0, 220, 130, 0.08); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green);
}
.license-key-box {
  background: rgba(0, 10, 20, 0.5); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px; display: flex;
  align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px;
}
.license-key-box code { font-size: 0.78rem; color: var(--cyan); font-weight: 600; letter-spacing: 0.5px; word-break: break-all; }
.copy-btn {
  padding: 6px 12px; background: var(--blue-dark); border: none; border-radius: 6px;
  color: #fff; font-size: 0.72rem; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: inherit;
}
.copy-btn:hover { background: var(--blue); box-shadow: 0 0 10px rgba(0, 140, 255, 0.25); }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .hero-left { align-items: center; }
  .hero-badge { align-self: center; }
  .api-status { align-self: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .nav-auth { display: none; }
}

@media (max-width: 600px) {
  .nav-tabs { gap: 2px; padding: 2px; }
  .nav-tab { padding: 6px 10px; font-size: 0.72rem; }
  .hero-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .modal-content { padding: 24px 18px; }
  .hwid-controls { grid-template-columns: 1fr; }
  .admin-form-row { grid-template-columns: 1fr; }
  .admin-row { grid-template-columns: 1fr; }
}
