@keyframes rollIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0px); }
}

:root{
  --bg:#080808;
  --pink:#ff3385;
  --white:#ffffff;
  --muted:#b9b9b9;
  --line:#4a4a4a;
}

*{ box-sizing:border-box; }
html, body { height: 100%; }
body{
  margin:0;
  background: var(--bg);
  font-family: 'Lucida Sans','Lucida Sans Regular','Lucida Grande','Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: var(--pink);
}

.main{
  display:grid;
  grid-template-columns: 1fr 2fr;
  min-height: 100vh;
  width: 100%;
  padding-bottom: 26px; 
}

.menu{
  margin-top: 18px;
  margin-right: 10px;
  height: 100%;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap: 2px;
}
.menu a{
  padding: 10px;
  color: var(--pink);
  text-decoration: none;
  font-size: 14px;
}
.menu a:hover{
  color: var(--white);
  transform: scale(1.08);
}
.menu a.active{
  color: var(--white);
  transform: scale(1.0);
}

.hero{
  position: relative;
  padding-top: 8px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:flex-start;
  animation: rollIn 0.4s ease-out forwards;
  padding: 0 12px 0 28px;
}

.spacer{
  position:absolute;
  top: 44px;
  left: 12px;
  border-left: 1px solid var(--line);
  height: 360px;
  pointer-events:none;
}
.spacer.s1{ height: 470px; }
.spacer.s2{ height: 335px; }
.spacer.s3{ height: 200px; }
.spacer.sTall{ height: 720px; }

.hero ul{
  list-style:none;
  padding: 0;
  margin: 0;
  color: var(--white);
  max-width: 820px;
  margin-top: 26px;
}
.hero li{
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.35;
}
.hero h1, .hero h2{
  color: var(--white);
  margin: 0 0 6px 0;
}
.hero h1{ margin-top: -3px; font-size: 22px; }
.hero h2{ font-size: 16px; margin-top: 14px; }
.hero a{
  color: var(--pink);
  text-decoration: none;
}
.hero a:hover{ color: whitesmoke; }

.cards{ width: 100%; max-width: 760px; }
.card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 0 0 10px 0;
  cursor: pointer;
  user-select: none;
  background: rgba(255,255,255,.02);
}
.card:hover{ border-color: rgba(255,255,255,.22); }
.card.selected{ border-color: var(--pink); }
.card .title{ font-weight: 700; color: var(--white); }
.card .meta{ color: rgba(255,255,255,.82); margin-top: 4px; }
.card .stock{ color: rgba(255,255,255,.65); margin-top: 6px; font-size: 13px; }

.row{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-top: 12px;
  flex-wrap: wrap;
}
input[type="number"], input[type="text"], input[type="password"]{
  width: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: var(--white);
  outline: none;
}
input:focus{ border-color: var(--pink); }

.btn{
  font: 700 14px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  color: var(--white);
  cursor: pointer;
}
.btn:hover{ border-color: var(--pink); }
.btn:disabled{ opacity: .55; cursor: not-allowed; }

.notice{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

.download-list{
  margin-top: 6px;
}
.download-list a{
  display:block;             
  width: fit-content;
  max-width: 100%;
  margin: 8px 0;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.02);
}
.download-note{
  color: rgba(255,255,255,.65);
  font-size: 12px;
  margin: -2px 0 10px 0;
}

.contact-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 4px 0;
  font-size: 12px;
  z-index: 999999;
}
.contact-bar a{ color:#fff; text-decoration:none; }

@media (max-width: 780px){
  .main{ grid-template-columns: 1fr; }
  .menu{ align-items:flex-start; margin-left: 10px; }
  .hero{ padding: 8px 12px 0 12px; }
  .spacer{ display:none; }
}
