:root{
  --bg:#181818;
  --panel:#242424;
  --text:#ffffff;
  --muted:#cccccc;
  --accent:#ff2f76; /* roz butoane */
  --radius:16px;
}

*{box-sizing:border-box}
body{margin:0;background: url('../assets/background.png') no-repeat center center fixed;
  background-size: cover;;color:var(--text);font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif}
.wrap{max-width:1100px;margin:0 auto;padding:28px 16px 80px}

/* back */
.back{display:inline-flex;align-items:center;gap:10px;padding:10px 14px;border-radius:999px;
  background:var(--panel);border:1px solid rgba(255,255,255,.08);color:var(--text);text-decoration:none}

.header{margin-top:16px;text-align:center}
.crown{width:84px;height:84px;margin:0 auto 8px;display:block}
.title{font-size:32px;font-weight:900;margin:0 0 6px}
.subtitle{color:var(--muted);opacity:.95;margin:0 0 20px}
.g{fill:url(#gold-grad)} /* gradient definit în HTML */

/* grid */
.grid{display:grid;gap:18px;grid-template-columns:repeat(4,1fr);margin-top:10px}
@media (max-width:1000px){.grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:560px){.grid{grid-template-columns:1fr}}

.card{background:var(--panel);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius);
  padding:18px;text-align:center;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.card h3{margin:0 0 8px}
.pill{display:inline-flex;align-items:center;gap:8px;background:#181818;border:1px solid rgba(255,255,255,.10);
  border-radius:999px;padding:8px 12px;font-weight:700;color:var(--muted)}
.coin{width:18px;height:18px}
.coin svg{width:18px;height:18px}
.price{font-size:32px;font-weight:900;margin:12px 0 10px}
.ribbon{display:inline-block;margin-bottom:8px;font-size:12px;font-weight:900;color:#2b1900;
  background:linear-gradient(90deg,#ffd54f,#ffac2f);padding:5px 10px;border-radius:999px}

/* buttons */
.btn{display:block;width:100%;padding:12px;border-radius:999px;background:var(--accent);color:#fff;font-weight:900;
  text-decoration:none;border:0;cursor:pointer;box-shadow:0 6px 16px rgba(255,47,118,.35);transition:filter .15s}
.btn:hover{filter:brightness(1.08)}
.btn {
  display:block;
  width:100%;
  padding:12px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  border:0;
  cursor:pointer;
  box-shadow:0 6px 16px rgba(255,47,118,.35);
  transition: all .2s ease; /* pentru hover smooth */
}

/* Efect hover */
.btn:hover {
  filter:brightness(1.15);
  transform:translateY(-2px); /* se ridică un pic */
  box-shadow:0 10px 20px rgba(255,47,118,.5);
}

/* Efect click (active) */
.btn:active {
  transform:translateY(0); 
  box-shadow:0 4px 10px rgba(255,47,118,.3);
}

/* custom */
.custom{margin-top:22px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.35)}
.custom h3{margin:0 0 14px;text-align:center}
.row{display:flex;gap:12px;align-items:center;justify-content:center;flex-wrap:wrap}
.numbox{width:120px;padding:12px;border-radius:12px;background:#181818;border:1px solid rgba(255,255,255,.12);
  color:#fff;font-weight:800;text-align:center}
.fullbtn{margin-top:12px}
.note{text-align:center;color:var(--muted);margin-top:10px;font-size:13px;opacity:.92}
.legal{margin-top:16px;text-align:center;color:var(--muted);font-size:12px;opacity:.9}


.legal-links {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #ccc;
}

.legal-links a {
    color: #ff007a;          /* rozul brand */
    text-decoration: none;   /* scoate underline */
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-links a:hover {
    color: #fff;             /* alb la hover */
    border-bottom: 1px solid #ff007a; /* subliniere fină roz */
}
