/* ==========================================
   VPN PRO Mini App – Design System
   ========================================== */

:root {
  --c-bg: #060a11;
  --c-bg2: #0b1820;
  --c-bg3: #102c34;
  --c-bg4: #1b1712;
  --c-accent: #39e4cf;
  --c-accent-dark: #229cc4;
  --c-accent-glow: rgba(57, 228, 207, 0.35);
  --c-gold: #ffbf56;
  --c-gold-soft: #ffd898;
  --c-gold-glow: rgba(255, 191, 86, 0.32);
  --c-text: #ffffff;
  --c-text-dim: rgba(255, 255, 255, 0.55);
  --c-text-muted: rgba(255, 255, 255, 0.35);
  --c-glass-bg: rgba(11, 22, 30, 0.72);
  --c-glass-border: rgba(104, 220, 218, 0.14);
  --c-glass-bg-light: rgba(18, 37, 47, 0.82);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-webkit-scrollbar { display: none; }
body { scrollbar-width: none; }

/* ==========================================
   Container
   ========================================== */
.app-container {
  max-width: 420px;
  margin: 0 auto;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 191, 86, 0.16), transparent 24%),
    radial-gradient(circle at 28% 0%, rgba(57, 228, 207, 0.18), transparent 26%),
    radial-gradient(circle at 50% 70%, rgba(34, 156, 196, 0.16), transparent 28%),
    linear-gradient(180deg, var(--c-bg4) 0%, var(--c-bg2) 22%, var(--c-bg) 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
}

.app-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.18;
  pointer-events: none;
}

/* ==========================================
   Header
   ========================================== */
.header {
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(7, 14, 22, 0.86);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.header-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--c-gold-soft), var(--c-gold), var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================
   Glass Card
   ========================================== */
.glass {
  background: var(--c-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
}

.glass-light {
  background: var(--c-glass-bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

/* ==========================================
   Buttons – Modern Premium Style
   ========================================== */
.btn {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 191, 86, 0.26);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(37, 41, 39, 0.96), rgba(28, 33, 31, 0.96));
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.22);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:active {
  transform: scale(0.97);
}

/* Primary CTA */
.btn-primary {
  background: linear-gradient(180deg, rgba(37, 41, 39, 0.96), rgba(28, 33, 31, 0.96));
  color: #fff;
  font-size: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(43, 47, 44, 0.98), rgba(32, 37, 35, 0.98));
  border-color: rgba(255, 191, 86, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 3px 10px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.97) translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 1px 2px rgba(0, 0, 0, 0.22);
}

/* Secondary / Ghost */
.btn-secondary {
  background: linear-gradient(180deg, rgba(37, 41, 39, 0.96), rgba(28, 33, 31, 0.96));
  border: 1px solid rgba(255, 191, 86, 0.26);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(43, 47, 44, 0.98), rgba(32, 37, 35, 0.98));
  border-color: rgba(255, 191, 86, 0.34);
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: scale(0.97);
  background: rgba(255, 255, 255, 0.08);
}

/* Ghost / Back button */
.btn-ghost {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 15px;
  font-family: var(--font);
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  width: auto;
  justify-content: flex-start;
}

.btn-ghost:hover {
  opacity: 1;
}

/* Pill button (small) */
.btn-pill {
  background: linear-gradient(180deg, rgba(37, 41, 39, 0.96), rgba(28, 33, 31, 0.96));
  color: #fff;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  border: 1px solid rgba(255, 191, 86, 0.26);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-pill:hover {
  background: linear-gradient(180deg, rgba(43, 47, 44, 0.98), rgba(32, 37, 35, 0.98));
  transform: translateY(-1px);
}

/* Plan card button */
.btn-plan {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  position: relative;
  background: linear-gradient(180deg, rgba(37, 41, 39, 0.96), rgba(28, 33, 31, 0.96));
  border: 1px solid rgba(255, 191, 86, 0.22);
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font);
  color: var(--c-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.btn-plan:hover {
  background: linear-gradient(180deg, rgba(43, 47, 44, 0.98), rgba(32, 37, 35, 0.98));
  border-color: rgba(255, 191, 86, 0.34);
  transform: translateY(-2px);
}

.btn-plan.active {
  background: linear-gradient(180deg, rgba(48, 52, 48, 0.98), rgba(34, 39, 37, 0.98));
  border-color: rgba(255, 191, 86, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 191, 86, 0.1),
    0 4px 14px rgba(0, 0, 0, 0.16);
}

/* Menu item button */
.btn-menu {
  width: 100%;
  padding: 14px 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font);
  transition: background 0.2s;
}

