:root{
  --max: 1120px;
  --bg:#0b1020;
  --card:#101a33;
  --card2:#0f1730;
  --text:#e9edf7;
  --muted:#a9b3cc;
  --border:rgba(255,255,255,.10);
  --accent:#5eead4;
  --accent2:#60a5fa;
  --danger:#fb7185;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --chip: rgba(94,234,212,.12);
}

:root {
  --font-main: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* GLOBAL RESET */
html, body {
  font-family: var(--font-main);
}

@media (min-width: 1100px){
  :root{ --max: 1320px; }
}

@media (min-width: 1400px){
  :root{ --max: 1480px; }
}

*{ box-sizing:border-box; }

html,
body{
  height:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(96,165,250,.18), transparent 65%),
    radial-gradient(900px 500px at 85% 0%, rgba(94,234,212,.12), transparent 65%),
    var(--bg);
  color:var(--text);
}

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

a:hover{
  text-decoration:underline;
}

.container,
.nav{
  max-width: var(--max) !important;
}

.container{
  margin:0 auto;
  padding:18px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.72);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 18px;
  margin:0 auto;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

/* .logo{
  width:34px;
  height:34px;
  border-radius:10px;
  background: linear-gradient(135deg, rgba(94,234,212,.9), rgba(96,165,250,.9));
  box-shadow: 0 10px 26px rgba(94,234,212,.18);
} */

.logo{
  width:34px;
  height:34px;
  border-radius:10px;
  background: url("/assets/images/favicon.png") center/cover no-repeat;
  box-shadow: 0 10px 26px rgba(94,234,212,.18);
}

.brand span{
  font-size:15px;
}

.brand small{
  display:block;
  font-weight:600;
  color:var(--muted);
  margin-top:2px;
  letter-spacing:0;
}

