:root{
  --bg:#f6fbf8;
  --card:#ffffff;
  --muted:#5a6a63;
  --text:#0e1a14;
  --accent:#17b890;      /* hijau toska */
  --accent2:#0ea371;     /* hijau */
  --danger:#e11d48;
  --warning:#f59e0b;
  --ok:#16a34a;
  --line:rgba(16,24,40,.10);
  --shadow:0 14px 36px rgba(16,24,40,.12);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(900px 520px at 80% 0%, rgba(23,184,144,.20), transparent 55%),
    radial-gradient(900px 520px at 10% 0%, rgba(14,163,113,.14), transparent 60%),
    var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.container{max-width:1050px;margin:0 auto;padding:18px}
.brand{display:flex;align-items:center;gap:10px}
.logo{
  width:38px;height:38px;border-radius:14px;
  background: linear-gradient(135deg, rgba(23,184,144,1), rgba(14,163,113,1));
  box-shadow: var(--shadow);
}
h1,h2,h3{margin:0 0 10px 0}
p{margin:0 0 10px 0; color: rgba(14,26,20,.78)}
.card{
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.card.pad{padding:16px}
.row{display:flex;gap:12px;flex-wrap:wrap}
.col{flex:1;min-width:260px}
.nav{
  position:sticky;top:0;z-index:10;
  padding:14px 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(246,251,248,.85), rgba(246,251,248,.35));
  border-bottom:1px solid rgba(16,24,40,.06);
}
.nav .container{display:flex;align-items:center;justify-content:space-between;gap:10px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px; border-radius:999px;
  border:1px solid rgba(16,24,40,.10);
  background: rgba(16,24,40,.03);
  color: rgba(14,26,20,.88);
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:11px 14px;border-radius:14px;
  border:1px solid rgba(16,24,40,.10);
  background: rgba(16,24,40,.03);
  color: rgba(14,26,20,.92);
  cursor:pointer;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background: rgba(16,24,40,.05); transform: translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(23,184,144,.98), rgba(14,163,113,.92));
  border-color: rgba(23,184,144,.35);
  color: #ffffff;
}
.btn.danger{background: rgba(225,29,72,.10); border-color: rgba(225,29,72,.22); color:#a10f33}
.btn.ok{background: rgba(22,163,74,.10); border-color: rgba(22,163,74,.22); color:#0f6b2d}
.btn.warn{background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.25); color:#8a4f05}
.btn.small{padding:8px 10px; border-radius:12px; font-size: 13px}
.input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(16,24,40,.12);
  background: rgba(255,255,255,.85);
  color: rgba(14,26,20,.95);
  outline:none;
}
textarea{min-height:110px; resize:vertical}
label{display:block; font-size:13px; color: rgba(14,26,20,.72); margin:10px 0 6px}
hr{border:none;border-top:1px solid rgba(16,24,40,.08); margin:14px 0}
.badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 10px;border-radius:999px;font-size:12px;
  border:1px solid rgba(16,24,40,.10);
  background: rgba(16,24,40,.03);
  color: rgba(14,26,20,.85);
}
.badge.ok{border-color:rgba(22,163,74,.22); background: rgba(22,163,74,.10)}
.badge.warn{border-color:rgba(245,158,11,.25); background: rgba(245,158,11,.10)}
.badge.danger{border-color:rgba(225,29,72,.22); background: rgba(225,29,72,.08)}
.badge.muted{color:rgba(14,26,20,.68)}
.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
@media (min-width: 720px){
  .grid{grid-template-columns: repeat(4, 1fr);}
}
.room{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(16,24,40,.10);
  background: rgba(255,255,255,.75);
  cursor:pointer;
}
.room:hover{border-color: rgba(23,184,144,.40)}
.room .title{font-weight:700; margin-bottom:6px}
.room .meta{font-size:12px;color:rgba(14,26,20,.72);line-height:1.35}
.table{width:100%; border-collapse: collapse; overflow:hidden; border-radius:16px}
.table th,.table td{padding:10px 10px; border-bottom:1px solid rgba(16,24,40,.08); font-size: 13px; text-align:left}
.table th{font-size:12px;color:rgba(14,26,20,.68); text-transform:uppercase; letter-spacing:.04em}
.notice{
  padding:12px 14px;border-radius:16px;border:1px solid rgba(16,24,40,.10);
  background: rgba(255,255,255,.75);
  color: rgba(14,26,20,.92);
}
.notice.ok{border-color:rgba(22,163,74,.22); background: rgba(22,163,74,.08)}
.notice.danger{border-color:rgba(225,29,72,.22); background: rgba(225,29,72,.06)}
.notice.warn{border-color:rgba(245,158,11,.25); background: rgba(245,158,11,.08)}
.footer{padding:18px 0; color: rgba(14,26,20,.58); font-size: 12px}
.modal{
  position:fixed; inset:0; display:none; align-items:center; justify-content:center;
  background: rgba(2,6,23,.35); padding:14px; z-index:50;
}
.modal .box{max-width:720px; width:100%; border-radius:18px}
.modal .head{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:14px 14px 0}
.modal .body{padding:14px}
.kv{display:flex; justify-content:space-between; gap:10px; padding:10px 0; border-bottom:1px dashed rgba(16,24,40,.14)}
.kv div:first-child{color:rgba(14,26,20,.68); font-size: 12px}
.kv div:last-child{font-weight:600}
.demoOverlay{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:60;
  display:none;
}
.demoOverlay .bar{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(16,24,40,.12);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
}