.btn-menu:hover {
  background: rgba(255, 191, 86, 0.04);
}

/* ==========================================
   Radial Hero
   ========================================== */
.hero-radial {
  display: flex;
  justify-content: center;
  padding: 40px 0 20px;
  position: relative;
}

.hero-ring-outer {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 191, 86, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(57, 228, 207, 0.12) 0%, rgba(255, 191, 86, 0.02) 58%, transparent 72%);
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero-ring-mid {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(57, 228, 207, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 4s ease-in-out infinite 0.5s;
}

.hero-ring-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(57, 228, 207, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-glow 4s ease-in-out infinite 1s;
}

.hero-icon svg {
  width: 64px;
  height: 64px;
}

/* ==========================================
   Status Bar
   ========================================== */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.status-label {
  font-size: 18px;
  font-weight: 600;
}

.status-sub {
  font-size: 13px;
  margin-top: 3px;
  transition: color 0.3s;
}

.status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 191, 86, 0.14);
  border: 1px solid rgba(255, 191, 86, 0.26);
  font-size: 13px;
  color: var(--c-gold-soft);
  font-weight: 500;
}

/* ==========================================
   Tab Bar
   ========================================== */
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: space-around;
  padding: 10px 0 20px;
  background: rgba(8, 14, 21, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 10;
}

.tab-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--c-text-muted);
  padding: 4px 12px;
  border-radius: 12px;
  position: relative;
  transition: color 0.3s;
  font-family: var(--font);
}

.tab-btn.active {
  color: var(--c-accent);
}

