
.betting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  font-family: 'Arial', sans-serif;
  align-items: stretch;
}
.betting-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
  text-align: center;
  align-items: center;
  min-height: 260px;
}
.betting-card img {
  max-width: 100px;
  height: auto;
  margin-bottom: 1rem;
}
.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
.site-name {
  font-size: 1.1rem;
  font-weight: bold;
  color: #2e1462;
  margin-bottom: 0.7rem;
}
.info-line {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin: 0.3rem 0;
  color: #333;
}
.info-line span {
  margin-left: 0.5rem;
  min-height: 1.6em;
  display: inline-block;
}
.info-icon {
  background: #ffcc00;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.card-footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.compare-btn {
  background-color: #3f1d91;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
  margin-top: 1rem;
  background-color: #3f1d91;
  color: white;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  min-height: 48px;
}
.compare-btn:hover {
  background-color: #2e1462;
}
.betting-sidebar {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}
.betting-sidebar h3 {
  margin: 0;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 700;
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
}
.betting-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.betting-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}
.betting-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.betting-link {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  flex-grow: 1;
}
.betting-link:hover {
  text-decoration: underline;
}
.betting-stars {
  color: #ffb400;
  font-size: 0.85rem;
}
