/* Цвета и тема в стиле приложения */
:root {
  --pv-bg: #0d1612;
  --pv-bg-2: #0f1a15;
  --pv-surface: #121c17;
  --pv-surface-2: #0f1d17;
  --pv-border: #163227;
  --pv-primary: #26c281;    /* акцент */
  --pv-secondary: #1f8a5f;  /* вторичный акцент */
  --pv-text: #e9f3ed;
  --pv-muted: #a7b7ae;
  --pv-danger: #ff6b6b;
  --pv-grad-1: #143024;
  --pv-grad-2: #28b07a;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, sans-serif;
  background: var(--pv-bg);
  color: var(--pv-text);
}

.pv-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.pv-center { display: grid; place-items: center; min-height: 80vh; }
.pv-small { font-size: 13px; }

/* Header */
.pv-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--pv-bg-2);
  border-bottom: 1px solid var(--pv-border);
}
.pv-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.pv-logo { display: flex; align-items: center; gap: 10px; }
.pv-logo-img { width: 28px; height: 28px; }
.pv-logo-text { font-weight: 700; letter-spacing: .2px; }

.pv-nav { display: flex; align-items: center; gap: 16px; }
.pv-link {
  color: var(--pv-text);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.pv-link:hover { border-color: var(--pv-border); background: var(--pv-surface-2); }
.pv-disabled { opacity: .5; pointer-events: none; }

/* Main sections */
.pv-main { padding: 24px 0 48px; }

.pv-hero .pv-card { padding: 22px; border-radius: 16px; }
.pv-card {
  background: var(--pv-surface);
  border: 1px solid var(--pv-border);
  border-radius: 14px;
  padding: 18px;
}

.pv-title {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .2px;
}
.pv-subtitle {
  margin: 0 0 16px 0; color: var(--pv-muted);
}

.pv-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pv-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--pv-border);
  transition: transform .06s ease, background .12s ease, border-color .12s ease;
}
.pv-btn:hover { transform: translateY(-1px); border-color: var(--pv-secondary); }
.pv-btn-primary {
  background: var(--pv-secondary);
  color: white;
  border-color: transparent;
}
.pv-btn-primary:hover { background: #1a7b54; }
.pv-btn-secondary {
  background: var(--pv-bg-2);
  color: var(--pv-text);
}
.pv-icon { display: inline-block; }

.pv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) {
  .pv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .pv-grid { grid-template-columns: 1fr; }
}

.pv-tile { padding: 18px; }
.pv-tile-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 8px;
  color: white;
}
.pv-grad {
  background: linear-gradient(135deg, var(--pv-grad-1), var(--pv-grad-2));
  box-shadow: 0 0 0 1px rgba(38,194,129,.25), 0 6px 18px rgba(38,194,129,.18);
}
.pv-tile-title { margin: 6px 0 8px 0; font-weight: 700; }
.pv-tile-text { margin: 0; color: var(--pv-muted); }

.pv-info-card { padding: 18px; }
.pv-info-title { margin: 0 0 8px 0; }
.pv-list { margin: 0; padding-left: 18px; }
.pv-muted { color: var(--pv-muted); }

/* Verify Card */
.pv-verify { text-align: center; max-width: 720px; }
.pv-verify-icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  margin: 0 auto 12px auto; color: white;
}

/* Footer */
.pv-footer { border-top: 1px solid var(--pv-border); padding: 18px 0; }
.pv-footer-inner { display: flex; align-items: center; justify-content: space-between; }
@media (max-width: 560px) {
  .pv-footer-inner { flex-direction: column; gap: 8px; }
}

/* Effects */
.pv-blur { backdrop-filter: saturate(140%) blur(6px); }
.pv-glow { box-shadow: 0 0 0 1px rgba(38,194,129,.18), 0 8px 26px rgba(31,138,95,.22); }
