:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid #1d1d1f;
  outline-offset: 2px;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f2f2f5;
  color: #1d1d1f;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* LAYOUT */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 224px;
  background: #161618;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}
.sidebar-head {
  padding: 28px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sidebar-head h1 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.sidebar-head .sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sidebar-view-site {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-view-site:hover {
  color: #fff;
}
.sidebar-nav {
  flex: 1;
  padding: 12px 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sidebar-nav::-webkit-scrollbar {
  display: none;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.15s;
  margin-bottom: 2px;
}
.sidebar-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.sidebar-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.sidebar-nav a i {
  font-size: 17px;
  width: 20px;
  text-align: center;
}
.sidebar-foot {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-foot .user-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}
.sidebar-foot a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.15s;
}
.sidebar-foot a:hover {
  color: #fff;
}

/* MAIN */
.main-content {
  margin-left: 224px;
  flex: 1;
  min-width: 0;
  padding: 32px 40px;
  min-height: 100vh;
  overflow-x: hidden;
}
canvas#chartDaily {
  display: block;
  max-width: 100%;
}
.page-head {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page-head h1 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.page-head .sub {
  font-size: 13px;
  color: #86868b;
  margin-top: 2px;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.stat-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 10px;
  padding: 22px 24px;
}
.stat-card .val {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-card .lbl {
  font-size: 12px;
  color: #86868b;
  margin-top: 6px;
  font-weight: 500;
}

/* TABLE */
.tbl {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 10px;
  overflow: hidden;
}
.tbl table {
  width: 100%;
  border-collapse: collapse;
}
.tbl th {
  font-size: 11px;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid #e8e8ed;
  background: #fafafa;
}
.tbl td {
  font-size: 13px;
  padding: 13px 20px;
  border-bottom: 1px solid #f2f2f5;
  vertical-align: middle;
}
.tbl tr:last-child td {
  border-bottom: none;
}
.tbl tr:hover td {
  background: #fafafa;
}
.tbl .empty {
  text-align: center;
  padding: 48px 20px;
  color: #86868b;
  font-size: 13px;
}

/* BADGE */
.bdg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.bdg-on {
  background: #e8f5e9;
  color: #2e7d32;
}
.bdg-off {
  background: #f0f0f2;
  color: #86868b;
}
.bdg-new {
  background: #e3f2fd;
  color: #1565c0;
}

/* FORM CARD */
.form-card {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 10px;
  padding: 28px 32px;
  max-width: 660px;
}
.form-card .form-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.fg {
  margin-bottom: 18px;
}
.fg-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #515154;
  margin-bottom: 5px;
}
.fg-input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e8e8ed;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  color: #1d1d1f;
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.fg-input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: #1d1d1f;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}
.fg textarea {
  resize: vertical;
  min-height: 90px;
}
.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  line-height: 1;
}
.btn-pri {
  background: #1d1d1f;
  color: #fff;
}
.btn-pri:hover {
  background: #000;
}
.btn-out {
  border: 1.5px solid #d2d2d7;
  color: #515154;
  background: transparent;
}
.btn-out:hover {
  border-color: #1d1d1f;
  color: #1d1d1f;
  background: #f5f5f7;
}
.btn-dan {
  background: #dc2626;
  color: #fff;
}
.btn-dan:hover {
  background: #b91c1c;
}
.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
  border-radius: 6px;
}
.pagination-current {
  background: #1d1d1f !important;
  color: #f5f5f7 !important;
  border-color: #1d1d1f !important;
}
.filter-bar .fg-input {
  height: 36px;
  padding: 0 12px;
  font-size: 13px;
}
.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  min-height: 52px;
}
.btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ALERT */
.alert {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.alert-ok {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.alert-no {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ffccbc;
}

/* LOGIN */
.login-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #0a0a0c;
}
.login-wrap::-webkit-scrollbar {
  display: none;
}
.login-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a0a0c;
}
.login-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  background: #0a0a0c;
}
.login-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}
.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding: 36px 32px 32px;
  margin: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
@supports (backdrop-filter: blur(1px)) {
  .login-card {
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.05) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.16);
  }
  .login-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.18) 0%,
      transparent 45%
    );
  }
  .login-card > * {
    position: relative;
    z-index: 1;
  }
}
.login-card h1 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #f5f5f7;
  letter-spacing: -0.02em;
}
.login-card .sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 4px 0 24px;
}
.login-card .fg-label {
  color: rgba(255, 255, 255, 0.7);
}
.login-card .fg-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f5f5f7;
}
.login-card .fg-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.login-card .fg-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.1);
}
.login-card .btn-pri {
  width: 100%;
  justify-content: center;
  padding: 11px;
  background: rgba(255, 255, 255, 0.18);
  color: #f5f5f7;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.login-card .btn-pri:hover {
  background: rgba(255, 255, 255, 0.28);
}
.login-card .alert-no {
  background: rgba(255, 80, 80, 0.15);
  color: #ff6b6b;
  border: 1px solid rgba(255, 80, 80, 0.2);
  margin-bottom: 16px;
}

