/* Scope: my-budget-residential.html — change other dashboards in their own CSS files. */
.shell {
      border: 1px solid rgba(103,232,179,.18);
      background: rgba(10,18,15,.9);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 8px 24px rgba(0,0,0,.2);
    }
    .card {
      border: 1px solid rgba(103,232,179,.16);
      background: rgba(14,24,20,.88);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    }
    .tab { border: 1px solid #24513f; background: #0d1713; color: #9ac8b2; transition: all .18s ease; }
    .tab:hover { border-color: rgba(103,232,179,.45); background: rgba(16,30,24,.9); transform: translateY(-1px); }
    .tab.active { border-color: rgba(34,197,94,.65); background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(16,185,129,.1)); color: #ecfdf5; box-shadow: 0 0 10px rgba(34,197,94,.16); }
    .input {
      border: 1px solid rgba(103,232,179,.24);
      background: linear-gradient(180deg, rgba(11,20,17,.85), rgba(9,16,13,.72));
      color: #dcfce7;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .input option {
      background: #0b1411;
      color: #dcfce7;
    }
    .console {
      border: 1px solid rgba(103,232,179,.3);
      background: linear-gradient(180deg, rgba(4,11,8,.82), rgba(2,8,6,.72));
      color: #bbf7d0;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: inset 0 0 24px rgba(34,197,94,.08);
    }
    /* Scrollbars only on hover / focus (click or Tab into box). */
    .endpoint-box-scroll {
      overflow: auto;
      scrollbar-gutter: stable;
      scrollbar-width: thin;
      scrollbar-color: transparent transparent;
    }
    .endpoint-box-scroll:hover,
    .endpoint-box-scroll:focus,
    .endpoint-box-scroll:focus-visible {
      scrollbar-color: rgba(103, 232, 179, 0.45) rgba(0, 0, 0, 0.15);
    }
    .endpoint-box-scroll::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    .endpoint-box-scroll::-webkit-scrollbar-track {
      background: transparent;
    }
    .endpoint-box-scroll::-webkit-scrollbar-thumb {
      background: transparent;
      border-radius: 4px;
    }
    .endpoint-box-scroll:hover::-webkit-scrollbar-thumb,
    .endpoint-box-scroll:focus::-webkit-scrollbar-thumb,
    .endpoint-box-scroll:focus-visible::-webkit-scrollbar-thumb {
      background: rgba(103, 232, 179, 0.45);
    }
    .neon-btn {
      border: 1px solid rgba(34,197,94,.52);
      background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(16,185,129,.12));
      color: #ecfdf5;
      box-shadow: 0 4px 12px rgba(16,185,129,.18);
      transition: all .18s ease;
    }
    .neon-btn:hover { background: linear-gradient(135deg, rgba(34,197,94,.24), rgba(16,185,129,.16)); transform: translateY(-1px); box-shadow: 0 8px 16px rgba(16,185,129,.24); }
    .icon-btn {
      border: 1px solid rgba(148,163,184,.45);
      background: rgba(15,23,42,.45);
      color: #d1d5db;
      width: 30px;
      height: 30px;
      border-radius: 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      line-height: 1;
    }
    .icon-btn:hover { background: rgba(30,41,59,.7); border-color: rgba(148,163,184,.7); }
    .search-input { border: 1px solid rgba(34,197,94,.45); background: rgba(4,11,8,.8); color: #dcfce7; }
    .country-dd-panel {
      border: 1px solid rgba(103,232,179,.25);
      background: linear-gradient(135deg, rgba(8,16,13,.9), rgba(12,24,19,.82));
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 16px 36px rgba(0,0,0,.45), 0 0 0 1px rgba(103,232,179,.08) inset;
      z-index: 80;
    }
    .country-dd-item { border: 1px solid transparent; }
    .country-dd-item:hover { border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.12); }
    .country-dd-item.jump-hit { border-color: rgba(103,232,179,.62); background: rgba(34,197,94,.2); }
    .section-block {
      border: 1px solid rgba(103,232,179,.18);
      background: rgba(15,26,21,.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 6px 16px rgba(0,0,0,.16);
    }
    .section-title { color: #67e8b3; letter-spacing: .06em; font-weight: 700; font-size: 13px; text-transform: uppercase; border-bottom: 1px solid #24513f; padding-bottom: 8px; }
    .mini-field {
      border: 1px solid rgba(103,232,179,.15);
      background: rgba(12,21,17,.88);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    #countryDropdown, #stateDropdown, #cityDropdown { position: relative; z-index: 60; }
    .section-block { position: relative; overflow: visible; }
    #geoSection { z-index: 50; }
    #sessionSection { z-index: 10; }
    #sessionSection .session-chip-row {
      display: flex;
      align-items: stretch;
      gap: 0.5rem;
      width: 100%;
      min-width: 0;
    }
    #sessionSection .session-chip-row .session-chip {
      flex: 1 1 0;
      min-width: 0;
    }
    /* Above geo/session so Connection chips always receive clicks (geo dropdowns use high z-index). */
    #premiumConnectionSection { z-index: 55; }
    .mini-field label { color: #9ad3b8 !important; }
    .mini-field .input { border-color: #2f6d55; background: #0b1411; color: #dcfce7; }
    .session-chip {
      border: 1px solid rgba(103,232,179,.22);
      background: rgba(14,29,23,.72);
      color: #b7f7d3;
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      padding: 8px 12px;
      transition: all .18s ease;
    }
    .session-chip:hover {
      border-color: rgba(103,232,179,.42);
      background: rgba(34,197,94,.12);
    }
    .session-chip.active {
      border-color: rgba(34,197,94,.68);
      background: rgba(34,197,94,.18);
      box-shadow: 0 0 10px rgba(34,197,94,.16), inset 0 1px 0 rgba(255,255,255,.05);
      color: #ecfdf5;
    }
    .stats-preset {
      border: 1px solid rgba(103,232,179,.22);
      background: rgba(14,29,23,.72);
      color: #b7f7d3;
      font-size: 11px;
      font-weight: 600;
      line-height: 1;
      padding: 7px 10px;
      border-radius: 8px;
      transition: all .18s ease;
      white-space: nowrap;
    }
    .stats-preset:hover { border-color: rgba(103,232,179,.42); background: rgba(34,197,94,.12); }
    .stats-preset.active {
      border-color: rgba(148,163,184,.45);
      background: rgba(51,65,85,.35);
      color: #f1f5f9;
    }
    .stats-chart-canvas { width: 100%; height: 240px; display: block; min-width: 280px; }
    .stats-host-table-wrap {
      max-height: min(55vh, 380px);
      overflow: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
    }
    .stats-host-table-wrap table { font-size: 13px; line-height: 1.45; }
    @media (min-width: 768px) {
      .stats-host-table-wrap table { font-size: 14px; }
    }
    .api-summary-grid { display: grid; gap: 10px; grid-template-columns: repeat(1, minmax(0, 1fr)); }
    @media (min-width: 1024px) { .api-summary-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
    .api-card {
      border: 1px solid rgba(103,232,179,.22);
      background: linear-gradient(145deg, rgba(14,26,21,.72), rgba(10,18,15,.58));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all .2s ease;
      min-width: 0;
    }
    .api-card:hover { border-color: rgba(103,232,179,.4); transform: translateY(-1px); box-shadow: 0 10px 18px rgba(0,0,0,.2); }
    .api-card > div { min-width: 0; }
    .api-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      border: 1px solid rgba(103,232,179,.26);
      background: linear-gradient(135deg, rgba(45,212,191,.25), rgba(34,197,94,.18));
      color: #a7f3d0;
      flex: 0 0 auto;
    }
    .api-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #9ca3af; line-height: 1; }
    .api-value { margin-top: 4px; font-size: 15px; font-weight: 600; color: #ecfeff; line-height: 1.15; overflow-wrap: anywhere; word-break: break-word; }
    .api-actions { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto; }
    #apiUsernameText,
    #apiPasswordText {
      max-width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: block;
    }
    #apiPasswordText.show-full {
      white-space: normal;
      overflow: visible;
      text-overflow: initial;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .metric-card {
      border: 1px solid rgba(103,232,179,.2);
      background: rgba(14,24,20,.88);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 6px 16px rgba(0,0,0,.15);
      position: relative;
      overflow: visible;
    }
    .metric-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(80% 100% at 0% 0%, rgba(45,212,191,.1), transparent 55%);
      pointer-events: none;
    }
    .metric-title {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: #9ca3af;
      font-weight: 700;
    }
    .plan-showcase {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    @media (min-width: 1024px) {
      .plan-showcase { grid-template-columns: 1fr 1fr; align-items: stretch; }
    }
    .plan-card {
      border: 1px solid rgba(103,232,179,.24);
      background: linear-gradient(150deg, rgba(14,26,21,.86), rgba(10,18,15,.74));
      border-radius: 12px;
      padding: 10px 10px 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 120px;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 8px 20px rgba(0,0,0,.22);
      text-align: center;
    }
    .plan-icon {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      margin: 0 auto 8px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      background: radial-gradient(circle at 35% 30%, rgba(45,212,191,.22), rgba(3,7,18,.72));
      border: 1px solid rgba(103,232,179,.3);
      color: #99f6e4;
    }
    .plan-active-bar {
      margin: 10px -10px -8px;
      background: linear-gradient(90deg, rgba(22,163,74,.92), rgba(34,197,94,.95));
      color: #ecfdf5;
      text-align: center;
      padding: 6px 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
    }
    .plan-meta-list {
      border: 1px solid rgba(103,232,179,.16);
      border-radius: 12px;
      padding: 6px;
      background: rgba(9,16,13,.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }
    .plan-meta-list .k { color: #9ca3af; font-size: 10px; overflow-wrap: anywhere; }
    .plan-meta-list .v { color: #e6fffa; font-size: 11px; font-weight: 600; margin-top: 1px; overflow-wrap: anywhere; word-break: break-word; }
    .codebox { border: 1px solid rgba(103,232,179,.2); background: rgba(9,16,13,.75); border-radius: 12px; overflow: hidden; }
    .codebox-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-bottom: 1px solid rgba(103,232,179,.18); }
    .codebox-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
    .codebox-tab { border: 1px solid rgba(103,232,179,.2); background: rgba(14,29,23,.7); color: #cbd5e1; border-radius: 999px; padding: 4px 10px; font-size: 11px; }
    .codebox-tab.active { border-color: rgba(34,197,94,.6); background: rgba(34,197,94,.18); color: #ecfdf5; }
    .codebox-copy { border: 1px solid rgba(103,232,179,.3); background: rgba(34,197,94,.16); color: #ecfdf5; border-radius: 8px; padding: 4px 10px; font-size: 11px; }
    .codebox-pre { margin: 0; padding: 12px; font-size: 12px; color: #d1fae5; overflow-x: auto; white-space: pre; }
    .no-spinner::-webkit-outer-spin-button,
    .no-spinner::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
    .no-spinner { -moz-appearance: textfield; appearance: textfield; }
    .dropdown-list { scrollbar-width: none; -ms-overflow-style: none; }
    .dropdown-list::-webkit-scrollbar { width: 0; height: 0; }
    .plan-grid {
      border-top: 1px solid rgba(103,232,179,.16);
      padding-top: 10px;
    }
    .plan-grid p { margin: 0; }
    .plan-label { color: #94a3b8; font-size: 12px; }
    .plan-value { color: #ecfeff; font-weight: 600; font-size: 13px; text-align: right; }
    .addgb-panel {
      border: 1px solid rgba(16, 185, 129, 0.32);
      background: linear-gradient(155deg, rgba(8, 20, 18, 0.75), rgba(6, 14, 13, 0.7));
      border-radius: 12px;
      padding: 12px;
    }
    #addGbRange {
      -webkit-appearance: none;
      appearance: none;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, #0f766e 0%, #4338ca 100%);
      outline: none;
    }
    #addGbRange::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #0f766e;
      border: 2px solid #0a0b0f;
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
      cursor: pointer;
    }
    #addGbRange::-moz-range-thumb {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: #0f766e;
      border: 2px solid #0a0b0f;
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.22);
      cursor: pointer;
    }
    .page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(900px 500px at 20% 20%, rgba(56,189,248,.22), transparent 60%),
        radial-gradient(900px 500px at 80% 80%, rgba(16,185,129,.22), transparent 60%),
        rgba(2, 6, 23, 0.78);
      backdrop-filter: blur(8px) saturate(130%);
      -webkit-backdrop-filter: blur(8px) saturate(130%);
    }
    .page-loader.hidden { display: none; }
    .page-loader-card {
      min-width: 320px;
      max-width: 92vw;
      border-radius: 16px;
      border: 1px solid rgba(148,163,184,.35);
      background: linear-gradient(145deg, rgba(15,23,42,.78), rgba(2,6,23,.78));
      box-shadow: 0 24px 56px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
      padding: 18px 18px 16px;
      color: #e2e8f0;
    }
    .page-loader-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .page-loader-ring {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      border: 2px solid rgba(148,163,184,.25);
      border-top-color: rgba(56,189,248,.95);
      border-right-color: rgba(16,185,129,.95);
      box-shadow: 0 0 0 4px rgba(56,189,248,.14), 0 0 18px rgba(16,185,129,.2);
      animation: loader-spin .72s linear infinite;
      flex: 0 0 auto;
    }
    .page-loader-title {
      font-size: 14px;
      font-weight: 700;
      color: #f8fafc;
      letter-spacing: .01em;
    }
    .page-loader-sub {
      margin-top: 2px;
      font-size: 12px;
      color: #cbd5e1;
    }
    .page-loader-progress {
      margin-top: 10px;
      height: 8px;
      border-radius: 999px;
      background: rgba(51,65,85,.55);
      overflow: hidden;
      border: 1px solid rgba(148,163,184,.25);
    }
    .page-loader-progress > span {
      display: block;
      height: 100%;
      width: 40%;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(16,185,129,.2), rgba(56,189,248,.95), rgba(16,185,129,.9));
      animation: loader-slide 1s ease-in-out infinite;
    }
    @keyframes loader-spin { to { transform: rotate(360deg); } }
    .chilly-inline-loading {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      color: rgba(203, 213, 225, 0.95);
      vertical-align: middle;
    }
    .chilly-inline-loading--lg {
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1.2;
    }
    .chilly-inline-loading-ring {
      width: 0.95em;
      height: 0.95em;
      border-radius: 999px;
      border: 2px solid rgba(103, 232, 179, 0.22);
      border-top-color: rgba(52, 211, 153, 0.95);
      animation: loader-spin 0.65s linear infinite;
      flex: 0 0 auto;
    }
    .chilly-inline-loading-text {
      font-size: 0.92em;
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    @keyframes loader-slide {
      0% { transform: translateX(-120%); }
      100% { transform: translateX(260%); }
    }
    html, body { scrollbar-width: thin; }
    html::-webkit-scrollbar, body::-webkit-scrollbar { width: 10px; height: 10px; }
    html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb { background: rgba(103,232,179,.35); border-radius: 999px; }
    html::-webkit-scrollbar-track, body::-webkit-scrollbar-track { background: rgba(4,11,8,.45); }

/* Premium-only statistics skin (scoped by body class) */
.premium-geo-page .premium-transfer-shell {
  border: 1px solid rgba(34, 197, 94, 0.34);
  background: linear-gradient(180deg, rgba(10, 28, 18, 0.52), rgba(6, 18, 12, 0.44));
  box-shadow: inset 0 1px 0 rgba(187, 247, 208, 0.07), 0 16px 32px rgba(0, 0, 0, 0.24);
  max-width: 980px;
  margin: 0 auto;
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}
.premium-geo-page .premium-transfer-title {
  text-align: center;
  color: #bbf7d0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.premium-geo-page .premium-transfer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(34, 197, 94, 0.24);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(13, 33, 21, 0.44), rgba(8, 20, 14, 0.34));
  padding: 12px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(12px) saturate(125%);
  -webkit-backdrop-filter: blur(12px) saturate(125%);
}
.premium-geo-page .premium-transfer-item-active {
  border-color: rgba(16, 185, 129, 0.62);
  box-shadow: inset 3px 0 0 rgba(34, 197, 94, 0.9), 0 0 0 1px rgba(34, 197, 94, 0.18);
}
.premium-geo-page .premium-transfer-item:hover,
.premium-geo-page .premium-transfer-item:focus-within {
  border-color: rgba(34, 197, 94, 0.7);
  background: linear-gradient(145deg, rgba(16, 40, 27, 0.52), rgba(9, 25, 17, 0.42));
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.22), 0 10px 22px rgba(16, 185, 129, 0.16);
  transform: translateY(-1px);
}
.premium-geo-page .premium-transfer-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.22), rgba(34, 197, 94, 0.2));
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.36);
  flex: 0 0 auto;
  box-shadow: inset 0 1px 0 rgba(220, 252, 231, 0.16);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.premium-geo-page .premium-transfer-copy {
  min-width: 0;
  flex: 1 1 auto;
  text-align: center;
}
.premium-geo-page .premium-transfer-label {
  color: #86efac;
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.premium-geo-page .premium-transfer-value {
  color: #f0fdf4;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}
.premium-geo-page .premium-transfer-value-sm {
  font-size: 14px;
  white-space: normal;
}
.premium-geo-page #usedLast24hText {
  display: none;
}
.premium-geo-page .premium-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.premium-geo-page .premium-confirm-modal.hidden { display: none; }
.premium-geo-page .premium-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.72);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.premium-geo-page .premium-confirm-card {
  position: relative;
  width: min(440px, 92vw);
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: linear-gradient(165deg, rgba(8, 26, 18, 0.86), rgba(5, 16, 11, 0.8));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(220, 252, 231, 0.08);
  padding: 16px;
}
.premium-geo-page .premium-confirm-title {
  color: #bbf7d0;
  font-size: 16px;
  font-weight: 700;
}
.premium-geo-page .premium-confirm-message {
  margin-top: 6px;
  color: #e2e8f0;
  font-size: 13px;
  line-height: 1.45;
}
.premium-geo-page .premium-confirm-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.premium-geo-page .premium-confirm-btn {
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  transition: all .16s ease;
}
.premium-geo-page .premium-confirm-btn-cancel {
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.45);
}
.premium-geo-page .premium-confirm-btn-ok {
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #ecfdf5;
  background: linear-gradient(145deg, rgba(22, 163, 74, 0.32), rgba(16, 185, 129, 0.24));
}
.premium-geo-page .premium-confirm-btn:hover {
  transform: translateY(-1px);
}
.premium-geo-page .superport-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.34);
  background: linear-gradient(145deg, rgba(10, 30, 22, 0.56), rgba(7, 19, 14, 0.48));
  backdrop-filter: blur(9px) saturate(120%);
  -webkit-backdrop-filter: blur(9px) saturate(120%);
  padding: 10px 12px;
}
.premium-geo-page .superport-copy {
  min-width: 0;
  flex: 1 1 auto;
}
.premium-geo-page .superport-main {
  color: #ecfdf5;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.premium-geo-page .superport-sub {
  margin-top: 2px;
  color: #a7f3d0;
  font-size: 12px;
  line-height: 1.35;
  word-break: break-word;
}
.premium-geo-page .superport-delete-btn {
  flex: 0 0 auto;
  border-radius: 9px;
  border: 1px solid rgba(251, 113, 133, 0.5);
  background: linear-gradient(145deg, rgba(136, 19, 55, 0.4), rgba(127, 29, 29, 0.36));
  color: #ffe4e6;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  transition: all .16s ease;
}
.premium-geo-page .superport-delete-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 113, 133, 0.72);
  box-shadow: 0 8px 16px rgba(136, 19, 55, 0.24);
}

