*{ box-sizing:border-box; }
:root{
  --bg:#05080f;
  --card:#0b1220;
  --line:rgba(204,255,0,.18);
  --text:#eaf2ff;
  --muted:rgba(234,242,255,.68);
  --neon:#ccff00;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --r:18px;
}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 380px at 50% -10%, rgba(204,255,0,.14), transparent 60%),
    radial-gradient(700px 320px at 15% 15%, rgba(0,180,255,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}

.wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.card{
  width:100%;
  max-width:520px;
  background: linear-gradient(180deg, rgba(204,255,0,.06), transparent 60%), var(--card);
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:16px;
  box-shadow: var(--shadow);
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
}

.brandLogo{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:16px;
  padding:8px;
  background: rgba(255,255,255,.03);
  border:1px solid rgba(234,242,255,.10);
}

.brandName{
  font-weight:1000;
  font-size:18px;
  letter-spacing:.2px;
}

.topActions{
  display:grid;
  gap:10px;
  margin:10px 0 14px;
}

.actionBtn,
.socialBtn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 12px;
  border-radius:14px;
  text-decoration:none;
  color:var(--text);
  background: rgba(255,255,255,.03);
  border:1px solid rgba(234,242,255,.10);
  transition: transform .08s ease, filter .12s ease, border-color .12s ease;
  position:relative;
  overflow:hidden;
}

.actionBtn:active,
.socialBtn:active{ transform: translateY(1px); }

.actionBtn:hover,
.socialBtn:hover{ filter: brightness(1.06); border-color: rgba(204,255,0,.30); }

.actionBtn .ico,
.socialBtn .ico{
  width:36px;
  height:36px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: rgba(204,255,0,.10);
  border:1px solid rgba(204,255,0,.20);
  color: var(--neon);
  flex: 0 0 auto;
}

.actionBtn .txt,
.socialBtn .txt{
  font-weight:950;
  font-size:14px;
  flex: 1;
}

.actionBtn .arr,
.socialBtn .arr{
  opacity:.7;
  font-weight:900;
  flex: 0 0 auto;
}

.actionBtn.special{
  background: linear-gradient(90deg, rgba(204,255,0,.16), rgba(255,255,255,.03));
  border-color: rgba(204,255,0,.35);
}

.actionBtn.special::after{
  content:"";
  position:absolute;
  top:-50%;
  left:-60%;
  width:50%;
  height:200%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.50), transparent);
  animation: shine 2.2s ease-in-out infinite;
}

@keyframes shine{
  0%{ left:-60%; opacity:0; }
  25%{ opacity:.65; }
  100%{ left:140%; opacity:0; }
}

.sectionTitle{
  font-weight:1000;
  margin: 6px 0 10px;
}

.form{
  display:grid;
  gap:10px;
}

label{
  font-size:13px;
  color:var(--muted);
}

input{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(234,242,255,.12);
  background: rgba(0,0,0,.20);
  color:var(--text);
  outline:none;
}

input:focus{
  border-color: rgba(204,255,0,.60);
  box-shadow: 0 0 0 4px rgba(204,255,0,.18);
}

.btn{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:none;
  font-weight:1000;
  cursor:pointer;
  background: var(--neon);
  color:#071018;
}

.miniInfo{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
  line-height:1.45;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(234,242,255,.10);
  background: rgba(255,255,255,.02);
}

.result{
  margin-top:12px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(234,242,255,.12);
  background: rgba(0,0,0,.18);
}

.result.ok{ border-color: rgba(35,211,107,.35); }
.result.warn{ border-color: rgba(204,255,0,.35); }

.rTitle{ font-weight:1000; margin-bottom:6px; }
.rSub{ font-size:13px; color:var(--muted); margin-bottom:10px; }

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}

@media (max-width:480px){
  .grid{ grid-template-columns:1fr; }
}

.box{
  padding:10px;
  border-radius:14px;
  border:1px solid rgba(234,242,255,.10);
  background: rgba(255,255,255,.02);
}

.k{ font-size:12px; color:var(--muted); }
.v{ margin-top:6px; font-weight:1000; font-size:18px; }
.green{ color:#23d36b; }
.neon{ color: var(--neon); text-shadow: 0 1px 0 rgba(0,0,0,.35); }

.btnSecondary{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:1000;
  background: linear-gradient(90deg, rgba(204,255,0,.18), rgba(255,255,255,.03));
  border:1px solid rgba(204,255,0,.40);
  color: var(--text);
  margin-top:10px;
  position:relative;
  overflow:hidden;
}

.btnSecondary::after{
  content:"";
  position:absolute;
  top:-50%;
  left:-60%;
  width:50%;
  height:200%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shine 2.4s ease-in-out infinite;
}

.btnOutline{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:1000;
  background: transparent;
  border:1px solid rgba(234,242,255,.18);
  color: var(--text);
  margin-top:10px;
}

.divid

/* --------- WINNERS ACCORDION (Modern) --------- */

.accordion{
  border-radius: 16px;
  border: 1px solid rgba(234,242,255,.12);
  background: rgba(0,0,0,.18);
  overflow: hidden;
}

.accSummary{
  list-style: none;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 12px;
  user-select:none;
  background: linear-gradient(90deg, rgba(204,255,0,.14), rgba(255,255,255,.02));
  border-bottom: 1px solid rgba(234,242,255,.10);
}

.accordion summary::-webkit-details-marker{ display:none; }

.accSummary .left{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}

.accSummary .badge{
  width:36px;
  height:36px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(204,255,0,.10);
  border:1px solid rgba(204,255,0,.22);
  color: var(--neon);
  flex: 0 0 auto;
}

.accSummary .title{
  font-weight: 1000;
  font-size: 13.5px;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.accSummary .chev{
  opacity: .85;
  transition: transform .16s ease;
  flex: 0 0 auto;
}

.accordion[open] .accSummary .chev{
  transform: rotate(180deg);
}

.accBody{
  padding: 12px;
}

.winnersMeta{
  display:flex;
  flex-wrap: wrap;
  align-items:center;
  gap:8px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.winnersMeta .dot{
  opacity: .55;
}

.winnersList{
  display:grid;
  gap:8px;
}

.wRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(234,242,255,.10);
  background: rgba(255,255,255,.02);
}

.wUser{
  font-weight: 950;
  letter-spacing: .25px;
  color: var(--text);
  opacity: .96;
}

.wPrize{
  font-weight: 1000;
  color: var(--neon);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
}

.wNote{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px dashed rgba(204,255,0,.28);
  background: rgba(204,255,0,.06);
}