/* MESSAGE VIEW */
.msg-detail {
  background: #fff;
  border: 1px solid #e8e8ed;
  border-radius: 10px;
  padding: 28px 32px;
  max-width: 640px;
}
.msg-detail .f {
  margin-bottom: 18px;
}
.msg-detail .fl {
  font-size: 11px;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.msg-detail .fv {
  font-size: 14px;
  color: #1d1d1f;
  line-height: 1.6;
}
.msg-detail .fv.body {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.7;
}

/* ACTIONS BAR */
.act {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* CHECKBOX */
.fg-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #515154;
  cursor: pointer;
}
.fg-check input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* MISC */
.txt-muted {
  color: #86868b;
}
.txt-sm {
  font-size: 12px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mt-2 {
  margin-top: 8px;
}

/* MOBILE SIDEBAR TOGGLE */
.sidebar-toggle {
  display: none;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  width: 40px;
  height: 40px;
  background: #1d1d1f;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: left 0.3s;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
}

@media (max-width: 768px) {
  .admin-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 260px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay.open {
    display: block;
  }
  .sidebar-toggle {
    display: flex;
  }
  .sidebar-toggle.open {
    left: 272px;
  }
  .sidebar-head {
    padding: 24px 20px 16px;
  }
  .sidebar-head h1 {
    font-size: 14px;
  }
  .sidebar-nav {
    padding: 8px;
  }
  .sidebar-nav a {
    padding: 12px 14px;
    font-size: 14px;
    gap: 12px;
    border-radius: 8px;
  }
  .sidebar-nav a i {
    font-size: 18px;
    width: 22px;
  }
  .sidebar-foot {
    padding: 14px 20px;
  }
  .main-content {
    margin-left: 0;
    padding: 64px 16px 24px;
  }
  .page-head {
    margin-bottom: 20px;
  }
  .page-head h1 {
    font-size: 20px;
  }
  .page-head .sub {
    font-size: 12px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-card .val {
    font-size: 20px;
  }
  .stat-card .lbl {
    font-size: 11px;
    margin-top: 4px;
  }

  /* Table → card layout */
  .tbl {
    overflow: visible;
    background: transparent;
    border: none;
  }
  .tbl table,
  .tbl thead,
  .tbl tbody,
  .tbl tr {
    display: block;
  }
  .tbl thead {
    display: none;
  }
  .tbl tbody tr {
    background: #fff;
    border: 1px solid #e8e8ed;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
  }
  .tbl tbody tr:hover td {
    background: transparent;
  }
  .tbl td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border: none;
    font-size: 13px;
  }
  .tbl td:not(:last-child) {
    border-bottom: 1px solid #f2f2f5;
  }
  .tbl td::before {
    font-size: 10px;
    font-weight: 600;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  .tbl td:last-child {
    justify-content: flex-start;
    gap: 8px;
    padding-top: 10px;
    margin-top: 4px;
    border-top: 1px solid #e8e8ed;
    border-bottom: none;
    flex-wrap: wrap;
  }
  .tbl td:last-child::before {
    display: none;
  }
  .tbl .empty {
    justify-content: center;
    padding: 32px 16px;
    border: none;
    background: #fff;
    border-radius: 10px;
  }
  .tbl .empty::before {
    display: none;
  }

  /* Column labels per page */
  .tbl-dashboard td:nth-child(1)::before {
    content: "Name";
  }
  .tbl-dashboard td:nth-child(2)::before {
    content: "Email";
  }
  .tbl-dashboard td:nth-child(3)::before {
    content: "Subject";
  }
  .tbl-dashboard td:nth-child(4)::before {
    content: "Date";
  }
  .tbl-dashboard td:nth-child(5)::before {
    content: "Status";
  }

  .tbl-messages td:nth-child(1)::before {
    content: "Name";
  }
  .tbl-messages td:nth-child(2)::before {
    content: "Email";
  }
  .tbl-messages td:nth-child(3)::before {
    content: "Subject";
  }
  .tbl-messages td:nth-child(4)::before {
    content: "Date";
  }
  .tbl-messages td:nth-child(5)::before {
    content: "Status";
  }

  .tbl-skills td:nth-child(1)::before {
    content: "Order";
  }
  .tbl-skills td:nth-child(2)::before {
    content: "Icon";
  }
  .tbl-skills td:nth-child(3)::before {
    content: "Category";
  }
  .tbl-skills td:nth-child(4)::before {
    content: "Description";
  }
  .tbl-skills td:nth-child(5)::before {
    content: "Tags";
  }
  .tbl-skills td:nth-child(6)::before {
    content: "Status";
  }

  .tbl-experiences td:nth-child(1)::before {
    content: "Order";
  }
  .tbl-experiences td:nth-child(2)::before {
    content: "Title";
  }
  .tbl-experiences td:nth-child(3)::before {
    content: "Company";
  }
  .tbl-experiences td:nth-child(4)::before {
    content: "Period";
  }
  .tbl-experiences td:nth-child(5)::before {
    content: "Status";
  }

  .tbl-projects td:nth-child(1)::before {
    content: "Title";
  }
  .tbl-projects td:nth-child(2)::before {
    content: "Description";
  }
  .tbl-projects td:nth-child(3)::before {
    content: "Tech";
  }
  .tbl-projects td:nth-child(4)::before {
    content: "Status";
  }

  .tbl-faqs td:nth-child(1)::before {
    content: "Question";
  }
  .tbl-faqs td:nth-child(2)::before {
    content: "Order";
  }
  .tbl-faqs td:nth-child(3)::before {
    content: "Status";
  }
  .tbl-faqs td:nth-child(4)::before {
    content: "Created";
  }

  .tbl-analytics td:nth-child(1)::before {
    content: "IP";
  }
  .tbl-analytics td:nth-child(2)::before {
    content: "Visits";
  }
  .tbl-analytics td:nth-child(3)::before {
    content: "Time";
  }
  .tbl-analytics td:nth-child(4)::before {
    content: "First";
  }
  .tbl-analytics td:nth-child(5)::before {
    content: "Last";
  }
  .tbl-analytics td:nth-child(6)::before {
    content: "Pages";
  }
  .tbl-analytics td:nth-child(7)::before {
    content: "Browser";
  }
  .page-hint {
    cursor: help;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.35);
  }
  .form-card .tbl:not(.tbl-analytics) tbody tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f2f2f5;
    border-radius: 0;
    margin-bottom: 0;
    background: transparent;
  }
  .form-card .tbl:not(.tbl-analytics) td {
    display: inline-flex;
    padding: 0;
    border: none;
  }
  .form-card .tbl:not(.tbl-analytics) td::before {
    display: none;
  }

  .form-card {
    max-width: 100%;
    padding: 20px;
  }
  .form-card .form-title {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .fg {
    margin-bottom: 14px;
  }
  .fg-label {
    font-size: 11px;
  }
  .fg-input,
  .fg textarea,
  .fg select {
    padding: 10px 12px;
    font-size: 14px;
  }
  .fg-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .btn {
    padding: 10px 20px;
    font-size: 13px;
    min-height: 40px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 34px;
  }
  .btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    min-height: 52px;
    width: 100%;
  }
  .msg-detail {
    padding: 20px;
  }
  .act {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .sidebar-toggle {
    top: 8px;
    left: 8px;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .sidebar-toggle.open {
    left: auto;
    right: 10px;
  }
  .main-content {
    padding: 56px 10px 16px;
  }
  .page-head {
    margin-bottom: 16px;
  }
  .page-head h1 {
    font-size: 17px;
  }
  .page-head .sub {
    font-size: 11px;
    margin-top: 1px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
  .stat-card {
    padding: 12px 14px;
  }
  .stat-card .val {
    font-size: 18px;
  }
  .stat-card .lbl {
    font-size: 10px;
    margin-top: 3px;
  }
  .tbl tbody tr {
    padding: 12px 14px;
    margin-bottom: 8px;
  }
  .tbl td {
    padding: 6px 0;
    font-size: 12px;
  }
  .form-card {
    padding: 14px;
  }
  .form-card .form-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .fg-input,
  .fg textarea,
  .fg select {
    padding: 9px 10px;
    font-size: 14px;
  }
  .btn {
    padding: 9px 16px;
    font-size: 12px;
    min-height: 38px;
  }
  .btn-sm {
    padding: 7px 12px;
    font-size: 11px;
    min-height: 32px;
  }
  .sidebar {
    width: 100%;
    max-width: 280px;
  }
  .sidebar-nav a {
    padding: 14px 16px;
    font-size: 14px;
  }
  .sidebar-foot {
    padding: 12px 16px;
  }
  .act {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .msg-detail {
    padding: 16px;
  }
  .msg-detail .fv {
    font-size: 13px;
  }
  .msg-detail .fv.body {
    font-size: 13px;
  }
  .main-content h2[style] {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }
}

/* Ultra-large screens: scale the whole admin up proportionally so it
   never looks tiny on 4K / ultrawide / browser zoomed out < 70%. */
@media (min-width: 1600px) {
  html {
    zoom: 1.06;
  }
  .main-content {
    padding: 36px 48px;
  }
}
@media (min-width: 2200px) {
  html {
    zoom: 1.16;
  }
}
@media (min-width: 3000px) {
  html {
    zoom: 1.28;
  }
  .main-content {
    padding: 44px 60px;
  }
}
@media (min-width: 4000px) {
  html {
    zoom: 1.42;
  }
}
