
:root{
  --bg: #0b0e14;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --stroke: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --accent: #b08d57;
  --danger: #e25555;
  --r: 16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 10% 0%, rgba(176,141,87,.18), transparent 60%),
              radial-gradient(900px 700px at 90% 10%, rgba(255,255,255,.08), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{color:inherit}
.header{
  position: sticky;
  top: 0;
  z-index: 10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px clamp(14px,3vw,22px);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11,14,20,.68);
}

.brand{
  font-weight: 800;
  letter-spacing: -0.02em;
  display:flex;
  align-items:center;
  gap:10px;
}
.brand::before{
  content:"";
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(176,141,87,.18);
}

.container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px clamp(14px,3vw,22px) 44px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card{
  grid-column: span 6;
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
  padding: 16px;
  overflow:hidden;
  animation: umeedCardIn .45s ease both;
}

@keyframes umeedCardIn{
  from{opacity:0; transform:translateY(10px) scale(.99); filter:blur(2px);}
  to{opacity:1; transform:translateY(0) scale(1); filter:blur(0);} 
}
@media (prefers-reduced-motion: reduce){
  .card{animation:none;}
}

.card h3{
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card .muted{color:var(--muted);font-size:13px}

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  margin: 10px 0;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  outline:none;
}

/* Dropdown menus (options list) need explicit colors in dark UI, especially on large screens */
select option{
  background:#ffffff;
  color:#0b0e14;
}
textarea{resize:vertical; min-height: 110px}

.btn, button{
  cursor:pointer;
  border: 1px solid transparent;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  border-radius: 12px;
  padding: 11px 14px;
}
.btn:hover, button:hover{filter:brightness(1.05)}
.btn:active, button:active{transform: translateY(1px)}

.btn-ghost{
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
}
.btn-danger{
  background: transparent;
  border-color: rgba(226,85,85,.45);
  color: #ffd7d7;
}
.btn-sm{
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 800;
}

.list{display:flex; flex-direction:column; gap:10px; margin-top: 10px}
.row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
}
.row-main{min-width:0}
.row-title{font-weight:900; margin-bottom:4px}
.row-sub{color:var(--muted); font-size: 13px; line-height:1.35}
.row-meta{color:var(--muted); font-size: 12px; margin-top:6px}
.row a{color: rgba(255,255,255,.92); text-decoration: underline; text-underline-offset: 3px}

@media (max-width: 980px){
  .card{grid-column: span 12;}
}
