    :root {
      --orange: #f05a1a;
      --dark: #080b0d;
      --panel: #141719;
      --line: #2a2d30;
      --soft: #f5f5f2;
    }

    body {
      margin: 0;
      background: radial-gradient(circle at top, #1b1f22, #060708 75%);
      font-family: Arial, Helvetica, sans-serif;
      color: #111;
    }

    .topbar {
      height: 72px;
      background: #080a0b;
      display: flex;
      align-items: center;
      padding: 0 28px;
      color: #fff;
    }

    .brand {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -1px;
      color: #fff;
      text-decoration: none;
      margin-right: 70px;
    }

    .brand span {
      color: var(--orange);
    }

    .nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 800;
      font-size: 13px;
      padding: 27px 18px 23px;
      border-bottom: 3px solid transparent;
    }

    .nav a.active {
      border-bottom-color: var(--orange);
      color: #fff;
    }

    .top-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 22px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      background: var(--orange);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 15px;
      font-weight: 900;
    }

    .page {
      padding: 0 24px 24px;
    }

    .hero-wrap {
      background: #1a1d1f;
      border-radius: 16px;
      padding: 12px;
      display: grid;
      grid-template-columns: 1fr 430px;
      gap: 22px;
    }

    .hero {
      min-height: 300px;
      border-radius: 10px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.1) 100%),
        url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      position: relative;
      padding: 48px 44px;
      color: #fff;
    }

    .hero h4 {
      font-weight: 900;
      font-size: 24px;
    }

    .hero h1 {
      font-size: 58px;
      line-height: .92;
      font-weight: 1000;
      letter-spacing: -3px;
      margin: 6px 0 16px;
    }

    .hero h1 span {
      color: var(--orange);
    }

    .hero p {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 28px;
    }

    .btn-orange {
      background: var(--orange);
      color: #fff;
      border: 0;
      border-radius: 5px;
      font-weight: 900;
      padding: 13px 28px;
      font-size: 13px;
    }

    .btn-outline-light {
      border-radius: 5px;
      font-weight: 900;
      padding: 12px 28px;
      font-size: 13px;
    }

    .stats-panel {
      background: #0b0d0e;
      border: 1px solid #202326;
      border-radius: 12px;
      padding: 22px;
      color: #fff;
    }

    .stats-panel h3 {
      color: var(--orange);
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 20px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .stat {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 10px;
      border-top: 1px solid #25282a;
    }

    .stat:nth-child(odd) {
      border-right: 1px solid #25282a;
    }

    .stat i {
      font-size: 31px;
      color: #bfc1c3;
      width: 42px;
      text-align: center;
    }

    .stat strong {
      color: var(--orange);
      font-size: 22px;
      line-height: 1;
      display: block;
    }

    .stat span {
      font-size: 11px;
      font-weight: 900;
    }

    .content {
      background: #f4f3ef;
      border-radius: 12px;
      margin-top: 12px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 2fr 1.2fr 340px;
    }

    .block {
      padding: 22px 24px;
      border-right: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
    }

    .block-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .block-title h2 {
      font-size: 20px;
      font-weight: 1000;
      margin: 0;
    }

    .view-link {
      color: var(--orange);
      font-weight: 800;
      font-size: 12px;
      text-decoration: none;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .cardx {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 7px;
      overflow: hidden;
    }

    .thumb {
      height: 130px;
      background: #2f3335;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 36px;
      position: relative;
    }

    .label {
      position: absolute;
      left: 10px;
      bottom: 8px;
      background: #111;
      color: #fff;
      font-size: 10px;
      padding: 4px 7px;
      border-radius: 3px;
      font-weight: 900;
    }

    .card-bodyx {
      padding: 14px;
    }

    .card-bodyx h3 {
      font-size: 17px;
      line-height: 1.25;
      font-weight: 1000;
      margin-bottom: 24px;
    }

    .time {
      font-size: 11px;
      color: #666;
    }

    .featured-img {
      height: 170px;
      background: #293033;
      border-radius: 6px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 54px;
      margin-bottom: 12px;
    }

    .featured h3 {
      font-size: 20px;
      font-weight: 1000;
      margin-bottom: 2px;
    }

.topbar{
    display:flex;
    align-items:center;
    padding:0 32px;
    height:72px;
}

.brand{
    flex:0 0 auto;
}

.main-nav{
    display:flex;
    gap:28px;

    /* This is the important part */
    margin-left:40px;

    /* Grow to fill the space */
    flex:1;
}

.top-actions{
    display:flex;
    align-items:center;
    gap:12px;

    /* Push to far right */
    margin-left:auto;
}

    .chips span {
      background: #ddd;
      border-radius: 999px;
      padding: 4px 10px;
      font-size: 10px;
      font-weight: 900;
      margin-right: 4px;
    }

    .featured-footer {
      margin-top: 15px;
      display: grid;
      grid-template-columns: repeat(3, 1fr) 120px;
      gap: 12px;
      align-items: center;
      border-top: 1px solid #ddd;
      padding-top: 10px;
      font-size: 12px;
      font-weight: 900;
    }

    .side-list {
      display: grid;
      gap: 18px;
      margin-top: 20px;
    }

    .side-row {
      display: grid;
      grid-template-columns: 32px 40px 1fr;
      align-items: center;
      gap: 12px;
      font-size: 13px;
    }

    .side-row i {
      font-size: 22px;
    }

    .side-row strong {
      font-size: 19px;
    }

    .mini-section {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: #f4f3ef;
    }

    .tiny-items {
      display: flex;
      gap: 18px;
      align-items: start;
    }

    .tiny {
      width: 78px;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
    }

    .tiny-img {
      height: 46px;
      background: #1d2022;
      border-radius: 6px;
      margin-bottom: 6px;
      display: grid;
      place-items: center;
      color: white;
    }

    .bottom-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: #f4f3ef;
      border-radius: 0 0 12px 12px;
      overflow: hidden;
    }

    footer {
      color: #ccc;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      font-size: 12px;
    }

.avatar {
  width: 42px;
  height: 42px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.user-menu {
  min-width: 220px;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid #222;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.user-menu .dropdown-item {
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 10px;
}

.user-menu .dropdown-item:hover {
  background: #f4f4f4;
}


.slatelet-page-header {
  background: #f4f3ef;
  border-radius: 12px 12px 0 0;
  padding: 28px 32px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.slatelet-page-header h1 {
  margin: 0 0 6px;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -1px;
}

.slatelet-page-header p {
  margin: 0;
  color: #555;
  font-size: 15px;
}

.slatelet-shell {
  margin-top: 0;
  border-radius: 0 0 12px 12px;
  background: #f4f3ef;
}

    @media (max-width: 1200px) {
      .hero-wrap,
      .content,
      .mini-section,
      .bottom-grid {
        grid-template-columns: 1fr;
      }

      .news-grid {
        grid-template-columns: 1fr;
      }

      .nav {
        display: none;
      }
    }