body{
  margin:0;
  background:#050505;
  font-family:'Inter',sans-serif;
}

.admin_page{
  min-height:100vh;
  padding:28px 18px 120px;
}

.admin_shell{
  width:100%;
  max-width:1200px;
  margin:0 auto;
}

.admin_topbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  margin-bottom:36px;
}

.admin_kicker{
  color:#2ccaca;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:12px;
}

.admin_topbar h1{
  margin:0 0 12px;
  color:#fff;
  font-size:58px;
  line-height:.92;
  font-weight:900;
  letter-spacing:-.06em;
}

.admin_topbar p{
  margin:0;
  color:#9f9f9f;
  font-size:17px;
  line-height:1.5;
}

.logout_btn{
  height:52px;
  padding:0 24px;
  border:none;
  border-radius:18px;
  background:#141414;
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}

.admin_stats_grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:34px;
}

.admin_stat_card{
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  border-radius:28px;
  padding:24px;
}

.admin_stat_card span{
  display:block;
  color:#8f8f8f;
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}

.admin_stat_card strong{
  display:block;
  color:#fff;
  font-size:52px;
  line-height:1;
  font-weight:900;
}

.admin_section{
  margin-bottom:40px;
}

.section_header{
  margin-bottom:18px;
}

.section_header h2{
  margin:0;
  color:#fff;
  font-size:28px;
  font-weight:900;
  letter-spacing:-.03em;
}

.admin_quick_grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.quick_card{
  display:block;
  padding:26px;
  border-radius:28px;
  background:#101010;
  border:1px solid rgba(255,255,255,.06);
  text-decoration:none;
  transition:.18s ease;
}

.quick_card:hover{
  transform:translateY(-2px);
  border-color:rgba(44,202,202,.35);
}

.quick_card strong{
  display:block;
  color:#fff;
  font-size:22px;
  font-weight:900;
  margin-bottom:10px;
}

.quick_card span{
  color:#9f9f9f;
  font-size:14px;
  line-height:1.5;
}

.recent_listings{
  display:grid;
  gap:16px;
}

.recent_listing{
  display:flex;
  gap:18px;
  align-items:center;
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  border-radius:24px;
  overflow:hidden;
}

.recent_listing_image{
  width:180px;
  height:140px;
  overflow:hidden;
  flex-shrink:0;
}

.recent_listing_image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.recent_listing_body{
  padding-right:20px;
}

.recent_listing_body h3{
  margin:0 0 10px;
  color:#fff;
  font-size:24px;
  font-weight:900;
}

.recent_listing_body p{
  margin:0 0 12px;
  color:#9f9f9f;
  font-size:14px;
  line-height:1.5;
}

.recent_listing_meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.recent_listing_meta span{
  padding:8px 12px;
  border-radius:999px;
  background:#1a1a1a;
  color:#fff;
  font-size:11px;
  font-weight:800;
}

@media(max-width:900px){

  .admin_stats_grid{
    grid-template-columns:repeat(2,1fr);
  }

  .admin_quick_grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  .admin_topbar{
    flex-direction:column;
  }

  .admin_topbar h1{
    font-size:42px;
  }

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

  .recent_listing{
    flex-direction:column;
    align-items:flex-start;
  }

  .recent_listing_image{
    width:100%;
    height:240px;
  }

  .recent_listing_body{
    padding:0 18px 20px;
  }
}