.navlinks{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.navlinks a{
  padding:8px 10px;
  border-radius:12px;
  color:var(--muted);
}

.navlinks a:hover{
  background: rgba(255,255,255,.06);
  color:var(--text);
  text-decoration:none;
}

.hero{
  padding: 22px 0 10px;
}

.heroGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hCard{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hTitle{
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.12;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hSub{
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 720px){
  .hCard{
    padding: 16px;
  }

  .hTitle{
    font-size: 24px;
    line-height: 1.15;
  }
}

.split{
  display:grid;
  grid-template-columns:1fr !important;
  gap:16px;
}


.pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.pill{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  color: var(--text);
}

.panel{
  background: rgba(16,26,51,.60);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}

.panel h2{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.3px;
  color: var(--muted);
  text-transform: uppercase;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

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

.input,
select{
  width:100%;
  max-width:100%;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(11,16,32,.55);
  color: var(--text);
  outline:none;
}

.input::placeholder{
  color: rgba(169,179,204,.8);
}

.row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.btn{
  padding:11px 14px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor:pointer;
  font-weight:650;
}

.btn:hover{
  background: rgba(255,255,255,.12);
}

.btn.primary{
  background: linear-gradient(135deg, rgba(94,234,212,.25), rgba(96,165,250,.25));
  border-color: rgba(94,234,212,.35);
}

.btn.primary:hover{
  background: linear-gradient(135deg, rgba(94,234,212,.32), rgba(96,165,250,.32));
}

.kpi{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.kpi .box{
  flex:1;
  min-width:160px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
}

.kpi .num{
  font-size:20px;
  font-weight:800;
}

.kpi .lbl{
  font-size:12px;
  color:var(--muted);
  margin-top:4px;
}

.content{
  width:100%;
}

.content.split > div,
.container,
.panel,
.card,
.split,
.heroGrid,
.cards{
  min-width:0;
}

/* JOB GRID */
.cards{
  display:grid;
  width:100% !important;
  min-width:0;
  gap:16px;
  align-items:stretch;
  grid-template-columns:1fr;
}

@media (min-width: 900px){
  .cards{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px){
  .cards{
    grid-template-columns:1fr !important;
  }
}

.card{
  min-width:0;
  height:100%;
  background: rgba(16,26,51,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition: transform .12s ease, border-color .12s ease;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(96,165,250,.35);
}

.card h3{
  margin:0;
  font-size:15px;
  line-height:1.25;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  color: var(--muted);
  font-size:12px;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  max-width:100%;
  padding:6px 10px;
  border-radius:999px;
  background: var(--chip);
  border:1px solid rgba(94,234,212,.22);
  font-size:12px;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.snip{
  margin:0;
  margin-top:10px;
  color: var(--muted);
  font-size:13px;
  line-height:1.45;
  overflow-wrap:anywhere;
  word-break:break-word;

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

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

.card .actions .badge{
  flex:1 1 auto;
  min-width:0;
  max-width:100%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.card .actions a{
  flex:0 0 auto;
  margin-left:auto;
  font-weight:700;
  text-decoration:none;
}

.card .actions a:hover{
  text-decoration:underline;
}

.badge{
  font-size:12px;
  max-width:100%;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* IN-FEED ADSENSE CARD */
.adCard{
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: hidden;
}

.adCard ins.adsbygoogle{
  display: block !important;
  width: 100% !important;
  min-height: 280px !important;
}

.adCard:hover{
  transform:none;
  border-color:var(--border);
}

.adCard .meta{
  margin-bottom:8px;
}

.adCard .chip{
  background: rgba(255,255,255,.05);
  border:1px solid var(--border);
  color: var(--muted);
}

.adCard ins.adsbygoogle{
  display:block !important;
  width:100% !important;
  max-width:100%;
  min-height:100px;
  overflow:hidden;
}

/* Make ad rows span full width of the jobs grid */
.cards .adCard{
  grid-column:1 / -1;
}

.sidebar .adslot{
  background: rgba(255,255,255,.04);
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding:12px;
  color: var(--muted);
  font-size:12px;
}

.adlabel{
  font-size:11px;
  letter-spacing:.3px;
  color: var(--muted);
  text-transform: uppercase;
  margin:0 0 8px;
}

.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color: var(--muted);
}

.footer a{
  color: var(--muted);
}

.footer a:hover{
  color: var(--text);
}

.footerRow{
  display:flex;
  gap:12px;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
}

.small{
  font-size:12px;
  line-height:1.55;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.page{
  max-width:860px;
  margin:0 auto;
}

.page h1{
  margin:6px 0 8px;
}

.page p,
.page li{
  color: var(--muted);
  line-height:1.65;
}

.page .panel{
  margin-top:14px;
}

.page .section{
  margin-top:0;
}

.jobHead{
  display:flex;
  gap:10px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.jobTitle{
  font-size:22px;
  margin:0;
  line-height:1.18;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.jobMeta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

hr.sep,
.sep{
  border:none;
  border-top:1px solid var(--border);
  margin:14px 0;
  opacity:.25;
}

.section{
  margin-top:14px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:16px;
  background: rgba(255,255,255,.03);
}

.section h2{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.6px;
  text-transform:uppercase;
  color: var(--muted);
}

.section h3{
  margin:14px 0 8px;
  font-size:14px;
  font-weight:800;
  color: var(--text);
  opacity:.95;
}

.section p{
  margin:0 0 10px;
  color: var(--text);
  line-height:1.65;
  font-size:14px;
  opacity:.92;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.section ul{
  list-style:none;
  padding-left:0;
  margin:10px 0 0;
  display:grid;
  gap:8px;
}

.section li{
  display:flex;
  gap:10px;
  margin:6px 0;
  line-height:1.5;
  color: var(--text);
  opacity:.95;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.section li::before{
  content:"•";
  flex:0 0 auto;
  width:18px;
  height:18px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.25);
  color: rgba(34,197,94,.95);
  margin-top:2px;
}

.notice{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(251,113,133,.35);
  background: rgba(251,113,133,.08);
  color: rgba(255,255,255,.92);
  font-size:13px;
  line-height:1.5;
}

.addr a{
  color:inherit;
  opacity:.95;
  text-decoration:underline;
  text-underline-offset:2px;
  font-weight:600;
}

.addr a:hover{
  opacity:1;
}

.adSection{
  overflow:hidden;
}

.adSection .adsbygoogle{
  display:block !important;
  width:100% !important;
  max-width:100%;
  min-height:120px;
}

.adlabel{
  font-size:11px;
  letter-spacing:.3px;
  color: var(--muted);
  text-transform: uppercase;
  margin:0 0 8px;
}

.salaryFilter{
  border: 1px solid rgba(94,234,212,.4);
  background: rgba(94,234,212,.08);
}

.salaryInsights{
  margin: 0 0 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255,255,255,.03);
}

.salaryStats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.salaryStat{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
}

.salaryStatLabel{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.salaryStatValue{
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.salaryChips{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.salaryChip{
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.salaryChip.active{
  border-color: rgba(94,234,212,.45);
  background: rgba(94,234,212,.12);
}

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

.popularPanel{
  padding:14px;
}

.popularGrid{
  display:grid;
  gap:12px;
  grid-template-columns:1fr;
}

.popularCard{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}

.popularCard h3{
  margin:0;
  font-size:15px;
  line-height:1.3;
}

.popularCard .actions{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.quickNav{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.quickNav .box a{
  text-decoration:none;
  font-weight:700;
}

.nextPrevNav{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.nextPrevCard{
  padding:14px;
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.03);
}

.nextPrevLabel{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}

.keepExploringGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.archiveLinksInline{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

@media (min-width: 721px){
  .popularGrid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

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

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

.skeletonCard{
  min-height: 180px;
}

.skeletonLine,
.skeletonChip,
.skeletonBadge{
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.08);
}

.skeletonLine::after,
.skeletonChip::after,
.skeletonBadge::after{
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.10),
    transparent
  );
  animation: skeletonShimmer 1.2s infinite;
}

.skeletonTitle{
  height: 22px;
  width: 72%;
  border-radius: 8px;
  margin-bottom: 12px;
}

.skeletonLine{
  height: 14px;
  width: 100%;
  border-radius: 8px;
  margin: 10px 0;
}

.skeletonChip{
  display: inline-block;
  height: 28px;
  width: 120px;
  border-radius: 999px;
}

.skeletonBadge{
  display: inline-block;
  height: 32px;
  width: 140px;
  border-radius: 999px;
}

@keyframes skeletonShimmer{
  100% { transform: translateX(100%); }
}

#popularJobs{
  min-height: 320px;
}

#browseDepartments,
#browseLocations{
  min-height: 84px;
}

.kpiCard{
  min-height: 76px;
}

.kpiCard .num{
  min-height: 28px;
}

.filterToggle{
  width:100%;
  min-height:52px;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 14px;
  cursor:pointer;
  text-align:left;
  font:inherit;
}

.filterToggleText{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}

.filtersContent{
  margin-top:12px;
}

.kpiLinkCard{
  text-decoration:none;
  color:inherit;
  display:block;
}

.kpiLinkCard:hover{
  text-decoration:none;
  border-color:rgba(94,234,212,.35);
  background:rgba(255,255,255,.06);
}

.compactBrowsePanel{
  padding:14px;
}

.compactBrowseIntro{
  margin-bottom:14px;
}

.compactBrowseIntro h2{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.35;
}

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

.compactBrowseGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.compactBrowseCard{
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  padding:14px;
}

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

.compactBrowseHead h3{
  margin:0;
  font-size:15px;
  line-height:1.3;
}

.compactBrowseText{
  margin:0 0 12px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.viewAllLink{
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  text-decoration:none;
}

.viewAllLink:hover{
  color:var(--text);
  text-decoration:underline;
}

.compactList{
  display:grid;
  gap:10px;
}

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

.compactItem{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
  border:1px solid var(--border);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:12px;
  min-width:0;
}

.compactItemMain{
  min-width:0;
}

.compactItemTitle{
  font-size:14px;
  font-weight:800;
  line-height:1.3;
  margin:0 0 6px;
}

.compactItemMeta{
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
}

.compactItemActions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.compactCount{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  border-radius:999px;
  padding:0 10px;
  font-size:12px;
  color:var(--muted);
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
}

.card.closingSoonGlow{
  border-color:rgba(94,234,212,.45);
  box-shadow:
    0 0 0 1px rgba(94,234,212,.14),
    0 0 22px rgba(94,234,212,.10),
    0 8px 20px rgba(0,0,0,.10);
  background:
    radial-gradient(circle at top right, rgba(94,234,212,.10), transparent 36%),
    rgba(255,255,255,.03);
}

.card.closingSoonGlow .badge{
  border-color:rgba(94,234,212,.35);
  background:rgba(94,234,212,.12);
}

.no-ads ins.adsbygoogle,
[data-ad="no-container"] ins.adsbygoogle{
  display:none !important;
}

@media (min-width: 720px){
  .compactListTwo{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

.card.closingSoonGlow{
  border-color: rgba(94,234,212,.45);
  box-shadow:
    0 0 0 1px rgba(94,234,212,.18),
    0 0 24px rgba(94,234,212,.12),
    0 8px 20px rgba(0,0,0,.10);
  background:
    radial-gradient(circle at top right, rgba(94,234,212,.10), transparent 35%),
    rgba(255,255,255,.03);
}

.card.closingSoonGlow .badge{
  border-color: rgba(94,234,212,.35);
  background: rgba(94,234,212,.12);
}