:root {
  scroll-behavior: auto;
  --bg-accent: #ef7743;
}

body {
  background: #f8f9fb;
  color: #111827;
}

a {
  text-decoration: none;
}

.bg-accent {
  background-color: var(--bg-accent);
}

header .top-bar {
  background: var(--bg-accent);
}
header .main-nav-bar .logo {
  max-height: 48px;
}

.hero {
  border-radius: 20px;
  overflow: hidden;
  padding: 28px;
}
.hero .badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}
.hero .note {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 8px 12px;
}

.raffle .numbers-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
}
.raffle .number-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #fff;
}
.raffle .number-cell.is-reserved {
  background: #facc15;
  border-color: #facc15;
}
.raffle .number-cell.is-sold {
  background: #e78888;
  color: #fff;
  cursor: not-allowed;
  font-size: 0;
}
.raffle .number-cell.is-sold::after {
  content: "vendido";
  font-size: 18px;
}
.raffle .number-cell.is-selected {
  border-color: #0f172a;
  box-shadow: inset 0 0 0 2px #0f172a;
}
.raffle .number-cell:disabled {
  cursor: not-allowed;
}

.raffle-card {
  border: 1px solid #e5e7e;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}
.raffle-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
