
 :root {
  --card: #8b8506;
  --muted: #94a3b8;
  --accent: #7c3aed;
  --glass: rgba(255,255,255,0.03);
}



.wrap {
  width: 100%;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.6);
  border: 1px solid rgba(255,255,255,0.03);
}

 main h1 {
  font-size: 25px;
  margin: 20px 0 12px 0;
  letter-spacing: 0.2px;
  padding:10px 0 20px 0 ;
}

p.lead {
  margin: 0 0 22px 0;
  color: var(--muted);
}

.accordion {
  display: block;
  width: 100%;
}

.accordion input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  width: 0;
}

.item1 {
  background: #64582f;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.03);
  transition: transform .18s ease, box-shadow .18s ease;
}

.item1:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(2,6,23,0.6);
}

.item1 label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 16px 18px;
  user-select: none;
  gap: 12px;
  font-weight: 600;
  color: #eaf2ff;
}

.chev {
  transition: transform .22s cubic-bezier(.2,.8,.2,1);
  transform-origin: center;
  opacity: 0.95;
}

.panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: var(--muted);
  line-height: 1.6;
  transition: max-height .32s ease, padding .28s ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.005), rgba(255,255,255,0.01));
}

input[type="radio"]:checked + .item1 > label + .panel {
  padding: 12px 18px 18px 18px;
  max-height: 520px;
}

input[type="radio"]:checked + .item1 label .chev {
  transform: rotate(180deg) translateY(1px);
}

@media (max-width:520px) {
  body { padding: 20px; }
  .wrap { padding: 18px; }
  .item1 label { padding: 14px; }
}

input[type="radio"]:focus + .item1 label {
  outline: 3px solid rgba(124,58,237,0.14);
  outline-offset: 4px;
}