    :root {
      --bg: #f6f8fc;
      --text: #111827;
      --muted: #5f6b7a;
      --soft: #eef2f7;
      --line: #dde4ee;
      --panel: #ffffff;
      --primary: #ff8a00;
      --primary-dark: #d96f00;
      --accent: #2563eb;
      --ok: #10b981;
      --shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
    }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      background: rgba(0, 0, 0, 0.96);
      backdrop-filter: blur(16px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(1120px, calc(100% - 40px));
      min-height: 68px;
      margin: 0 auto;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .logo img {
      display: block;
      width: 188px;
      max-width: 46vw;
      height: auto;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 22px;
      font-weight: 800;
      font-size: 14px;
      color: #ffffff;
    }

    .login-btn,
    .primary-btn,
    .ghost-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border-radius: 8px;
      font-weight: 900;
      line-height: 1;
    }

    .login-btn,
    .primary-btn {
      padding: 0 22px;
      color: #ffffff;
      background: linear-gradient(135deg, var(--primary), #ffb13d);
      box-shadow: 0 14px 28px rgba(255, 138, 0, 0.22);
    }

    .hero {
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at 22% 26%, rgba(255, 138, 0, 0.10), transparent 28%),
        radial-gradient(circle at 78% 14%, rgba(37, 99, 235, 0.10), transparent 30%),
        linear-gradient(180deg, #f8faff 0%, #f4f7fb 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(17, 24, 39, 0.11) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.28;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
      align-items: center;
      gap: 54px;
      width: min(1120px, calc(100% - 40px));
      min-height: calc(100vh - 68px);
      margin: 0 auto;
      padding: 74px 0 92px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 34px;
      padding: 0 14px;
      border: 1px solid #ffd8ad;
      border-radius: 999px;
      background: #fff7ed;
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .eyebrow span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--ok);
    }

    h1 {
      max-width: 660px;
      margin: 24px 0 18px;
      font-size: clamp(42px, 6.4vw, 76px);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .gradient-text {
      display: block;
      color: transparent;
      background: linear-gradient(90deg, #ff8a00, #2563eb);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .muted-line {
      display: block;
      color: #8a96a8;
    }

    .hero-copy {
      max-width: 620px;
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .ghost-btn {
      padding: 0 22px;
      border: 1px solid var(--line);
      background: #ffffff;
      color: var(--text);
      box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
    }

    .checks {
      display: flex;
      flex-wrap: wrap;
      gap: 22px;
      margin-top: 30px;
      color: #536170;
      font-size: 13px;
      font-weight: 800;
    }

    .checks span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .check {
      color: var(--ok);
      font-weight: 900;
    }

    .user-workspace {
      display: grid;
      gap: 16px;
      width: 100%;
    }

    .user-card {
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
    }

    .user-create-card {
      display: grid;
      grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.6fr) minmax(200px, 0.7fr) auto;
      gap: 14px;
      align-items: end;
      padding: 18px;
    }

    .user-card h2,
    .user-head h2 {
      margin: 0 0 6px;
      color: #111827;
      font-size: 18px;
    }

    .user-card p,
    .user-head p {
      margin: 0;
      color: #64748b;
      font-size: 13px;
      line-height: 1.45;
    }

    .user-create-card label {
      display: grid;
      gap: 7px;
      min-width: 0;
    }

    .user-create-card label span {
      color: #334155;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .user-create-card input,
    .user-inline-form input,
    .user-status-form select {
      width: 100%;
      min-height: 40px;
      border: 1px solid #d7dde6;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      font: inherit;
      outline: none;
    }

    .user-create-card input,
    .user-inline-form input {
      padding: 0 12px;
    }

    .user-status-form select {
      padding: 0 10px;
      cursor: pointer;
    }

    .user-create-card button,
    .user-inline-form button {
      min-height: 40px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(135deg, #ff8a00, #ffb13d);
      color: #111111;
      cursor: pointer;
      font: inherit;
      font-weight: 900;
      white-space: nowrap;
    }

    .user-create-card button {
      padding: 0 18px;
    }

    .user-clear-blast-btn,
    .user-clear-log-btn {
      min-height: 38px;
      padding: 0 12px;
      border: 1px solid #ffd4a3;
      border-radius: 8px;
      background: #fff7ed;
      color: #c05a00;
      cursor: pointer;
      font: inherit;
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .user-clear-blast-btn:hover {
      border-color: #ff8a00;
      background: #ff8a00;
      color: #111111;
    }

    .user-clear-log-btn {
      border-color: #fecaca;
      background: #fef2f2;
      color: #b91c1c;
    }

    .user-clear-log-btn:hover {
      border-color: #ef4444;
      background: #ef4444;
      color: #ffffff;
    }

    .user-alert {
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
    }

    .user-alert.success {
      border: 1px solid #bbf7d0;
      background: #f0fdf4;
      color: #047857;
    }

    .user-alert.error {
      border: 1px solid #fecaca;
      background: #fef2f2;
      color: #b91c1c;
    }

    .user-head {
      padding: 18px 18px 0;
    }

    .user-table-wrap {
      overflow-x: auto;
      padding: 18px;
    }

    .user-table {
      width: 100%;
      min-width: 1080px;
      border-collapse: collapse;
      font-size: 13px;
    }

    .user-table th {
      padding: 0 10px 10px;
      color: #64748b;
      text-align: left;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .user-table td {
      padding: 12px 10px;
      border-top: 1px solid #eef2f7;
      vertical-align: middle;
    }

    .user-table td > strong {
      display: block;
      color: #111827;
      font-size: 14px;
    }

    .user-table td > span {
      display: block;
      margin-top: 4px;
      color: #64748b;
      font-size: 12px;
    }

    .user-table .user-stat-cell {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 64px;
      min-height: 34px;
      margin: 0;
      padding: 0 12px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      background: #f8fafc;
      color: #111827;
      font-size: 16px;
      font-weight: 900;
    }

    .user-table code {
      display: inline-block;
      max-width: 300px;
      overflow: hidden;
      color: #475569;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .user-inline-form {
      display: grid;
      grid-template-columns: minmax(160px, 1fr) auto;
      gap: 8px;
      align-items: center;
    }

    .user-delete-btn {
      display: grid;
      place-items: center;
      width: 40px;
      height: 40px;
      border: 1px solid #fecaca;
      border-radius: 8px;
      background: #fff7f7;
      color: #dc2626;
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
    }

    .user-delete-btn:disabled,
    .user-status-form select:disabled {
      cursor: not-allowed;
      opacity: 0.45;
    }

    .domain-workspace {
      display: grid;
      gap: 16px;
      width: 100%;
    }

    .domain-card {
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
    }

    .domain-create-card {
      display: grid;
      grid-template-columns: minmax(220px, 1fr) minmax(260px, 0.9fr) auto;
      gap: 14px;
      align-items: end;
      padding: 18px;
    }

    .domain-create-card h2,
    .domain-head h2 {
      margin: 0 0 6px;
      color: #111827;
      font-size: 18px;
    }

    .domain-create-card p,
    .domain-head p {
      margin: 0;
      color: #64748b;
      font-size: 13px;
      line-height: 1.45;
    }

    .domain-create-card label {
      display: grid;
      gap: 7px;
      min-width: 0;
    }

    .domain-create-card label span {
      color: #334155;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .domain-create-card input {
      width: 100%;
      min-height: 40px;
      border: 1px solid #d7dde6;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      font: inherit;
      outline: none;
    }

    .domain-create-card input {
      padding: 0 12px;
    }

    .domain-status-form {
      position: relative;
    }

    .domain-select {
      position: relative;
      width: 100%;
    }

    .domain-select summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-height: 40px;
      padding: 0 12px;
      border: 1px solid #d7dde6;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      cursor: pointer;
      font-size: 13px;
      font-weight: 800;
      list-style: none;
      outline: none;
    }

    .domain-select summary::-webkit-details-marker {
      display: none;
    }

    .domain-select summary span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .domain-select summary i {
      color: #64748b;
      font-size: 11px;
      transition: transform 0.16s ease;
    }

    .domain-select[open] summary {
      border-color: #ff8a00;
      box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.12);
    }

    .domain-select[open] summary i {
      transform: rotate(180deg);
    }

    .domain-select-menu {
      position: absolute;
      z-index: 30;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      display: grid;
      gap: 4px;
      padding: 6px;
      border: 1px solid #dbe3ee;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
    }

    .domain-select-menu button {
      min-height: 34px;
      padding: 0 10px;
      border: 0;
      border-radius: 7px;
      background: transparent;
      color: #111827;
      cursor: pointer;
      font: inherit;
      font-size: 13px;
      font-weight: 800;
      text-align: left;
    }

    .domain-select-menu button:hover:not(:disabled) {
      background: #fff7ed;
      color: #c05a00;
    }

    .domain-select-menu button:disabled {
      background: #ff8a00;
      color: #111111;
      cursor: default;
    }

    .domain-create-card button {
      min-height: 40px;
      padding: 0 18px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(135deg, #ff8a00, #ffb13d);
      color: #111111;
      cursor: pointer;
      font: inherit;
      font-weight: 900;
      white-space: nowrap;
    }

    .domain-alert {
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
    }

    .domain-alert.success {
      border: 1px solid #bbf7d0;
      background: #f0fdf4;
      color: #047857;
    }

    .domain-alert.error {
      border: 1px solid #fecaca;
      background: #fef2f2;
      color: #b91c1c;
    }

    .domain-head {
      padding: 18px 18px 0;
    }

    .domain-table-wrap {
      overflow-x: auto;
      overflow-y: visible;
      padding: 18px 18px 72px;
    }

    .domain-table {
      width: 100%;
      min-width: 820px;
      border-collapse: collapse;
      font-size: 13px;
    }

    .domain-table th {
      padding: 0 10px 10px;
      color: #64748b;
      text-align: left;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .domain-table td {
      padding: 12px 10px;
      border-top: 1px solid #eef2f7;
      vertical-align: middle;
    }

    .domain-table td strong {
      color: #111827;
      font-weight: 900;
    }

    .domain-delete-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid #fecaca;
      border-radius: 8px;
      background: #ffffff;
      color: #dc2626;
      cursor: pointer;
    }

    .domain-delete-btn:hover {
      background: #fef2f2;
    }

    .domain-empty {
      padding: 28px 10px !important;
      color: #64748b;
      font-weight: 700;
      text-align: center !important;
    }

    .mockup {
      position: relative;
      min-height: 430px;
    }

    .phone {
      position: absolute;
      right: 48px;
      top: 6px;
      width: 238px;
      min-height: 380px;
      padding: 36px 12px 18px;
      border-radius: 30px;
      background: #ffffff;
      box-shadow: var(--shadow);
    }

    .phone::before {
      content: "";
      position: absolute;
      top: 14px;
      left: 50%;
      width: 58px;
      height: 5px;
      border-radius: 999px;
      background: #dbe2eb;
      transform: translateX(-50%);
    }

    .notif {
      display: grid;
      grid-template-columns: 10px minmax(0, 1fr) auto;
      gap: 10px;
      align-items: start;
      margin-bottom: 12px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #f9fbff;
      box-shadow: 0 8px 18px rgba(17, 24, 39, 0.10);
    }

    .notif-dot {
      width: 8px;
      height: 8px;
      margin-top: 4px;
      border-radius: 50%;
      background: var(--primary);
    }

    .notif-dot.blue {
      background: #0ea5e9;
    }

    .notif-dot.green {
      background: #10b981;
    }

    .notif strong {
      display: block;
      overflow: hidden;
      color: #202a39;
      font-size: 12px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .notif p {
      margin: 6px 0 0;
      overflow: hidden;
      color: #697586;
      font-size: 11px;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .notif small {
      color: #8a96a8;
      font-size: 10px;
    }

    .phone-footer {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 18px;
      color: #9aa6b8;
      text-align: center;
      font-size: 10px;
      font-weight: 800;
    }

    .metric {
      position: absolute;
      display: grid;
      place-items: center;
      min-width: 78px;
      min-height: 62px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.12);
      color: #7b8798;
      font-size: 11px;
      font-weight: 900;
    }

    .metric strong {
      display: block;
      margin-top: 4px;
      color: var(--accent);
      font-size: 18px;
    }

    .metric.ctr {
      left: 28px;
      bottom: 92px;
    }

    .metric.sent {
      right: 0;
      top: 42px;
    }

    .metric.sent strong {
      color: var(--ok);
    }

    .pricing {
      scroll-margin-top: 84px;
      padding: 78px 0 90px;
      background: #ffffff;
    }

    .section-inner {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section-title {
      max-width: 680px;
      margin-bottom: 28px;
    }

    .section-title h2 {
      margin: 0 0 12px;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.08;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .price-card {
      display: grid;
      gap: 18px;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
    }

    .price-card.featured {
      border-color: #ffc47a;
      box-shadow: 0 18px 34px rgba(255, 138, 0, 0.18);
    }

    .price-card h3 {
      margin: 0;
      font-size: 20px;
    }

    .price {
      font-size: 34px;
      font-weight: 900;
    }

    .price span {
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .price-card ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      color: #536170;
      list-style: none;
      font-size: 14px;
      line-height: 1.45;
    }

    .price-card li::before {
      content: "✓";
      margin-right: 8px;
      color: var(--ok);
      font-weight: 900;
    }

    .card-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      border-radius: 8px;
      background: #111827;
      color: #ffffff;
      font-weight: 900;
    }

    .featured .card-btn {
      background: linear-gradient(135deg, var(--primary), #ffb13d);
    }

    @media (max-width: 920px) {
      .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .mockup {
        min-height: 400px;
      }

      .phone {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
      }

      .metric.ctr {
        left: 8%;
      }

      .metric.sent {
        right: 8%;
      }

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

    @media (max-width: 620px) {
      .nav {
        width: min(100% - 28px, 1120px);
      }

      .logo img {
        width: 154px;
      }

      .menu {
        gap: 12px;
      }

      .login-btn {
        min-height: 42px;
        padding: 0 15px;
      }

      .hero-inner,
      .section-inner {
        width: min(100% - 28px, 1120px);
      }

      .hero-inner {
        padding-top: 50px;
      }

      .hero-actions {
        display: grid;
      }

      .checks {
        gap: 12px;
      }

      .mockup {
        min-height: 360px;
      }

      .phone {
        width: 224px;
      }

      .metric {
        min-width: 70px;
      }
    }

    .login-page {
      min-height: 100vh;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 28% 18%, rgba(255, 138, 0, 0.10), transparent 28%),
        radial-gradient(circle at 84% 82%, rgba(37, 99, 235, 0.10), transparent 32%),
        #f5f7ff;
    }

    .login-page::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: radial-gradient(rgba(17, 24, 39, 0.11) 1px, transparent 1px);
      background-size: 20px 20px;
      opacity: 0.22;
      pointer-events: none;
    }

    .login-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(390px, 0.66fr);
      min-height: 100vh;
    }

    .login-intro,
    .login-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100vh;
      padding: 58px;
    }

    .login-intro {
      align-items: center;
      text-align: center;
      border-right: 1px solid #dde4ee;
    }

    .intro-mark {
      display: grid;
      place-items: center;
      width: 118px;
      height: 118px;
      margin-bottom: 28px;
      border: 1px solid rgba(255, 138, 0, 0.24);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
    }

    .intro-mark img {
      width: 64px;
      height: 64px;
      object-fit: contain;
    }

    .intro-eyebrow {
      margin: 0 0 18px;
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }

    .login-intro h1 {
      margin: 0;
      max-width: 520px;
      font-size: 30px;
      line-height: 1.18;
    }

    .login-intro h1 span {
      display: block;
      color: transparent;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .intro-copy {
      max-width: 470px;
      margin: 18px 0 0;
      color: #5f6b7a;
      font-size: 16px;
      line-height: 1.6;
    }

    .intro-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 500px;
      margin-top: 28px;
    }

    .intro-tags span {
      min-height: 34px;
      padding: 8px 14px;
      border: 1px solid #ffd1a0;
      border-radius: 999px;
      background: #fff7ed;
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
    }

    .intro-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 112px));
      gap: 18px;
      margin-top: 36px;
    }

    .intro-stats div {
      padding: 16px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.88);
      box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    }

    .intro-stats strong,
    .intro-stats span {
      display: block;
    }

    .intro-stats strong {
      color: var(--primary-dark);
      font-size: 15px;
    }

    .intro-stats span {
      margin-top: 8px;
      color: #8a96a8;
      font-size: 11px;
      font-weight: 800;
    }

    .login-panel {
      background: rgba(255, 255, 255, 0.48);
    }

    .back-home {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      justify-content: center;
      min-height: 36px;
      margin-bottom: 24px;
      padding: 0 15px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
      font-size: 13px;
      font-weight: 900;
    }

    .login-brand {
      display: flex;
      align-items: center;
      gap: 13px;
      margin-bottom: 30px;
    }

    .login-brand img {
      width: 42px;
      height: 42px;
      object-fit: contain;
    }

    .login-brand strong,
    .login-brand span {
      display: block;
    }

    .login-brand strong {
      font-size: 20px;
    }

    .login-brand span {
      margin-top: 2px;
      color: #8a96a8;
      font-size: 12px;
      font-weight: 800;
    }

    .login-panel h2 {
      margin: 0;
      font-size: 30px;
    }

    .login-muted {
      margin: 8px 0 28px;
      color: #8a96a8;
      line-height: 1.5;
    }

    .login-form {
      display: grid;
      gap: 18px;
      width: min(100%, 360px);
    }

    .login-alert {
      width: min(100%, 360px);
      margin-bottom: 16px;
      padding: 12px 14px;
      border: 1px solid #fecaca;
      border-radius: 8px;
      background: #fef2f2;
      color: #b91c1c;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.45;
    }

    .login-form label {
      display: grid;
      gap: 8px;
    }

    .login-form label > span {
      color: #8a96a8;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .login-form input[type="text"],
    .login-form input[type="password"],
    .login-form input[type="text"] {
      width: 100%;
      height: 48px;
      padding: 0 14px;
      border: 1px solid #d8dee8;
      border-radius: 8px;
      background: #ffffff;
      color: var(--text);
      font: inherit;
      outline: none;
    }

    .login-form input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.12);
    }

    .password-field {
      position: relative;
    }

    .password-field input {
      padding-right: 46px;
    }

    .password-field button {
      position: absolute;
      top: 50%;
      right: 10px;
      display: grid;
      place-items: center;
      width: 32px;
      height: 32px;
      border: 0;
      border-radius: 8px;
      background: transparent;
      cursor: pointer;
      transform: translateY(-50%);
    }

    .remember-row {
      display: flex !important;
      grid-template-columns: none;
      align-items: center;
      gap: 10px !important;
      color: #64748b;
      font-size: 13px;
      font-weight: 500;
    }

    .remember-row input {
      width: 18px;
      height: 18px;
      margin: 0;
      accent-color: var(--primary);
    }

    .remember-row span {
      color: #64748b !important;
      font-size: 13px !important;
      font-weight: 500 !important;
      text-transform: none !important;
    }

    .submit-login {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--primary), #ffb13d);
      box-shadow: 0 14px 28px rgba(255, 138, 0, 0.22);
      color: #ffffff;
      cursor: pointer;
      font: inherit;
      font-weight: 900;
    }

    .login-version {
      width: min(100%, 360px);
      margin: 24px 0 0;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      color: #8a96a8;
      text-align: center;
      font-size: 12px;
    }

    @media (max-width: 900px) {
      .login-shell {
        grid-template-columns: 1fr;
      }

      .login-intro {
        min-height: auto;
        padding: 54px 22px 40px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .login-panel {
        min-height: auto;
        padding: 40px 22px 58px;
      }
    }

    @media (max-width: 520px) {
      .intro-stats {
        grid-template-columns: 1fr;
        width: min(100%, 260px);
      }

      .login-form,
      .login-version {
        width: 100%;
      }
    }

    .dashboard-page {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      min-height: 100vh;
      background: #eef3f8;
    }

    .dash-sidebar {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow-y: auto;
      padding: 22px 18px;
      background: #050505;
      color: #ffffff;
    }

    .dash-logo {
      display: block;
      margin-bottom: 28px;
    }

    .dash-logo img {
      display: block;
      width: 180px;
      max-width: 100%;
      height: auto;
    }

    .dash-nav {
      display: grid;
      gap: 8px;
    }

    .dash-nav a {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 12px;
      border-radius: 8px;
      color: #cbd5e1;
      font-size: 14px;
      font-weight: 800;
    }

    .dash-nav a i {
      width: 18px;
      flex: 0 0 18px;
      color: #ffb13d;
      font-size: 15px;
      text-align: center;
    }

    .dash-nav a span {
      min-width: 0;
    }

    .dash-nav a.active {
      background: rgba(255, 138, 0, 0.18);
      color: #ffffff;
    }

    .dash-main {
      padding: 26px;
    }

    .dash-topbar {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
      min-height: 88px;
      padding: 20px 22px;
      border: 1px solid #e1e7ef;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 138, 0, 0.09), transparent 34%),
        #ffffff;
      box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
      color: #111827;
    }

    .dash-topbar::after {
      content: "";
      position: absolute;
      inset: auto 22px 0;
      height: 3px;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(90deg, #ff8a00, rgba(255, 177, 61, 0.35), transparent);
      pointer-events: none;
    }

    .dash-title-wrap {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      min-width: 0;
      gap: 14px;
    }

    .dash-account-actions {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dash-account {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 12px 0 5px;
      border: 1px solid #e1e7ef;
      border-radius: 8px;
      background: #f8fafc;
    }

    .dash-user-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      border: 1px solid rgba(255, 177, 61, 0.42);
      border-radius: 8px;
      background: linear-gradient(135deg, #ff8a00, #ffb13d);
      box-shadow: 0 10px 24px rgba(255, 138, 0, 0.25);
    }

    .dash-user-badge img {
      display: block;
      width: 22px;
      height: 22px;
      object-fit: contain;
    }

    .dash-account strong {
      color: #111827;
      font-size: 13px;
      font-weight: 900;
    }

    .dash-topbar h1 {
      margin: 0;
      color: #111827;
      font-size: 28px;
      line-height: 1.15;
    }

    .dash-logout {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border: 1px solid #111827;
      border-radius: 8px;
      background: #111827;
      color: #ffffff;
      font-weight: 900;
      transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
    }

    .dash-logout:hover {
      border-color: rgba(255, 138, 0, 0.75);
      background: #ff8a00;
      color: #111111;
      transform: translateY(-1px);
    }

    .dash-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 18px;
    }

    .dash-stats div,
    .dash-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
    }

    .dash-stats div {
      padding: 14px;
    }

    .dash-stats span,
    .dash-stats strong {
      display: block;
    }

    .dash-stats span {
      margin-bottom: 6px;
      color: #64748b;
      font-size: 12px;
      font-weight: 800;
    }

    .dash-stats strong {
      font-size: 22px;
    }

    .dash-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
      gap: 18px;
      align-items: start;
    }

    .dash-card {
      display: grid;
      gap: 16px;
      padding: 20px;
    }

    .dash-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 2px;
    }

    .dash-card-head h2 {
      margin: 0;
      font-size: 18px;
    }

    .dash-card-head span {
      min-height: 26px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #fff7ed;
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
    }

    .dash-card label {
      display: grid;
      gap: 8px;
      color: #334155;
      font-size: 13px;
      font-weight: 900;
    }

    .dash-card input,
    .dash-card textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      font: inherit;
      outline: none;
    }

    .dash-card input {
      height: 44px;
      padding: 0 12px;
    }

    .dash-card textarea {
      min-height: 120px;
      padding: 12px;
      resize: vertical;
      line-height: 1.5;
    }

    .dash-card button {
      min-height: 44px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--primary), #ffb13d);
      color: #ffffff;
      cursor: pointer;
      font: inherit;
      font-weight: 900;
    }

    .dash-preview {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 12px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #f8fafc;
    }

    .dash-preview img {
      width: 44px;
      height: 44px;
      object-fit: contain;
    }

    .dash-preview strong,
    .dash-preview small {
      display: block;
    }

    .dash-preview p {
      margin: 6px 0;
      color: #64748b;
      font-size: 13px;
      line-height: 1.4;
    }

    .dash-preview small {
      overflow: hidden;
      color: #94a3b8;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .dash-placeholder {
      min-height: 220px;
      align-content: start;
    }

    .dash-placeholder p {
      max-width: 680px;
      margin: 0;
      color: #64748b;
      font-size: 15px;
      line-height: 1.65;
    }

    .shortlink-workspace {
      display: grid;
      gap: 16px;
      width: 100%;
    }

    .shortlink-card {
      overflow: hidden;
      border: 1px solid #e1e7ef;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
    }

    .shortlink-list-card {
      overflow: hidden;
      transition: padding-bottom 0.18s ease;
    }

    .shortlink-list-card.range-open {
      padding-bottom: 300px;
    }

    .shortlink-form-card {
      display: grid;
      grid-template-columns: minmax(260px, 1.2fr) minmax(160px, 0.6fr) minmax(150px, 0.5fr) auto auto;
      gap: 12px;
      align-items: end;
      padding: 18px;
    }

    .shortlink-form-card label {
      display: grid;
      gap: 7px;
      min-width: 0;
    }

    .shortlink-form-card label span {
      color: #334155;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .shortlink-form-card input,
    .shortlink-form-card select {
      width: 100%;
      min-height: 42px;
      padding: 0 12px;
      border: 1px solid #cfd8e3;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      font: inherit;
      outline: none;
    }

    .shortlink-form-card input:focus,
    .shortlink-form-card select:focus {
      border-color: #ff8a00;
      outline: 3px solid rgba(255, 138, 0, 0.14);
    }

    .shortlink-form-card button,
    .shortlink-cancel {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 8px;
      font: inherit;
      font-weight: 900;
      white-space: nowrap;
    }

    .shortlink-form-card button {
      border: 0;
      background: linear-gradient(135deg, #ff8a00, #ffb13d);
      color: #111111;
      cursor: pointer;
    }

    .shortlink-cancel {
      border: 1px solid #e2e8f0;
      background: #ffffff;
      color: #111827;
      text-decoration: none;
    }

    .shortlink-alert {
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
    }

    .shortlink-alert.success {
      border: 1px solid #9be7ba;
      background: #ecfdf3;
      color: #087a38;
    }

    .shortlink-alert.error {
      border: 1px solid #fecaca;
      background: #fef2f2;
      color: #b91c1c;
    }

    .shortlink-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid #edf1f6;
    }

    .shortlink-head h2 {
      margin: 0;
      color: #111827;
      font-size: 18px;
    }

    .shortlink-head p {
      margin: 5px 0 0;
      color: #64748b;
      font-size: 13px;
    }

    .shortlink-date-filter {
      position: relative;
      flex: 0 0 auto;
    }

    .shortlink-range-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-width: 280px;
      min-height: 44px;
      padding: 0 14px;
      border: 1px solid #cfd8e3;
      border-radius: 12px;
      background: #ffffff;
      color: #111827;
      cursor: pointer;
      font: inherit;
      font-weight: 800;
    }

    .shortlink-range-toggle:hover,
    .shortlink-range-toggle[aria-expanded="true"] {
      border-color: #ff8a00;
      box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.12);
    }

    .shortlink-range-toggle i {
      color: #111827;
    }

    .shortlink-range-reset {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      margin-left: 8px;
      border: 1px solid #dbe3ee;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      text-decoration: none;
    }

    .shortlink-range-reset:hover {
      border-color: #ff8a00;
      color: #c05a00;
    }

    .shortlink-range-picker {
      position: fixed;
      z-index: 40;
      display: grid;
      grid-template-columns: 124px minmax(470px, 1fr);
      overflow: hidden;
      width: min(640px, calc(100vw - 32px));
      border: 1px solid #dbe3ee;
      border-radius: 14px;
      background: #ffffff;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    }

    .shortlink-range-picker[hidden] {
      display: none;
    }

    .shortlink-range-presets {
      display: grid;
      align-content: start;
      padding: 10px 0;
      border-right: 1px solid #e5eaf1;
      background: #f8fafc;
    }

    .shortlink-range-presets button {
      min-height: 32px;
      padding: 0 10px;
      border: 0;
      background: transparent;
      color: #334155;
      cursor: pointer;
      font: inherit;
      font-size: 12px;
      font-weight: 800;
      text-align: left;
    }

    .shortlink-range-presets button:hover,
    .shortlink-range-presets button.active {
      background: #dbeafe;
      color: #1d4ed8;
    }

    .shortlink-range-panel {
      padding: 10px;
    }

    .shortlink-range-nav {
      display: grid;
      grid-template-columns: 34px 1fr 34px;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
    }

    .shortlink-range-nav strong {
      text-align: center;
      font-size: 13px;
    }

    .shortlink-range-nav button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid #dbe3ee;
      border-radius: 9px;
      background: #ffffff;
      color: #111827;
      cursor: pointer;
      font-size: 12px;
    }

    .shortlink-range-nav button:hover {
      border-color: #ff8a00;
      color: #c05a00;
    }

    .shortlink-range-months {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .shortlink-range-month {
      padding: 10px;
      border: 1px solid #e5eaf1;
      border-radius: 12px;
    }

    .shortlink-range-month h3 {
      margin: 0 0 9px;
      color: #1f2937;
      text-align: center;
      font-size: 14px;
    }

    .shortlink-range-weekdays,
    .shortlink-range-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }

    .shortlink-range-weekdays span {
      color: #6b7280;
      text-align: center;
      font-size: 11px;
      font-weight: 900;
    }

    .shortlink-range-days {
      margin-top: 7px;
    }

    .shortlink-range-days button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1;
      border: 0;
      border-radius: 8px;
      background: transparent;
      color: #1f2937;
      cursor: pointer;
      font: inherit;
      font-size: 12px;
    }

    .shortlink-range-days button:hover {
      background: #fff7ed;
      color: #c05a00;
    }

    .shortlink-range-days button.muted {
      color: #94a3b8;
    }

    .shortlink-range-days button.in-range {
      background: #eef2ff;
    }

    .shortlink-range-days button.edge {
      background: #2563eb;
      color: #ffffff;
      font-weight: 900;
    }

    .shortlink-range-actions {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 10px;
    }

    .shortlink-range-actions button {
      min-width: 86px;
      min-height: 34px;
      border: 1px solid #dbe3ee;
      border-radius: 9px;
      background: #ffffff;
      color: #111827;
      cursor: pointer;
      font: inherit;
      font-weight: 900;
    }

    .shortlink-range-actions button:last-child {
      border-color: #2563eb;
      background: #2563eb;
      color: #ffffff;
    }

    .shortlink-table-wrap {
      overflow-x: auto;
    }

    .shortlink-table {
      width: 100%;
      min-width: 1080px;
      border-collapse: collapse;
      font-size: 13px;
    }

    .shortlink-table th,
    .shortlink-table td {
      padding: 14px 18px;
      border-bottom: 1px solid #edf1f6;
      text-align: left;
      vertical-align: middle;
    }

    .shortlink-table th {
      background: #f8fafc;
      color: #475569;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .shortlink-table:not(.shortlink-history-table) th {
      padding-top: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid #dbe3ee;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
      color: #475569;
      font-size: 10px;
      letter-spacing: 0.08em;
    }

    .shortlink-table:not(.shortlink-history-table) th + th {
      border-left: 0;
    }

    .shortlink-table:not(.shortlink-history-table) th:first-child {
      border-top-left-radius: 12px;
    }

    .shortlink-table:not(.shortlink-history-table) th:last-child {
      border-top-right-radius: 12px;
    }

    .shortlink-table:not(.shortlink-history-table) tbody tr {
      transition: background 0.14s ease;
    }

    .shortlink-table:not(.shortlink-history-table) tbody tr:hover {
      background: #f8fafc;
    }

    .shortlink-table:not(.shortlink-history-table) tbody td {
      background-clip: padding-box;
    }

    .shortlink-table:not(.shortlink-history-table) th:nth-child(4),
    .shortlink-table:not(.shortlink-history-table) td:nth-child(4) {
      width: 240px;
      max-width: 240px;
    }

    .shortlink-table td strong,
    .shortlink-table td span {
      display: block;
    }

    .shortlink-table td strong {
      color: #111827;
      font-weight: 900;
    }

    .shortlink-url-cell {
      display: inline-flex;
      align-items: center;
      max-width: 100%;
      gap: 8px;
    }

    .shortlink-url-cell strong {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .shortlink-copy-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      flex: 0 0 30px;
      border: 1px solid #dbe3ee;
      border-radius: 8px;
      background: #ffffff;
      color: #475569;
      cursor: pointer;
      font-size: 12px;
    }

    .shortlink-copy-btn:hover,
    .shortlink-copy-btn.copied {
      border-color: #ff8a00;
      background: #fff7ed;
      color: #c05a00;
    }

    .shortlink-table td span {
      max-width: 560px;
      overflow: hidden;
      color: #64748b;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .shortlink-edit-input {
      width: min(520px, 100%);
      min-height: 38px;
      padding: 0 11px;
      border: 1px solid #cfd8e3;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      font: inherit;
      outline: none;
    }

    .shortlink-edit-input:focus {
      border-color: #ff8a00;
      outline: 3px solid rgba(255, 138, 0, 0.14);
    }

    .shortlink-campaign-cell {
      display: flex;
      align-items: center;
      gap: 8px;
      width: min(240px, 100%);
      min-width: 0;
    }

    .shortlink-campaign-cell span {
      max-width: 100%;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .shortlink-campaign-input {
      width: min(260px, 100%);
    }

    .shortlink-clicks {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 58px;
      min-height: 32px;
      border-radius: 8px;
      background: #fff7ed;
      color: #c05a00;
      font-size: 15px;
      font-weight: 900;
    }

    .shortlink-actions {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .shortlink-actions a,
    .shortlink-actions button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid #dbe3ee;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      cursor: pointer;
      font-size: 13px;
    }

    .shortlink-actions a:hover {
      border-color: #ff8a00;
      color: #c05a00;
    }

    .shortlink-actions button.danger {
      color: #dc2626;
    }

    .shortlink-actions button.save {
      color: #047857;
    }

    .shortlink-actions button.save:hover {
      border-color: #10b981;
      background: #ecfdf3;
    }

    .shortlink-actions button.danger:hover {
      border-color: #ef4444;
      background: #fef2f2;
    }

    .shortlink-actions form {
      margin: 0;
    }

    .shortlink-empty {
      padding: 28px 18px !important;
      color: #64748b;
      font-weight: 700;
      text-align: center !important;
    }

    .shortlink-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 22px;
      background: rgba(15, 23, 42, 0.45);
    }

    .shortlink-modal-box {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      width: min(1080px, 100%);
      max-height: min(82vh, 720px);
      border: 1px solid #e1e7ef;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
    }

    .shortlink-modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid #edf1f6;
      background: #ffffff;
    }

    .shortlink-modal-head h2 {
      margin: 0;
      color: #111827;
      font-size: 20px;
      font-weight: 900;
    }

    .shortlink-modal-head p {
      margin: 5px 0 0;
      color: #64748b;
      font-size: 13px;
    }

    .shortlink-modal-actions {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .shortlink-modal-actions a,
    .shortlink-modal-actions button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 12px;
      border: 1px solid #dbe3ee;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      cursor: pointer;
      font-size: 13px;
      font-weight: 900;
      font-family: inherit;
      text-decoration: none;
    }

    .shortlink-modal-actions a:hover,
    .shortlink-modal-actions button:hover {
      border-color: #ff8a00;
      color: #c05a00;
    }

    .shortlink-modal-actions button:disabled {
      cursor: wait;
      opacity: 0.7;
    }

    .shortlink-country-summary {
      padding: 14px 18px;
      border-top: 1px solid #edf1f6;
      border-bottom: 1px solid #edf1f6;
      background: #fbfdff;
    }

    .shortlink-country-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      min-width: 0;
    }

    .shortlink-country-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 5px 9px;
      border: 1px solid #fed7aa;
      border-radius: 8px;
      background: #fff7ed;
      color: #111827;
      font-size: 12px;
      font-weight: 900;
    }

    .shortlink-country-pill img {
      display: block;
      width: 20px;
      height: 15px;
      border-radius: 2px;
      object-fit: cover;
      box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
    }

    .shortlink-country-pill em {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 24px;
      min-height: 22px;
      padding: 0 7px;
      border-radius: 999px;
      background: #ff8a00;
      color: #111111;
      font-style: normal;
    }

    .shortlink-country-empty {
      color: #64748b;
      font-size: 13px;
      font-weight: 700;
    }

    .shortlink-history-table {
      min-width: 1040px;
    }

    .shortlink-history-scroll {
      max-height: calc(min(82vh, 720px) - 132px);
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    .shortlink-history-scroll .shortlink-history-table thead th {
      position: sticky;
      top: 0;
      z-index: 2;
      background: #f8fafc;
    }

    .shortlink-history-pagination {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      padding: 14px 18px;
      border-top: 1px solid #edf1f6;
      background: #ffffff;
    }

    .shortlink-history-pagination button {
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid #dbe3ee;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      cursor: pointer;
      font: inherit;
      font-size: 12px;
      font-weight: 900;
    }

    .shortlink-history-pagination button:hover:not(:disabled) {
      border-color: #ff8a00;
      color: #c05a00;
    }

    .shortlink-history-pagination button:disabled {
      cursor: not-allowed;
      opacity: 0.5;
    }

    .shortlink-history-pagination span {
      color: #64748b;
      font-size: 12px;
      font-weight: 800;
    }

    .settings-workspace {
      display: grid;
      gap: 16px;
      width: 100%;
    }

    .settings-card {
      display: grid;
      gap: 16px;
      width: min(760px, 100%);
      padding: 22px;
      border: 1px solid #e1e7ef;
      border-radius: 8px;
      background: #ffffff;
      box-shadow: 0 14px 34px rgba(17, 24, 39, 0.07);
    }

    .settings-head {
      padding-bottom: 14px;
      border-bottom: 1px solid #edf1f6;
    }

    .settings-head h2 {
      margin: 0;
      color: #111827;
      font-size: 22px;
      line-height: 1.2;
    }

    .settings-head p {
      margin: 6px 0 0;
      color: #64748b;
      font-size: 13px;
    }

    .settings-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .settings-card label {
      display: grid;
      gap: 7px;
      min-width: 0;
    }

    .settings-card label span {
      color: #334155;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .settings-card input {
      width: 100%;
      min-height: 44px;
      padding: 0 13px;
      border: 1px solid #cfd8e3;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      font: inherit;
    }

    .settings-card input:focus {
      border-color: #ff8a00;
      outline: 3px solid rgba(255, 138, 0, 0.14);
    }

    .settings-card button {
      justify-self: start;
      min-height: 44px;
      padding: 0 18px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(135deg, #ff8a00, #ffb13d);
      color: #111111;
      font-weight: 900;
      cursor: pointer;
    }

    .settings-alert {
      padding: 12px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
    }

    .settings-alert.success {
      border: 1px solid #9be7ba;
      background: #ecfdf3;
      color: #087a38;
    }

    .settings-alert.error {
      border: 1px solid #fecaca;
      background: #fef2f2;
      color: #b91c1c;
    }

    .blast-progress-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .blast-progress-grid div {
      position: relative;
      overflow: hidden;
      padding: 16px;
      border: 1px solid #edf1f5;
      border-radius: 8px;
      background: #fbfcfe;
    }

    .blast-progress-grid.is-sending div::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, #ff8a00, transparent);
      animation: blastProgressLine 1.15s linear infinite;
    }

    @keyframes blastProgressLine {
      0% {
        transform: translateX(-100%);
      }

      100% {
        transform: translateX(100%);
      }
    }

    .blast-progress-grid span,
    .blast-progress-grid strong {
      display: block;
    }

    .blast-progress-grid span {
      margin-bottom: 8px;
      color: #64748b;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .blast-progress-grid strong {
      color: #111827;
      font-size: 30px;
      line-height: 1;
    }

    .push-composer {
      display: grid;
      grid-template-columns: 184px minmax(0, 1fr);
      gap: 16px;
      max-width: 980px;
      min-height: 390px;
      padding: 10px;
      border-radius: 8px;
      background: #080808;
      color: #f8fafc;
    }

    .push-form,
    .push-preview-panel {
      min-width: 0;
    }

    .push-form {
      display: grid;
      align-content: start;
      gap: 14px;
    }

    .push-form h2,
    .push-preview-head h2 {
      margin: 0;
      color: #f8fafc;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .push-form label {
      display: grid;
      gap: 7px;
    }

    .push-form label span {
      color: #f8fafc;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .push-form input,
    .push-form textarea {
      width: 100%;
      border: 1px solid #2c3747;
      border-radius: 6px;
      background: #111111;
      color: #f8fafc;
      font: inherit;
      font-size: 10px;
      font-weight: 800;
      outline: none;
    }

    .push-form input {
      height: 26px;
      padding: 0 9px;
    }

    .push-form textarea {
      min-height: 76px;
      padding: 9px;
      resize: none;
      line-height: 1.4;
    }

    .push-form input::placeholder {
      color: #64748b;
      font-weight: 500;
    }

    .push-form small {
      display: block;
      margin-top: -4px;
      color: #d7cf59;
      text-align: right;
      font-size: 8px;
      font-weight: 900;
    }

    .icon-box {
      overflow: hidden;
      border: 1px solid #343434;
      border-radius: 8px;
      background: #111111;
    }

    .icon-tabs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 1px solid #343434;
    }

    .icon-tabs button {
      height: 30px;
      border: 0;
      background: transparent;
      color: #f8fafc;
      cursor: pointer;
      font: inherit;
      font-size: 9px;
      font-weight: 900;
    }

    .icon-tabs button.active {
      margin: 4px 0;
      border-radius: 6px;
      background: linear-gradient(135deg, var(--primary), #ffb13d);
      color: #111111;
    }

    .icon-upload {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      padding: 10px 8px;
    }

    .icon-upload div {
      display: grid;
      place-items: center;
      min-height: 80px;
      border: 1px solid #343434;
      border-radius: 6px;
      color: #f8fafc;
      text-align: center;
      font-size: 9px;
      font-weight: 900;
    }

    .icon-upload div:last-child {
      border-style: dashed;
      line-height: 1.35;
    }

    .icon-upload span {
      display: block;
      margin-top: 4px;
      font-size: 8px;
    }

    .push-preview-panel {
      display: grid;
      align-content: start;
      gap: 12px;
      padding-left: 0;
    }

    .push-preview-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .theme-toggle {
      display: inline-flex;
      gap: 4px;
      padding: 4px;
      border-radius: 7px;
      background: #111111;
      border: 1px solid #303030;
    }

    .theme-toggle button {
      min-height: 22px;
      padding: 0 10px;
      border: 0;
      border-radius: 6px;
      background: transparent;
      color: #b9b9b9;
      cursor: pointer;
      font: inherit;
      font-size: 9px;
      font-weight: 900;
    }

    .theme-toggle button.active {
      background: #ffffff;
      color: #111111;
    }

    .push-preview-card {
      padding: 38px 16px 26px;
      border: 1px solid #343434;
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255, 138, 0, 0.08), transparent 38%),
        #151515;
    }

    .preview-top {
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      margin-bottom: 12px;
    }

    .preview-icon {
      display: grid;
      place-items: center;
      width: 56px;
      height: 56px;
      border-radius: 6px;
      background: #242424;
      color: var(--primary);
      font-size: 28px;
    }

    .preview-top p {
      margin: 0 0 6px;
      color: #8f8f8f;
      font-size: 11px;
    }

    .preview-top p strong {
      color: #f3f4f6;
    }

    .preview-top h3 {
      margin: 0 0 6px;
      overflow: hidden;
      color: #f3f4f6;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 15px;
    }

    .preview-top span {
      display: block;
      overflow: hidden;
      color: #d8d8d8;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 13px;
      font-weight: 800;
    }

    .preview-image {
      display: grid;
      place-items: center;
      min-height: 134px;
      border-radius: 6px;
      background:
        linear-gradient(135deg, rgba(255, 138, 0, 0.16), transparent 48%),
        #262626;
      color: var(--primary);
      font-size: 30px;
    }

    .preview-image span {
      display: block;
      margin-top: 4px;
      font-size: 9px;
    }

    .preview-foot {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 10px;
      color: #8f8f8f;
      font-size: 9px;
    }

    .push-preview-line {
      height: 1px;
      background: #343434;
    }

    .push-workspace {
      display: grid;
      gap: 18px;
      width: 100%;
      padding: 18px;
      border: 1px solid #202020;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 138, 0, 0.10), transparent 34%),
        #070707;
      color: #ffffff;
    }

    .push-hero-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 86px;
      padding: 18px 20px;
      border: 1px solid #2a2a2a;
      border-radius: 8px;
      background: #111111;
    }

    .push-hero-bar span {
      display: block;
      margin-bottom: 6px;
      color: var(--primary);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .push-hero-bar h2 {
      margin: 0;
      font-size: 26px;
      line-height: 1.1;
    }

    .push-hero-bar button,
    .push-target-card button {
      min-height: 42px;
      padding: 0 16px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--primary), #ffb13d);
      color: #111111;
      cursor: pointer;
      font: inherit;
      font-weight: 900;
    }

    .push-message-card,
    .push-target-card,
    .push-workspace .push-preview-panel {
      border: 1px solid #2a2a2a;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    }

    .push-message-card {
      display: grid;
      gap: 18px;
      padding: 20px;
    }

    .push-section-title {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
    }

    .push-section-title > span {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: #111111;
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
    }

    .push-section-title h3 {
      margin: 0 0 4px;
      font-size: 17px;
    }

    .push-section-title p {
      margin: 0;
      color: #64748b;
      font-size: 13px;
      line-height: 1.45;
    }

    .push-section-title.compact {
      align-items: start;
    }

    .push-fields {
      display: grid;
      grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
      grid-template-areas:
        "title message"
        "url message"
        "icon message";
      gap: 14px;
    }

    .push-fields label,
    .field-icon {
      display: grid;
      gap: 8px;
      align-content: start;
    }

    .push-fields span,
    .field-icon > span {
      color: #334155;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .field-title {
      grid-area: title;
    }

    .field-message {
      grid-area: message;
    }

    .field-url {
      grid-area: url;
    }

    .field-icon {
      grid-area: icon;
    }

    .push-fields input,
    .push-fields textarea {
      width: 100%;
      border: 1px solid #d8dee8;
      border-radius: 8px;
      background: #f8fafc;
      color: #111827;
      font: inherit;
      outline: none;
    }

    .push-fields input {
      height: 44px;
      padding: 0 12px;
    }

    .push-fields textarea {
      min-height: 184px;
      padding: 12px;
      resize: vertical;
      line-height: 1.5;
    }

    .push-fields small {
      color: #64748b;
      text-align: right;
      font-size: 11px;
      font-weight: 800;
    }

    .push-fields small b {
      color: var(--primary-dark);
    }

    .asset-drop {
      display: grid;
      place-items: center;
      min-height: 98px;
      border: 1px dashed #f59e0b;
      border-radius: 8px;
      background: #fff7ed;
      color: #111827;
      text-align: center;
    }

    .asset-drop strong,
    .asset-drop small {
      display: block;
    }

    .asset-drop strong {
      font-size: 13px;
    }

    .asset-drop small {
      margin-top: 5px;
      color: #92400e;
      font-size: 11px;
      text-align: center;
    }

    .push-lower-grid {
      display: grid;
      grid-template-columns: minmax(260px, 0.42fr) minmax(360px, 1fr);
      gap: 18px;
      align-items: start;
    }

    .push-target-card,
    .push-workspace .push-preview-panel {
      display: grid;
      gap: 16px;
      padding: 18px;
    }

    .target-list {
      display: grid;
      gap: 10px;
    }

    .target-list label {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 0 12px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      background: #f8fafc;
      color: #334155;
      font-size: 13px;
      font-weight: 800;
    }

    .target-list input {
      accent-color: var(--primary);
    }

    .push-workspace .push-preview-head h2 {
      color: #111827;
      font-size: 17px;
      text-transform: none;
    }

    .push-workspace .theme-toggle {
      background: #f1f5f9;
      border-color: #e2e8f0;
    }

    .push-workspace .theme-toggle button {
      color: #64748b;
    }

    .push-workspace .theme-toggle button.active {
      background: #111111;
      color: #ffffff;
    }

    .push-workspace .push-preview-card {
      border-color: #202020;
      background:
        linear-gradient(135deg, rgba(255, 138, 0, 0.13), transparent 44%),
        #111111;
    }

    .push-edit-grid {
      display: grid;
      grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.74fr);
      gap: 16px;
    }

    .push-write-card,
    .push-asset-card,
    .push-note-card {
      display: grid;
      gap: 14px;
      align-content: start;
      padding: 16px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      background: #f8fafc;
    }

    .push-write-card h3,
    .push-asset-card h3,
    .push-note-card h3 {
      margin: 0;
      font-size: 16px;
    }

    .push-write-card label,
    .push-asset-card label,
    .push-asset-card .field-icon {
      display: grid;
      gap: 8px;
      align-content: start;
    }

    .push-write-card label > span,
    .push-asset-card label > span,
    .push-asset-card .field-icon > span {
      color: #334155;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .push-write-card input,
    .push-write-card textarea,
    .push-asset-card input {
      width: 100%;
      border: 1px solid #d8dee8;
      border-radius: 8px;
      background: #ffffff;
      color: #111827;
      font: inherit;
      outline: none;
      box-sizing: border-box;
    }

    .push-write-card input,
    .push-asset-card input {
      height: 44px;
      padding: 0 12px;
    }

    .push-write-card textarea {
      min-height: 150px;
      padding: 12px;
      resize: vertical;
      line-height: 1.5;
    }

    .push-write-card small {
      color: #64748b;
      text-align: right;
      font-size: 11px;
      font-weight: 800;
    }

    .push-write-card small b {
      color: var(--primary-dark);
    }

    .banner-drop {
      min-height: 126px;
    }

    .push-note-card p {
      margin: 0;
      color: #64748b;
      font-size: 14px;
      line-height: 1.55;
    }

    @media (max-width: 920px) {
      .dashboard-page {
        grid-template-columns: 1fr;
      }

      .dash-sidebar {
        position: sticky;
        top: 0;
        z-index: 50;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        height: auto;
        min-height: 68px;
        padding: 10px 14px;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
      }

      .dash-logo {
        margin: 0;
      }

      .dash-logo img {
        width: 132px;
        max-width: 34vw;
      }

      .dash-nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding: 4px 2px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .dash-nav::-webkit-scrollbar {
        display: none;
      }

      .dash-nav a {
        flex: 0 0 auto;
        min-height: 38px;
        padding: 0 12px;
        white-space: nowrap;
      }

      .dash-stats,
      .dash-grid,
      .push-composer,
      .push-edit-grid,
      .push-lower-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 560px) {
      .dash-main {
        padding: 14px;
      }

      .dash-topbar {
        align-items: stretch;
        flex-direction: column;
      }

      .dash-account-actions {
        justify-content: space-between;
      }

      .dash-account {
        min-width: 0;
      }

      .dash-account strong {
        max-width: 46vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

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

      .settings-card {
        padding: 16px;
      }

      .domain-create-card {
        grid-template-columns: 1fr;
        padding: 16px;
      }

      .shortlink-form-card {
        grid-template-columns: 1fr;
        padding: 16px;
      }

      .shortlink-head {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px;
      }

      .shortlink-date-filter {
        width: 100%;
      }

      .shortlink-range-toggle {
        width: 100%;
        min-width: 0;
      }

      .shortlink-range-picker {
        grid-template-columns: 1fr;
        max-height: 78vh;
        overflow: auto;
      }

      .shortlink-range-presets {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-right: 0;
        border-bottom: 1px solid #e5eaf1;
      }

      .shortlink-range-months {
        grid-template-columns: 1fr;
      }

      .shortlink-modal {
        align-items: start;
        padding: 14px;
      }

      .shortlink-modal-head {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px;
      }

    }

    .dashboard-menu-push-member {
      background: #f4f6f8;
    }

    .dashboard-menu-push-member .dash-main {
      padding: 28px;
    }

    .dashboard-menu-push-member .dash-topbar {
      margin-bottom: 18px;
    }

    .dashboard-menu-push-member .push-workspace {
      width: 100%;
      padding: 0;
      gap: 18px;
      border: 0;
      background: transparent;
      color: #111827;
    }

    .dashboard-menu-push-member .push-hero-bar {
      min-height: 78px;
      padding: 18px 22px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
    }

    .dashboard-menu-push-member .push-hero-bar span {
      color: var(--primary-dark);
      font-size: 12px;
    }

    .dashboard-menu-push-member .push-hero-bar h2 {
      color: #111827;
      font-size: 24px;
    }

    .dashboard-menu-push-member .push-message-card {
      gap: 20px;
      padding: 22px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
    }

    .dashboard-menu-push-member .push-section-title > span {
      background: #111111;
      color: var(--primary);
    }

    .dashboard-menu-push-member .push-preview-panel {
      padding: 0;
      border: 0;
      background: transparent;
      box-shadow: none;
    }

    .dashboard-menu-push-member .push-preview-head {
      margin-bottom: 12px;
    }

    .dashboard-menu-push-member .push-preview-head h2 {
      color: #111827;
      font-size: 15px;
      font-weight: 900;
      text-transform: none;
    }

    .dashboard-menu-push-member .push-preview-card {
      padding: 20px;
      border: 1px solid #e5e7eb;
      border-radius: 8px;
      background:
        radial-gradient(circle at top right, rgba(255, 138, 0, 0.16), transparent 28%),
        #111111;
      box-shadow: 0 18px 34px rgba(17, 24, 39, 0.16);
    }

    .dashboard-menu-push-member .preview-top {
      grid-template-columns: 54px minmax(0, 1fr);
      margin-bottom: 16px;
    }

    .dashboard-menu-push-member .preview-icon {
      width: 54px;
      height: 54px;
      background: #ff8a00;
      color: #111111;
      font-size: 18px;
      font-weight: 900;
    }

    .dashboard-menu-push-member .preview-top h3 {
      font-size: 20px;
    }

    .dashboard-menu-push-member .preview-top span {
      font-size: 14px;
      font-weight: 600;
    }

    .dashboard-menu-push-member .preview-image {
      min-height: 190px;
      border: 1px dashed rgba(255, 138, 0, 0.55);
      background:
        linear-gradient(135deg, rgba(255, 138, 0, 0.22), rgba(255, 255, 255, 0.02)),
        #1f1f1f;
      color: #ffb13d;
      font-size: 34px;
      font-weight: 900;
    }

    .dashboard-menu-push-member .preview-foot {
      margin-top: 12px;
      color: #cbd5e1;
      font-size: 11px;
    }

    .dashboard-menu-push-member .push-edit-grid {
      grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .dashboard-menu-push-member .push-write-card,
    .dashboard-menu-push-member .push-asset-card,
    .dashboard-menu-push-member .push-target-card,
    .dashboard-menu-push-member .push-note-card {
      padding: 18px;
      border: 1px solid #e5e7eb;
      background: #ffffff;
      box-shadow: 0 12px 28px rgba(17, 24, 39, 0.05);
    }

    .dashboard-menu-push-member .push-write-card h3,
    .dashboard-menu-push-member .push-asset-card h3,
    .dashboard-menu-push-member .push-note-card h3 {
      color: #111827;
      font-size: 17px;
    }

    .dashboard-menu-push-member .push-write-card input,
    .dashboard-menu-push-member .push-write-card textarea,
    .dashboard-menu-push-member .push-asset-card input {
      border-color: #d7dde6;
      background: #ffffff;
    }

    .dashboard-menu-push-member .push-write-card textarea {
      min-height: 164px;
    }

    .dashboard-menu-push-member .push-write-card label,
    .dashboard-menu-push-member .push-asset-card .field-icon {
      min-width: 0;
    }

    .dashboard-menu-push-member .push-write-card label > span,
    .dashboard-menu-push-member .push-asset-card .field-icon > span {
      display: block;
      color: #334155;
      font-size: 11px;
      font-weight: 900;
      line-height: 1.2;
      text-transform: uppercase;
    }

    .asset-two-col {
      display: grid;
      grid-template-columns: minmax(150px, 0.72fr) minmax(220px, 1fr);
      gap: 14px;
      align-items: stretch;
    }

    .dashboard-menu-push-member .asset-drop {
      min-height: 170px;
      border-color: #ff8a00;
      background:
        linear-gradient(135deg, rgba(255, 138, 0, 0.12), transparent),
        #fffaf3;
    }

    .dashboard-menu-push-member .icon-drop {
      min-height: 170px;
    }

    .dashboard-menu-push-member .banner-drop {
      min-height: 170px;
    }

    .dashboard-menu-push-member .push-lower-grid {
      grid-template-columns: minmax(320px, 0.42fr) minmax(360px, 1fr);
      gap: 18px;
    }

    .dashboard-menu-push-member .target-list label {
      background: #ffffff;
    }

    @media (max-width: 980px) {
      .dashboard-menu-push-member .push-edit-grid,
      .dashboard-menu-push-member .push-lower-grid,
      .asset-two-col {
        grid-template-columns: 1fr;
      }
    }

.log-workspace {
  display: grid;
  gap: 16px;
  width: 100%;
}

.log-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.log-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.log-head h2 {
  margin: 0;
  color: #020617;
  font-size: 20px;
  line-height: 1.2;
}

.log-head p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 13px;
}

.log-table-wrap {
  overflow-x: auto;
}

.log-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  color: #0f172a;
  font-size: 13px;
}

.log-table th,
.log-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf1f5;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.log-table th {
  background: #f8fafc;
  color: #475569;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.log-table td strong {
  display: block;
  color: #111827;
  font-weight: 900;
}

.log-table td strong + span {
  display: block;
  max-width: 320px;
  margin-top: 5px;
  overflow: hidden;
  color: #64748b;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.log-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 12px;
  font-weight: 900;
  text-transform: capitalize;
}

.log-status.sent {
  background: #dcfce7;
  color: #15803d;
}

.log-status.failed {
  background: #fee2e2;
  color: #b91c1c;
}

.log-status.sending {
  background: #fff7ed;
  color: #c05a00;
}

.log-status.create {
  background: #dcfce7;
  color: #15803d;
}

.log-status.edit {
  background: #e0f2fe;
  color: #0369a1;
}

.log-status.delete {
  background: #fee2e2;
  color: #b91c1c;
}

.log-link {
  color: #d96f00;
  font-weight: 900;
  text-decoration: none;
}

.log-link:hover {
  text-decoration: underline;
}

.log-empty {
  padding: 30px 16px !important;
  color: #64748b;
  text-align: center !important;
}

@media (max-width: 760px) {
  .log-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .log-table {
    min-width: 820px;
  }
}