/* Password rotate cooldown / notice (budget + premium residential pages) */
.chilly-pass-cooldown-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.chilly-pass-cooldown-modal.hidden {
  display: none;
}
.chilly-pass-cooldown-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.chilly-pass-cooldown-card {
  position: relative;
  width: min(400px, 94vw);
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.38);
  background: linear-gradient(165deg, rgba(8, 28, 18, 0.92), rgba(5, 18, 12, 0.88));
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(16, 185, 129, 0.12) inset,
    0 1px 0 rgba(220, 252, 231, 0.1) inset;
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
  padding: 20px 20px 18px;
  text-align: center;
}
.chilly-pass-cooldown-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.45);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.22), rgba(5, 46, 22, 0.35));
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}
.chilly-pass-cooldown-title {
  color: #bbf7d0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 0;
}
.chilly-pass-cooldown-message {
  margin: 10px 0 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}
.chilly-pass-cooldown-timer-wrap {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(0, 0, 0, 0.22);
}
.chilly-pass-cooldown-timer-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86efac;
  opacity: 0.9;
}
.chilly-pass-cooldown-timer {
  display: block;
  margin-top: 6px;
  font-size: 28px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #ecfdf5;
  text-shadow: 0 0 24px rgba(52, 211, 153, 0.35);
  letter-spacing: 0.04em;
}
.chilly-pass-cooldown-ok {
  margin-top: 18px;
  width: 100%;
  border-radius: 11px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid rgba(34, 197, 94, 0.55);
  color: #ecfdf5;
  background: linear-gradient(145deg, rgba(22, 163, 74, 0.4), rgba(16, 185, 129, 0.28));
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.chilly-pass-cooldown-ok:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.28);
}

