    :root {
      --bg: #0b1020;
      --bg-soft: #121933;
      --panel: rgba(255, 255, 255, 0.06);
      --panel-border: rgba(255, 255, 255, 0.1);
      --text: #f5f7ff;
      --muted: #a8b0cc;
      --primary: #2bb9ed;
      --primary-strong: #1ea7d9;
      --success: #1fc77a;
      --danger: #ff5d73;
      --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
      --radius: 22px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at top left, rgba(43, 185, 237, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(31, 199, 122, 0.08), transparent 24%),
        linear-gradient(180deg, #08101f 0%, #0b1020 100%);
      color: var(--text);
      min-height: 100vh;
      overflow-y: scroll;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .app-shell {
      max-width: 1240px;
      margin: 0 auto;
      padding: 32px 20px 60px;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 26px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--text);
      letter-spacing: -0.02em;
      flex-wrap: wrap;
    }

    .brand-logo {
      height: 36px;
      width: auto;
      display: block;
    }

    .brand-text {
      color: var(--text);
    }

    .brand-accent {
      color: var(--primary);
    }

    .topbar-note {
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 500;
      margin-left: 8px;
      white-space: nowrap;
    }

    .hello-card {
      padding: 24px;
      min-height: 160px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      gap: 10px;
    }

    .hello-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 14px;
    }

    .hello-name {
      font-size: 1.55rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--text);
    }

    .hello-sub {
      margin-top: 4px;
      font-size: 0.96rem;
      line-height: 1.6;
    }

    .hello-muted {
      color: var(--muted);
    }

    .hello-status-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .hello-status {
      font-weight: 700;
    }

    .hello-status-online {
      color: #8df0c8;
    }

    .hello-status-down {
      color: #ffb3b3;
    }

    .hello-status-warning {
      color: #ffd978;
    }

    .hello-card-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-top: auto;
    }

    .hello-settings-btn {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      cursor: pointer;
      font-size: 1rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .hello-settings-btn:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .main-grid {
      display: grid;
      grid-template-columns: minmax(250px, 0.88fr) minmax(420px, 1.18fr) minmax(280px, 0.94fr);
      gap: 22px;
      align-items: start;
    }

    .left-column,
    .center-column,
    .right-column {
      display: grid;
      gap: 18px;
      align-items: start;
    }

    .card {
      background: var(--panel);
      border: 1px solid var(--panel-border);
      border-radius: 24px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .hero-card {
      padding: 28px;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 20px;
    }

    .add-url-card {
      padding: 22px;
    }
    
    .add-url-card-inner {
      padding: 0;
    }

    .tool-header {
      margin-bottom: 22px;
    }
    
    .tool-title {
      margin: 0 0 10px;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      line-height: 1.08;
      letter-spacing: -0.035em;
    }
    
    .tool-subtext {
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 620px;
    }

    .hero-actions-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 6px;
    }

    .check-box {
      margin-top: 22px;
      padding: 20px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .input-label {
      display: block;
      font-size: 0.92rem;
      color: #dce2ff;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .input-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .url-input {
      flex: 1;
      min-width: 260px;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(9, 14, 31, 0.75);
      color: var(--text);
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .url-input:focus {
      border-color: rgba(43, 185, 237, 0.75);
      transform: translateY(-1px);
    }

    .btn {
      border: 0;
      border-radius: 16px;
      padding: 15px 18px;
      font-size: 0.98rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #7ee7b7);
      color: #08101f;
      min-width: 160px;
    }

    .btn-success {
      background: linear-gradient(135deg, #1fc77a, #16a968);
      color: white;
      min-width: 190px;
    }

    .status-area {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .message {
      display: none;
      border-radius: 16px;
      padding: 14px 16px;
      font-size: 0.96rem;
      line-height: 1.5;
      border: 1px solid transparent;
    }

    .message.show {
      display: block;
    }

    .message-success {
      background: rgba(31, 199, 122, 0.14);
      border-color: rgba(31, 199, 122, 0.26);
      color: #baf2d5;
    }

    .message-error {
      background: rgba(255, 93, 115, 0.14);
      border-color: rgba(255, 93, 115, 0.26);
      color: #ffd2d9;
    }

    .message-neutral {
      background: rgba(43, 185, 237, 0.14);
      border-color: rgba(43, 185, 237, 0.25);
      color: #d7eaff;
    }

    .result-card {
      display: none;
      margin-top: 12px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .result-card.show {
      display: block;
    }

    .details-card {
      padding: 24px;
      display: block;
    }
    
    .details-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }
    
    .details-title-wrap {
      display: grid;
      gap: 6px;
    }
    
    .details-eyebrow {
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #8ea0c8;
    }
    
    .details-title {
      margin: 0;
      font-size: 1.25rem;
      line-height: 1.2;
      letter-spacing: -0.03em;
      color: #eef2ff;
      word-break: break-word;
    }
    
    .details-subtext {
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.6;
    }
    
    .details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    
    .details-stat {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.08);
      min-height: 92px;
    }
    
    .details-stat-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: #8ea0c8;
      margin-bottom: 8px;
    }
    
    .details-stat-value {
      font-size: 0.98rem;
      font-weight: 800;
      color: #eef2ff;
      line-height: 1.45;
      word-break: break-word;
    }
    
    .details-stat-value-muted {
      color: var(--muted);
      font-weight: 700;
    }
    
    .details-empty {
      padding: 24px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.035);
      border: 1px dashed rgba(255, 255, 255, 0.10);
    }
    
    .details-empty-title {
      font-size: 1rem;
      font-weight: 800;
      color: #eef2ff;
      margin-bottom: 8px;
    }
    
    .details-empty-text {
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.94rem;
    }
    
    .priority-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    
    .priority-site {
      font-size: 1.6rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .priority-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 4px;
      font-size: 0.88rem;
      font-weight: 700;
      color: #7dd3fc;
    }
    
    .priority-meta {
      color: var(--muted);
      font-size: 0.9rem;
    }
    
    .priority-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 18px;
    }
    
    .priority-stat {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
    }
    
    .priority-stat-label {
      font-size: 0.82rem;
      color: var(--muted);
      margin-bottom: 6px;
    }
    
    .priority-stat-value {
      font-size: 1.4rem;
      font-weight: 800;
    }

    .priority-stat-clickable {
      cursor: pointer;
      transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
    }
    
    .priority-stat-clickable:hover {
      transform: translateY(-1px);
    }
    
    .priority-stat-active[data-chart-metric="response"] {
      border: 1px solid rgba(96, 165, 250, 0.45);
      background: rgba(96, 165, 250, 0.08);
    }
    
    .priority-stat-active[data-chart-metric="uptime"] {
      border: 1px solid rgba(52, 211, 153, 0.45);
      background: rgba(52, 211, 153, 0.08);
    }
    
    .uptime-chart-svg {
      color: rgba(52, 211, 153, 0.85);
    }

    .priority-insight {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .priority-insight-good,
    .priority-insight-warning,
    .priority-insight-down {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.2;
    }
    
    .priority-insight-good {
      color: #34d399;
    }
    
    .priority-insight-warning {
      color: #fbbf24;
    }
    
    .priority-insight-down {
      color: #f87171;
    }
    
    .priority-insight-sub {
      margin-top: 6px;
      font-size: 14px;
      line-height: 1.5;
      color: rgba(255, 255, 255, 0.72);
    }

    .response-chart-card {
      position: relative;
      margin-top: 18px;
      padding: 18px 18px 16px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
      overflow: hidden;
    }
    
    .response-chart-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }
    
    .response-chart-title {
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #eef2ff;
    }
    
    .response-chart-sub {
      margin-top: 5px;
      font-size: 0.82rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.64);
    }
    
    .response-chart-average {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(125, 211, 252, 0.10);
      border: 1px solid rgba(125, 211, 252, 0.16);
      font-size: 0.84rem;
      font-weight: 800;
      color: #7dd3fc;
      white-space: nowrap;
    }

    .uptime-chart-average {
      color: rgba(52, 211, 153, 0.95);
      background: rgba(52, 211, 153, 0.10);
      border-color: rgba(52, 211, 153, 0.16);
    }
    
    .response-chart-svg {
      display: block;
      width: 100%;
      height: 148px;
      color: #60a5fa;
      overflow: visible;
    }

    .chart-point {
      cursor: pointer;
      transition: r 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
      opacity: 0.96;
      pointer-events: none;
    }
    
    .chart-point:hover {
      r: 6.5;
      opacity: 1;
      filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
    }
    
    .chart-point-response {
      fill: #60a5fa;
    }
    
    .chart-point-uptime {
      fill: #34d399;
    }

    .chart-hover-line {
      stroke: rgba(255, 255, 255, 0.28);
      stroke-width: 1.5;
      stroke-dasharray: 4 5;
      opacity: 0;
      transition: opacity 0.16s ease;
      pointer-events: none;
    }
    
    .chart-hover-line.show {
      opacity: 1;
    }
    
    .chart-tooltip {
      position: absolute;
      z-index: 5;
      min-width: 168px;
      max-width: 208px;
      padding: 11px 12px;
      border-radius: 15px;
      background: linear-gradient(180deg, rgba(12, 18, 38, 0.98), rgba(9, 14, 31, 0.96));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      pointer-events: none;
      opacity: 0;
      transform: translateY(6px) scale(0.98);
      transition: opacity 0.16s ease, transform 0.16s ease;
    }
    
    .chart-tooltip.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    
    .chart-tooltip-title {
      font-size: 0.74rem;
      font-weight: 800;
      color: #8ea0c8;
      margin-bottom: 5px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    
    .chart-tooltip-value {
      font-size: 0.98rem;
      font-weight: 800;
      color: #f3f6ff;
      line-height: 1.3;
    }
    
    .chart-tooltip-time {
      margin-top: 5px;
      font-size: 0.82rem;
      color: #b5bfdc;
      line-height: 1.35;
    }
    
    .response-chart-empty {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 14px;
      color: rgba(255, 255, 255, 0.68);
    }

    .report-toggle-row {
      display: flex;
      justify-content: flex-end;
      margin-top: 12px;
    }
    
    .report-toggle-btn {
      border: 1px solid rgba(125, 211, 252, 0.24);
      background: linear-gradient(180deg, rgba(125, 211, 252, 0.12), rgba(125, 211, 252, 0.08));
      color: #7dd3fc;
      border-radius: 999px;
      padding: 9px 15px;
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    }
    
    .report-toggle-btn:hover {
      transform: translateY(-1px);
      background: linear-gradient(180deg, rgba(125, 211, 252, 0.18), rgba(125, 211, 252, 0.11));
      border-color: rgba(125, 211, 252, 0.36);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }
    
    .report-card {
      margin-top: 14px;
      padding: 18px;
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    
      /* NEW */
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .report-card.show {
      opacity: 1;
      transform: translateY(0);
    }
    
    .report-card-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 14px;
    }

    .report-copy-btn {
      min-width: 138px;
      border: 1px solid rgba(125, 211, 252, 0.24);
      background: linear-gradient(180deg, rgba(125, 211, 252, 0.12), rgba(125, 211, 252, 0.08));
      color: #7dd3fc;
      border-radius: 999px;
      padding: 9px 13px;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      cursor: pointer;
      white-space: nowrap;
      transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
    }

    .report-actions {
      display: flex;
      justify-content: flex-end;
      margin-top: 14px;
    }
    
    .report-copy-btn:hover {
      transform: translateY(-1px);
      background: linear-gradient(180deg, rgba(125, 211, 252, 0.18), rgba(125, 211, 252, 0.12));
      border-color: rgba(125, 211, 252, 0.34);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }
    
    .report-card-title {
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #eef2ff;
    }
    
    .report-card-sub {
      margin-top: 5px;
      font-size: 0.87rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.66);
    }

    .report-summary-banner {
      margin-bottom: 14px;
      padding: 14px 16px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
    }
    
    .report-summary-good {
      background: rgba(52, 211, 153, 0.08);
      border-color: rgba(52, 211, 153, 0.16);
    }
    
    .report-summary-warning {
      background: rgba(251, 191, 36, 0.10);
      border-color: rgba(251, 191, 36, 0.18);
    }
    
    .report-summary-down {
      background: rgba(248, 113, 113, 0.10);
      border-color: rgba(248, 113, 113, 0.18);
    }
    
    .report-summary-title {
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: -0.01em;
      color: #eef2ff;
    }
    
    .report-summary-text {
      margin-top: 5px;
      font-size: 0.84rem;
      line-height: 1.55;
      color: rgba(255, 255, 255, 0.74);
    }
    
    .report-placeholder {
      font-size: 0.92rem;
      line-height: 1.6;
      color: #b5bfdc;
    }

    .report-stats-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    
    .report-stat {
      padding: 15px 16px;
      border-radius: 15px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .report-stat-wide {
      grid-column: 1 / -1;
    }
    
    .report-stat-label {
      font-size: 0.8rem;
      font-weight: 700;
      color: #8ea0c8;
      margin-bottom: 7px;
    }
    
    .report-stat-value {
      font-size: 1.08rem;
      font-weight: 800;
      color: #eef2ff;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }
    
    .report-stat-sub {
      margin-top: 6px;
      font-size: 0.78rem;
      line-height: 1.45;
      color: rgba(255, 255, 255, 0.58);
    }

    .result-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .result-url {
      font-size: 0.96rem;
      color: #dce2ff;
      word-break: break-word;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .pill-up {
      color: #baf2d5;
      background: rgba(31, 199, 122, 0.14);
      border: 1px solid rgba(31, 199, 122, 0.24);
    }

    .pill-down {
      color: #ffd2d9;
      background: rgba(255, 93, 115, 0.14);
      border: 1px solid rgba(255, 93, 115, 0.24);
    }

    
    .sites-card {
      padding: 26px;
      overflow: visible;
    }

    .activity-card {
      padding: 24px;
      margin-bottom: 0;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .activity-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }
    
    .activity-title {
      font-size: 1.08rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }
    
    .activity-live-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.10);
      color: var(--text);
      font-size: 0.9rem;
      font-weight: 700;
      white-space: nowrap;
    }
    
    .activity-live-pill::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 0 rgba(43, 185, 237, 0.7);
      animation: pulseBlue 2.4s infinite;
    }
    
    .activity-list {
      display: grid;
      gap: 0;
    }
    
    .activity-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .activity-entry-content {
      min-width: 0;
    }
    
    .activity-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    
    .activity-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
    }
    
    .activity-dot-online {
      background: #34d399;
    }

    .activity-dot-down {
      background: #ff5d73;
      box-shadow: 0 0 0 0 rgba(255, 93, 115, 0.7);
      animation: pulseRed 2.4s infinite;
    }
    
    .activity-dot-info {
      background: #2bb9ed;
    }

    .activity-dot-warning {
      background: #fbbf24;
      box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
      animation: pulseWarning 2.4s infinite;
    }
    
    .activity-entry-topline {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 12px;
    }
    
    .activity-entry-site {
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #eef2ff;
      min-width: 0;
    }
    
    .activity-entry-fresh {
      font-size: 0.8rem;
      font-weight: 800;
      color: #8df0c8;
      white-space: nowrap;
      justify-self: end;
    }
    
    .activity-entry-action {
      margin-top: 4px;
      font-size: 0.95rem;
      line-height: 1.45;
      color: #dce7ff;
    }

    .activity-entry-header {
      font-weight: 800;
      color: #eef2ff;
      letter-spacing: -0.01em;
    }
    
    .activity-entry-sub {
      margin-top: 2px;
      font-size: 0.9rem;
      color: #dce7ff;
      line-height: 1.4;
    }
    
        
    .activity-empty {
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.6;
    }

    .sites-head {
      display: grid;
      gap: 14px;
      margin-bottom: 18px;
    }
    
    .sites-head-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    
    .sites-head h2 {
      margin: 0;
      font-size: 1.3rem;
      letter-spacing: -0.03em;
    }
    
    .sites-add-btn {
      width: 100%;
      min-width: 0;
      justify-content: center;
    }

    .sites-add-btn.btn {
      min-height: 48px;
      border-radius: 16px;
    }

    .site-count {
      padding: 10px 12px;
      border-radius: 14px;
      background: rgba(43, 185, 237, 0.12);
      border: 1px solid rgba(43, 185, 237, 0.22);
      color: #dceeff;
      font-size: 0.9rem;
      font-weight: 700;
    }

    .check-all-btn {
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      border-radius: 14px;
      padding: 10px 14px;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    }
    
    .check-all-btn:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.08);
    }
    
    .check-all-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
      transform: none;
    }

    .sites-toolbar {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }
    
    .sites-search-wrap {
      position: relative;
      flex: 1;
    }
    
    .sites-search-icon {
      position: absolute;
      top: 50%;
      left: 14px;
      transform: translateY(-50%);
      color: #8ea0c8;
      font-size: 0.9rem;
      pointer-events: none;
      z-index: 1;
    }

    .sites-search-input {
      width: 100%;
      padding: 13px 16px 13px 40px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.045);
      color: #eef2ff;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .sites-search-input::placeholder {
      color: #8ea0c8;
    }

    .sites-search-input:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.16);
    }

    .sites-search-input:focus {
      border-color: rgba(43, 185, 237, 0.7);
      background: rgba(255, 255, 255, 0.065);
      box-shadow: 0 0 0 4px rgba(43, 185, 237, 0.10);
    }

    .site-item {
      padding: 14px 16px;
      border-radius: 20px;
      min-height: 0;
      cursor: pointer;
      transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
    }

    .site-item:hover {
      transform: translateY(-4px);
    }

    .site-item-online {
      background: rgba(52, 211, 153, 0.06);
      border: 1px solid rgba(52, 211, 153, 0.18);
      box-shadow: inset 0 0 0 1px rgba(52, 211, 153, 0.04);
    }

    .site-item-online:hover {
      box-shadow:
        inset 0 0 0 1px rgba(52, 211, 153, 0.06),
        0 14px 30px rgba(0, 0, 0, 0.20);
    }

    .site-item-warning {
      background: rgba(251, 191, 36, 0.10);
      border: 1px solid rgba(251, 191, 36, 0.28);
      box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.06);
    }

    .site-item-warning:hover {
      box-shadow:
        inset 0 0 0 1px rgba(251, 191, 36, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.18);
    }

    .site-item-down {
      background: rgba(255, 93, 115, 0.08);
      border: 1px solid rgba(255, 93, 115, 0.28);
      box-shadow: inset 0 0 0 1px rgba(255, 93, 115, 0.08);
    }

    .site-item-down:hover {
      box-shadow:
        inset 0 0 0 1px rgba(255, 93, 115, 0.08),
        0 12px 24px rgba(0, 0, 0, 0.18);
    }

    .site-item-priority {
      position: relative;
    }

    .site-item-priority:hover {
      box-shadow:
        inset 0 0 0 1px rgba(43, 185, 237, 0.10),
        0 0 0 1px rgba(43, 185, 237, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.18);
    }

    .site-item-selected {
      border-width: 2px;
      transform: translateY(-2px);
    }
    
    .site-item-selected:hover {
      transform: translateY(-4px);
    }

    /* ONLINE + SELECTED */
    .site-item-online.site-item-selected {
      background: rgba(52, 211, 153, 0.10);
      border-color: rgba(52, 211, 153, 0.35);
      box-shadow:
        inset 0 0 0 1px rgba(52, 211, 153, 0.08),
        0 0 0 1px rgba(52, 211, 153, 0.12),
        0 14px 30px rgba(0, 0, 0, 0.22);
    }
    
    /* WARNING + SELECTED */
    .site-item-warning.site-item-selected {
      background: rgba(251, 191, 36, 0.14);
      border-color: rgba(251, 191, 36, 0.45);
      box-shadow:
        inset 0 0 0 1px rgba(251, 191, 36, 0.10),
        0 0 0 1px rgba(251, 191, 36, 0.14),
        0 14px 30px rgba(0, 0, 0, 0.22);
    }
    
    /* DOWN + SELECTED */
    .site-item-down.site-item-selected {
      background: rgba(255, 93, 115, 0.14);
      border-color: rgba(255, 93, 115, 0.45);
      box-shadow:
        inset 0 0 0 1px rgba(255, 93, 115, 0.10),
        0 0 0 1px rgba(255, 93, 115, 0.14),
        0 14px 30px rgba(0, 0, 0, 0.22);
    }
    
    .site-main {
      min-width: 0;
      width: 100%;
    }
    
    .site-top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }
    
    .site-bottom-row {
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 10px;
    }
    
    .site-url {
      display: flex;
      align-items: center;
      gap: 6px;
      min-width: 0;
      flex: 1;
    
      font-size: 1.04rem;
      font-weight: 800;
      color: #eef2ff;
      letter-spacing: -0.02em;
    
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    
      line-height: 1.25;
    }

    .site-priority-star {
      color: #7dd3fc;
      font-size: 0.85rem;
      margin-right: 4px;
    }
    
    .site-meta-line {
      display: flex;
      flex-direction: column;
      gap: 1px;
      color: #b5bfdc;
      font-size: 0.88rem;
      line-height: 1.35;
    }

    .site-meta-stack {
      display: grid;
      gap: 4px;
      min-width: 0;
    }

        
    .site-status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-width: 104px;
      padding: 9px 14px;
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 800;
      white-space: nowrap;
      flex-shrink: 0;
    }
    
    .site-status::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    
    .site-status-online {
      background: rgba(52, 211, 153, 0.14);
      color: #d8ffe5;
      border: 1px solid rgba(52, 211, 153, 0.24);
    }

    .site-status-online::before {
      background: #34d399;
    }

    .site-status-warning {
      background: rgba(251, 191, 36, 0.16);
      color: #ffe8b3;
      border: 1px solid rgba(251, 191, 36, 0.28);
    }

    .site-status-warning::before {
      background: #fbbf24;
      box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
      animation: pulseWarning 2.4s infinite;
    }

    .site-status-down {
      background: rgba(255, 93, 115, 0.14);
      color: #ffd2d9;
      border: 1px solid rgba(255, 93, 115, 0.24);
    }

    .site-status-down::before {
      background: #ff5d73;
      box-shadow: 0 0 0 0 rgba(255, 93, 115, 0.7);
      animation: pulseRed 2.4s infinite;
    }
    
    .site-settings-btn {
      display: none;
    }

    .sites-list {
      display: grid;
      gap: 10px;
      margin-top: 16px;
      max-height: 420px;
      overflow-y: auto;
      overflow-x: visible;
      padding-right: 4px;
      padding-top: 4px;
    }

    .sites-list::-webkit-scrollbar {
      width: 8px;
    }

    .sites-list::-webkit-scrollbar-track {
      background: transparent;
    }

    .sites-list::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.12);
      border-radius: 999px;
    }


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

      .left-column,
      .center-column,
      .right-column {
        gap: 18px;
      }

      .hero-card,
      .sites-card,
      .hello-card {
        min-height: auto;
      }
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
      }
    
      70% {
        box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
      }
    
      100% {
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
      }
    }

    @keyframes pulseBlue {
      0% {
        box-shadow: 0 0 0 0 rgba(43, 185, 237, 0.7);
      }
    
      70% {
        box-shadow: 0 0 0 8px rgba(43, 185, 237, 0);
      }
    
      100% {
        box-shadow: 0 0 0 0 rgba(43, 185, 237, 0);
      }
    }

    @keyframes pulseRed {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 93, 115, 0.7);
      }

      70% {
        box-shadow: 0 0 0 8px rgba(255, 93, 115, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 93, 115, 0);
      }
    }

    @keyframes pulseWarning {
      0% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.55);
      }

      70% {
        box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
      }
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(3, 8, 20, 0.72);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: grid;
      place-items: center;
      padding: 20px;
      z-index: 1000;
    }
    
    .modal-backdrop[hidden] {
      display: none;
    }
    
    .modal-card {
      width: min(560px, 100%);
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(24, 33, 58, 0.98), rgba(16, 24, 45, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.10);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
      overflow: hidden;
    }
    
    .modal-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 22px 22px 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .modal-title {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.03em;
    }
    
    .modal-subtitle {
      margin-top: 6px;
      color: var(--muted);
      font-size: 0.94rem;
    }
    
    .modal-close {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      cursor: pointer;
      font-size: 1rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    
    .modal-close:hover {
      background: rgba(255, 255, 255, 0.08);
    }
    
    .modal-body {
      padding: 22px;
      display: grid;
      gap: 18px;
    }
    
    .settings-group {
      display: grid;
      gap: 8px;
    }
    
    .settings-label {
      color: var(--muted);
      font-size: 0.88rem;
      font-weight: 700;
    }
    
    .settings-url-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .settings-url-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .settings-value {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.045);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #eef2ff;
      line-height: 1.6;
      overflow-wrap: anywhere;
    }

    .settings-url-value {
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: center;
    }

    .settings-check-btn {
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 0.85rem;
      min-width: auto;
      background: linear-gradient(135deg, var(--primary), #7ee7b7);
      color: #08101f;
      font-weight: 800;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .settings-test-btn {
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 0.85rem;
      min-width: auto;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.10);
      color: var(--text);
      font-weight: 800;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .settings-save-btn {
      margin-top: 6px;
      width: 100%;
    }

    .settings-check-btn:disabled,
    .settings-test-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }
    
    .settings-toggle {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      cursor: pointer;
    }
    
    .settings-toggle input {
      width: 18px;
      height: 18px;
      accent-color: #34d399;
    }
    
    .settings-help {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }
    
    .settings-select {
      width: 100%;
      padding: 14px 48px 14px 16px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      background:
        linear-gradient(180deg, rgba(20, 29, 52, 0.96), rgba(14, 22, 40, 0.96));
      color: #eef2ff;
      font-size: 0.96rem;
      font-weight: 600;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      cursor: pointer;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
      background-image:
        linear-gradient(45deg, transparent 50%, #cfd8ff 50%),
        linear-gradient(135deg, #cfd8ff 50%, transparent 50%);
      background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }
    
    .settings-select:hover {
      border-color: rgba(255, 255, 255, 0.22);
      background:
        linear-gradient(180deg, rgba(23, 33, 59, 0.98), rgba(16, 25, 45, 0.98));
      background-image:
        linear-gradient(45deg, transparent 50%, #e2e8ff 50%),
        linear-gradient(135deg, #e2e8ff 50%, transparent 50%);
      background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }
    
    .settings-select:focus {
      border-color: rgba(43, 185, 237, 0.7);
      box-shadow: 0 0 0 4px rgba(43, 185, 237, 0.12);
      background-image:
        linear-gradient(45deg, transparent 50%, #eef4ff 50%),
        linear-gradient(135deg, #eef4ff 50%, transparent 50%);
      background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }
    
    .settings-select option {
      background: #121a31;
      color: #eef2ff;
    }
    
    .settings-divider {
      height: 1px;
      background: rgba(255, 255, 255, 0.08);
      margin: 2px 0;
    }
    
    .settings-danger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    
    .settings-danger-title {
      font-weight: 700;
      font-size: 0.92rem;
      color: #ffd9de;
      margin-bottom: 2px;
    }
    
    .danger-btn {
      border-radius: 12px;
      padding: 10px 14px;
      font-size: 0.85rem;
      background: rgba(255, 93, 115, 0.14);
      border: 1px solid rgba(255, 93, 115, 0.24);
      color: #ffd4db;
      font-weight: 800;
      cursor: pointer;
    }
    
    .danger-btn:hover {
      background: rgba(255, 93, 115, 0.20);
    }

    .auth-shell {
      max-width: 520px;
      margin: 64px auto 0;
    }

    .auth-card {
      padding: 28px;
    }

    .auth-title {
      margin: 0 0 10px;
      font-size: clamp(1.5rem, 3vw, 2rem);
      letter-spacing: -0.03em;
    }

    .auth-subtext {
      margin: 0 0 20px;
      color: var(--muted);
      line-height: 1.6;
    }

    .auth-form {
      display: grid;
      gap: 14px;
    }

    .auth-input {
      width: 100%;
      padding: 16px 18px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(9, 14, 31, 0.75);
      color: var(--text);
      font-size: 1rem;
      outline: none;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .auth-input:focus {
      border-color: rgba(43, 185, 237, 0.75);
      transform: translateY(-1px);
    }

    .auth-actions {
      display: flex;
      justify-content: center;
      margin-top: 6px;
    }
    
    .auth-actions .btn {
      min-width: 220px;
    }
    
    .auth-switch {
      margin-top: 10px;
      text-align: center;
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.6;
    }
    
    .auth-switch-link {
      color: var(--primary);
      font-weight: 700;
      margin-left: 6px;
      text-decoration: none;
    }
    
    .auth-switch-link:hover {
      text-decoration: underline;
    }
    
    .auth-password-wrap {
      position: relative;
    }

    .auth-password-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }
    
    .auth-password-header .input-label {
      margin-bottom: 0;
    }
    
    .auth-inline-link {
      color: var(--primary);
      font-size: 0.88rem;
      font-weight: 700;
      text-decoration: none;
    }
    
    .auth-inline-link:hover {
      text-decoration: underline;
    }
    
    .auth-password-toggle {
      position: absolute;
      top: 50%;
      right: 14px;
      transform: translateY(-50%);
      border: none;
      background: transparent;
      color: var(--muted);
      cursor: pointer;
      font-size: 1.05rem;
      padding: 4px;
      line-height: 1;
    }
    
    .auth-password-toggle:hover {
      color: var(--text);
    }
    
    .auth-password-input {
      padding-right: 52px;
    }

    .auth-status {
      margin-top: 14px;
    }

    .userbar {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .user-email {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.1);
      min-width: 140px;
    }

    .plan-badge {
      font-size: 13px;
      color: #9ca3af;
      margin-right: 12px;
      padding: 6px 10px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.04);
    }

    .alert-emails-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .alert-email-row {
      display: flex;
      gap: 8px;
    }
    
    .alert-email-input {
      flex: 1;
    }
    
    .alert-email-remove {
      background: transparent;
      border: none;
      cursor: pointer;
      color: #f87171;
      font-size: 16px;
    }

    .report-card-locked {
      position: relative;
      overflow: hidden;
    }
    
    .report-locked-preview {
      position: relative;
    }
    
    .report-preview-blur {
      filter: blur(6px);
      opacity: 0.7;
      pointer-events: none;
      user-select: none;
    }
    
    .report-lock-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
      background: rgba(11, 16, 32, 0.38);
    }
    
    .report-lock-message {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      max-width: 340px;
    }
    
    .report-lock-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #f8fafc;
    }
    
    .report-lock-text {
      font-size: 14px;
      line-height: 1.5;
      color: #cbd5e1;
      max-width: 320px;
      margin: 0 auto;
    }

    .plan-select {
      font-size: 13px;
      color: #e5e7eb;
      margin-right: 12px;
      padding: 6px 30px 6px 10px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      outline: none;
    }
    
    .plan-select:focus {
      border-color: rgba(43, 185, 237, 0.55);
    }

    .plan-locked-btn {
      opacity: 0.72;
      filter: saturate(0.8);
    }

    .report-range-toggle-row {
      display: flex;
      gap: 8px;
      margin: 18px 0 14px;
    }
    
    .report-range-btn {
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.04);
      color: #cbd5e1;
      border-radius: 10px;
      padding: 6px 12px;
      font-size: 13px;
      cursor: pointer;
      transition: all 0.18s ease;
    }
    
    .report-range-btn:hover {
      background: rgba(255, 255, 255, 0.08);
    }
    
    .report-range-btn-active {
      background: rgba(43, 185, 237, 0.14);
      border-color: rgba(43, 185, 237, 0.38);
      color: #f8fafc;
    }

    .report-range-btn-locked {
      opacity: 0.58;
      filter: saturate(0.8);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .plan-lock-icon {
      font-size: 10px;
      margin-left: 4px;
      opacity: 0.82;
      vertical-align: middle;
      color: #fbbf24;
      transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
    }
    
    .report-range-btn-locked:hover .plan-lock-icon {
      opacity: 1;
      color: #fcd34d;
      transform: translateY(-1px);
    }

    .plan-lock-icon-inline {
      display: inline-block;
      margin-left: 6px;
      font-size: 11px;
      color: #fbbf24;
      opacity: 0.9;
      vertical-align: middle;
      transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease;
    }
    
    .plan-locked-btn:hover .plan-lock-icon-inline,
    .report-lock-title:hover .plan-lock-icon-inline {
      opacity: 1;
      color: #fcd34d;
      transform: translateY(-1px);
    }


    .report-incidents {
      margin-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 16px;
    }
    
    .report-incidents-title {
      font-size: 13px;
      font-weight: 600;
      color: #f8fafc;
      margin-bottom: 10px;
    }
    
    .report-incidents-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .report-incident-item {
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      padding: 12px 14px;
    }
    
    .report-incident-top {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      margin-bottom: 6px;
    }
    
    .report-incident-name {
      font-size: 13px;
      font-weight: 600;
      color: #f8fafc;
    }
    
    .report-incident-duration {
      font-size: 12px;
      color: #cbd5e1;
    }
    
    .report-incident-meta,
    .report-incident-sub {
      font-size: 12px;
      color: #94a3b8;
      line-height: 1.5;
    }

    /* Compact monitored website list */
    .site-item {
      min-height: auto;
      padding: 14px 16px;
      border-radius: 18px;
    }
    
    .site-main-compact {
      width: 100%;
    }
    
    .site-top-row-compact {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 0;
    }
    
    .site-top-row-compact .site-url {
      min-width: 0;
      font-size: 1rem;
      line-height: 1.2;
    }
    
    .site-top-row-compact .site-status {
      min-width: 96px;
      padding: 9px 13px;
      font-size: 0.84rem;
    }
    
    .priority-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .selected-site-settings-btn {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(255, 255, 255, 0.05);
      color: var(--text);
      cursor: pointer;
      font-size: 1rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    
    .selected-site-settings-btn:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    [hidden] {
      display: none !important;
    }

    @media (max-width: 720px) {
      .hero-card,
      .sites-card,
      .auth-card {
        padding: 22px;
      }
    
      .input-row,
      .auth-actions {
        flex-direction: column;
      }
    
      .btn-primary,
      .btn-success,
      .btn-secondary {
        width: 100%;
      }
    
      .site-top-row,
      .site-bottom-row {
        flex-direction: column;
        align-items: flex-start;
      }

      .sites-head-top {
        align-items: flex-start;
      }
    
      .site-status {
        min-width: 0;
      }

      .details-grid {
        grid-template-columns: 1fr;
      }

      .report-stats-grid {
        grid-template-columns: 1fr;
      }

      .report-copy-btn {
        width: 100%;
      }

      .response-chart-head,
      .report-card-head {
        flex-direction: column;
        align-items: flex-start;
      }
    
      .response-chart-average,
      .uptime-chart-average {
        white-space: normal;
      }
    
      .report-actions {
        justify-content: flex-start;
        width: 100%;
      }
    
      .report-toggle-row {
        justify-content: stretch;
      }
    
      .report-toggle-btn {
        width: 100%;
      }
    
      .modal-card {
        border-radius: 20px;
      }
    
      .modal-header,
      .modal-body {
        padding: 18px;
      }
    
      .settings-url-row {
        flex-direction: column;
      }

      .settings-check-btn,
      .settings-test-btn {
        width: 100%;
        min-height: 52px;
      }

      .settings-danger {
        flex-direction: column;
        align-items: stretch;
      }
    
      .danger-btn {
        width: 100%;
      }

      .report-incident-top {
        flex-direction: column;
        align-items: flex-start;
      }

      .userbar {
        width: 100%;
        justify-content: flex-start;
      }
    }