/* === AUTH (Login) layout: mirip contoh gambar === */
.authWrap{max-width:420px;margin:22px auto}
.authCard{
  position:relative;
  overflow:hidden;
  border-radius:26px;
}
.authHero{
  position:relative;
  padding:18px 18px 6px 18px;
}
.authTitle{
  font-weight:900;
  font-size:34px;
  line-height:1.03;
  letter-spacing:-.4px;
}
.authBlob{
  position:absolute;
  right:-80px; top:-70px;
  width:280px; height:280px;
  background: radial-gradient(circle at 30% 30%, rgba(23,184,144,1), rgba(14,163,113,1));
  border-radius: 46% 54% 49% 51% / 48% 53% 47% 52%;
  opacity:.95;
}
.authImg{
  position:absolute;
  right:18px; top:18px;
  width:150px; height:150px;
  border-radius:22px;
  object-fit:cover;
  box-shadow: 0 14px 30px rgba(16,24,40,.18);
}
.authForm{padding:10px 18px 18px 18px}
.underLabel{font-size:12px;color:rgba(14,26,20,.55);margin:10px 0 6px}
.underInput{
  width:100%;
  border:none;
  border-bottom:2px solid rgba(23,184,144,.35);
  padding:10px 2px;
  outline:none;
  background:transparent;
  font-size:15px;
  color:rgba(14,26,20,.95);
}
.underInput:focus{border-bottom-color: rgba(23,184,144,.95)}
.authPrimaryBtn{
  width:100%;
  border-radius:999px;
  padding:12px 14px;
  border:none;
  cursor:pointer;
  background: linear-gradient(135deg, rgba(23,184,144,1), rgba(14,163,113,1));
  color:#fff;
  font-weight:800;
  box-shadow: 0 14px 30px rgba(23,184,144,.22);
}
.authLink{
  display:block;
  text-align:center;
  margin-top:10px;
  color: rgba(14,163,113,.95);
  font-weight:700;
}
.authMethods{
  display:flex; align-items:center; gap:10px; margin-top:12px;
  color: rgba(14,26,20,.55);
  font-size:12px;
}
.authMethods .line{height:1px; background: rgba(16,24,40,.12); flex:1}
.socialRow{display:flex;gap:10px;justify-content:center;margin-top:10px}
.socialBtn{
  width:44px;height:44px;border-radius:14px;border:1px solid rgba(16,24,40,.10);
  background: rgba(16,24,40,.03); display:flex;align-items:center;justify-content:center;
}


/* === Tickets responsive === */
.tableWrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
.ticketsTable{display:none}
.ticketsCards{display:block}
@media (min-width: 720px){
  .ticketsTable{display:block}
  .ticketsCards{display:none}
}
.ticketCard{
  border:1px solid rgba(16,24,40,.10);
  background: rgba(255,255,255,.75);
  border-radius:18px;
  padding:12px;
}
.ticketTop{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
}
.ticketTitle{font-weight:900}
.ticketMeta{font-size:12px; color: rgba(14,26,20,.65); margin-top:2px; line-height:1.35}
.ticketMsg{margin-top:10px; font-size:13px; color: rgba(14,26,20,.82); white-space:pre-line}
.ticketActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
