/* Dark Premium theme - Iron-Faucet */
:root{
  --bg:#0a0a0d;
  --card:#0f1220;
  --muted:#99a0b3;
  --accent:#7b3cff; /* purple neon */
  --accent-2:#ff2d95; /* pink accent */
  --gold:#ffcf33;
  --glass: rgba(255,255,255,0.03);
  --radius:12px;
  --shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.claim-top-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.claim-card-mini {
    width: 280px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.20);
    border-radius: 18px;
    padding: 22px;
    text-align: left;
    transition: .25s;
}

.claim-card-mini:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 28px rgba(0, 255, 255, 0.35);
}

.claim-label {
    opacity: 0.7;
    font-size: 14px;
}

.claim-value {
    font-size: 22px;
    font-weight: bold;
    margin-top: 8px;
    color: #00ffe7;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(123,60,255,0.06), transparent 6%),
              radial-gradient(1000px 500px at 90% 90%, rgba(255,45,149,0.04), transparent 8%),
              var(--bg);
  color:#e6edf3;
  -webkit-font-smoothing:antialiased;
}

/* container */
.container {
  max-width:1100px;
  margin:28px auto;
  padding:0 18px;
}

/* navbar */
.navbar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 0;
}
.brand {
  font-weight:800;
  color:var(--gold);
  letter-spacing:1px;
  font-size:20px;
}
.nav-actions a.btn {
  margin-left:8px;
}

/* card */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.04);
  padding:18px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* buttons */
.btn {
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  border:none;
}
.btn-ghost { background:transparent; color:var(--muted); border:1px solid rgba(255,255,255,0.03); }
.btn-primary { background:linear-gradient(90deg,var(--accent),var(--accent-2)); color:#fff; box-shadow:0 6px 20px rgba(123,60,255,0.12); }
.btn-danger { background:#ff3d3d; color:#111; }

/* form controls */
.form-control {
  width:100%;
  padding:10px 12px;
  background:var(--glass);
  border:1px solid rgba(255,255,255,0.03);
  color:inherit;
  border-radius:8px;
}

/* grid coins */
.coin-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap:14px;
}

/* small text */
.text-muted { color:var(--muted); font-size:14px; }

/* admin table */
.table {
  width:100%;
  border-collapse:collapse;
}
.table th, .table td { padding:10px; border-bottom:1px solid rgba(255,255,255,0.03); text-align:left; font-size:14px; }
.table thead th { color:var(--muted); font-weight:700; }

/* responsive */
@media (max-width:720px){
  .navbar { flex-direction:column; align-items:flex-start; gap:10px; }
  .container { padding:18px; }
}
