body {
  margin: 0;
  font-family: 'Chakra Petch', sans-serif;
  background: linear-gradient(to bottom right, #0e0e1d, #1c1c2b);
  color: #e0e0f0;
  padding: 30px 10px;
  text-align: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0; /* changed from right: 0 to left: 0 */
  width: 600px;
  height: 600px;
  background-image: url('images/sweepssearch-logo3.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left; /* updated */
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}




h1 {
  font-size: 2.4em;
  color: #00ffbb;
  text-shadow: 0 0 10px #00ffbb, 0 0 30px #008060;
  margin-bottom: 0.3em;
  text-transform: uppercase;
}


header p {
  font-size: 1em;
  color: #a3fcd3;
  margin: 0 auto 1.5em;
  max-width: 600px;
}

#sortToggle,
#filterNewToggle,
.sort-button {
  background: #131f26;
  color: #00ffbb;
  border: 2px solid #00ffbb;
  padding: 10px 22px;
  border-radius: 8px;
  margin-top: 12px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9em;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #00ffbb55;
}

#sortToggle:hover,
#filterNewToggle:hover,
.sort-button:hover {
  background: #00ffbb;
  color: #000;
  box-shadow: 0 0 15px #00ffbb;
  transform: scale(1.03);
}

.vertical-button-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.casino-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 420px;
 background: linear-gradient(to right, #1b1b2e, #232342);

  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #00ffbb88;
  box-shadow: 0 0 6px #00ffbb33;
  position: relative;
  gap: 12px;
  transition: transform 0.2s ease;
}

.casino-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px #00ffbb55;
}

.casino-pill::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 12px;
  height: 6px;
  width: 80%;
  background: linear-gradient(to right, #00ffbb, #008060);
  border-radius: 4px;
  opacity: 0.6;
}

.casino-pill img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
  padding: 6px;
  border: 2px solid #00ffbb;
  box-shadow: 0 0 12px #00ffbb88;
  animation: ring-glow 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes ring-glow {
  0%, 100% { box-shadow: 0 0 10px #00ffbb88; }
  50% { box-shadow: 0 0 20px #00ffbbcc; }
}

.casino-pill a {
  flex-grow: 1;
  text-align: left;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  display: flex;
  flex-direction: column;
}

.casino-pill a span.level-badge {
  font-size: 0.7em;
  color: #00ffbb;
  opacity: 0.8;
  margin-top: 2px;
}

.casino-pill:hover a {
  color: #00ffbb;
}

.stars {
  font-size: 0.9em;
  color: gold;
  flex-shrink: 0;
}

.new-badge {
  background-color: #00ffbb;
  color: #000;
  font-size: 9px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
}
@media (max-width: 1366px) {
  body::before {
    display: none;
  }
}
