/* NICESO Theme - shared for Home, Quiz, Result (no feature removed) */
:root{
  --niceso-card-radius: 18px;
}

body.niceso-page{
  margin:0;
  min-height:100vh;
  overflow-x:hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#0f1412;
}

/* Background image + overlay */
.niceso-bg{
  position:fixed;
  inset:0;
  z-index:0;
  background: url('/assets/img/bg-career.jpg') center/cover no-repeat;
}

.niceso-overlay{
  position:fixed;
  inset:0;
  z-index:1;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.70));
  backdrop-filter: blur(4px);
}

.niceso-brand{
  position:relative;
  z-index:2;
  text-align:center;
  padding: 22px 12px 10px;
}

.niceso-brand img{
  height:72px;
  max-width:92vw;
  display:inline-block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.40));
}

/* Page content wrapper */
.niceso-wrap{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  padding: 12px 14px 34px;
}

.niceso-card{
  width:100%;
  max-width: 980px;
  background:#fff;
  border-radius: var(--niceso-card-radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  padding: 28px 28px;
}

@media (max-width: 768px){
  .niceso-brand img{ height:56px; }
  .niceso-card{ padding: 20px 16px; border-radius: 16px; }
}