.tab-btn .tab-indicator {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(57, 228, 207, 0.16), rgba(255, 191, 86, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-btn .tab-label {
  font-size: 10px;
  font-weight: 500;
}

/* ==========================================
   Page content
   ========================================== */
.page {
  padding: 0 20px 100px 20px;
}

/* Plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.plan-label {
  font-size: 14px;
  color: var(--c-text-dim);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 26px;
  font-weight: 700;
}

.plan-per {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-top: 4px;
}

.plan-devices {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

.plan-star {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--c-accent);
  font-size: 16px;
}

.plan-save {
  position: absolute;
  top: -10px;
  right: 10px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-soft));
  color: #241300;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(255, 191, 86, 0.24);
}

/* Platform grid */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.platform-card {
  padding: 10px 10px;
  min-height: 104px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.platform-emoji {
  font-size: 18px;
  margin-bottom: 4px;
}

.platform-link {
  font-size: 11px;
  color: var(--c-accent);
}

.platform-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
}

/* Profile */
.profile-user {
  padding: 16px 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(57, 228, 207, 0.3);
}

.profile-avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.section-title {
  font-size: 13px;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 4px;
  padding: 6px 20px;
  margin-top: 8px;
}

.menu-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Referral link */
.ref-link-box {
  padding: 14px 16px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ref-link-label {
  font-size: 13px;
  color: var(--c-text-dim);
}

.ref-link-url {
  font-size: 13px;
  color: #fff;
  margin-top: 4px;
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--c-text-dim);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s, transform 0.2s;
  font-family: var(--font);
}

.copy-btn:hover {
  color: var(--c-accent);
}

.copy-btn.is-success {
  color: var(--c-accent);
}

.copy-btn:active {
  transform: scale(0.9);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.stat-value {
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 700;
}

.stat-label {
  font-size: 12px;
  color: var(--c-text-dim);
}

/* Support item */
.support-item {
  padding: 16px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s;
}

.support-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.support-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(57, 228, 207, 0.12), rgba(255, 191, 86, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.referral-hero {
  position: relative;
  overflow: hidden;
  padding: 16px 16px 14px;
  margin-bottom: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 191, 86, 0.16);
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 191, 86, 0.22), transparent 22%),
    radial-gradient(circle at 18% 12%, rgba(57, 228, 207, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(11, 18, 27, 0.95), rgba(18, 29, 36, 0.96));
}

.referral-eyebrow {
  color: var(--c-gold-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.referral-subtitle {
  max-width: 320px;
}

.referral-highlight {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 191, 86, 0.08);
  border: 1px solid rgba(255, 191, 86, 0.18);
  margin-bottom: 8px;
  font-size: 12px;
}

.referral-highlight-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}

.referral-note {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.referral-status-card {
  padding: 12px 14px;
  margin-bottom: 12px;
}

.section-title-inline {
  padding: 0;
  margin: 0 0 14px;
}

.withdraw-section {
  padding: 14px 16px;
  margin-top: 12px;
}

.withdraw-methods {
  display: grid;
  gap: 8px;
}

.withdraw-card {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.withdraw-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.withdraw-title {
  font-size: 14px;
  font-weight: 700;
}

.withdraw-subtitle {
  font-size: 12px;
  color: var(--c-text-dim);
  margin-top: 4px;
}

.withdraw-badge {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 191, 86, 0.22);
  background: rgba(255, 191, 86, 0.08);
  color: var(--c-gold-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
}

.withdraw-details {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.withdraw-meta {
  margin-top: 6px;
  font-size: 12px;
  color: var(--c-accent);
}

/* Trial card */
.trial-card {
  width: 100%;
  padding: 16px;
  cursor: pointer;
  border: 1.5px solid rgba(57, 228, 207, 0.34);
  background: rgba(57, 228, 207, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s;
  font-family: var(--font);
  color: var(--c-text);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.trial-card:hover {
  background: rgba(57, 228, 207, 0.14);
  border-color: rgba(57, 228, 207, 0.46);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(57, 228, 207, 0.15);
}

/* Empty state */
.empty-state {
  padding: 30px 20px;
  margin-top: 16px;
  text-align: center;
}

.empty-emoji {
  font-size: 32px;
  opacity: 0.3;
}

.empty-text {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-top: 8px;
}

/* H1, H2 headings */
h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.1;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 8px;
}

.subtitle {
  font-size: 14px;
  color: var(--c-text-dim);
  margin: 0 0 24px;
}

/* Info box */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.info-icon {
  color: var(--c-accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-text {
  font-size: 14px;
  color: var(--c-text-dim);
  line-height: 1.5;
}

.info-text strong {
  color: var(--c-accent);
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(57, 228, 207, 0);
    border-color: rgba(57, 228, 207, 0.12);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 191, 86, 0.08);
    border-color: rgba(255, 191, 86, 0.22);
  }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Particles (ambient light) */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(57, 228, 207, 0.3);
  pointer-events: none;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-200px) scale(0);
  }
}

/* Ripple effect for buttons */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ==========================================
   Utility
   ========================================== */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-10 {
  gap: 10px;
}

.gap-14 {
  gap: 14px;
}

.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }

.btn-compact {
  padding: 9px 12px;
  min-height: 48px;
}

.text-accent { color: var(--c-accent); }
.text-dim { color: var(--c-text-dim); }
.text-muted { color: var(--c-text-muted); }

.strike { text-decoration: line-through; opacity: 0.5; font-size: 14px; }

/* Payment method selector */
.pm-label {
  font-size: 13px;
  color: var(--c-text-dim);
  margin: 8px 2px 10px;
  letter-spacing: 0.02em;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.pm-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  background: linear-gradient(180deg, rgba(37, 41, 39, 0.96), rgba(28, 33, 31, 0.96));
  border: 1px solid rgba(255, 191, 86, 0.18);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font);
  color: var(--c-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pm-chip:hover {
  border-color: rgba(255, 191, 86, 0.32);
  transform: translateY(-1px);
}

.pm-chip.active {
  background: linear-gradient(180deg, rgba(48, 52, 48, 0.98), rgba(34, 39, 37, 0.98));
  border-color: rgba(255, 191, 86, 0.50);
  box-shadow:
    inset 0 0 0 1px rgba(255, 191, 86, 0.12),
    0 4px 14px rgba(0, 0, 0, 0.16);
}

.pm-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.pm-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pm-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pm-sub {
  font-size: 11px;
  color: var(--c-text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
