
body{font-family:sans-serif;background:#f5f5f5;margin:0}
.container{max-width:960px;margin:auto;padding:1rem}
.site-header,.site-footer{background:#222;color:#fff;padding:1rem}
.main-nav a{color:#ccc;margin-left:1rem;text-decoration:none}
.raffle-grid{display:grid;gap:1rem;grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}
.raffle-card{background:#fff;padding:1rem;border-radius:8px;text-decoration:none;color:#000}


.raffle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.raffle-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.3s ease;
}
.raffle-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.raffle-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}
.raffle-card i {
  color: #555;
}
.raffle-card progress {
  width: 100%;
  margin-top: .5rem;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.6em;
  font-size: 0.75em;
  border-radius: .25rem;
  margin-top: .5rem;
}
.status-open      { background: #e0f7fa; color: #00796b; }
.status-sold_out  { background: #fce4ec; color: #c2185b; }
.status-drawn     { background: #e8f5e9; color: #2e7d32; }
.status-cancelled { background: #ffebee; color: #c62828; }
