
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0c0931;
  color: white;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #18004d;
  padding: 10px 20px;
}
.logo {
  height: 50px;
}
.login-box input {
  padding: 5px;
  margin: 0 5px;
}
.btn {
  padding: 6px 10px;
  margin: 0 5px;
  background: #3700b3;
  color: white;
  border: none;
  cursor: pointer;
}
.main-menu {
  display: flex;
  flex-wrap: wrap;
  background: #1e1e2f;
  padding: 10px;
  justify-content: center;
}
.main-menu button {
  background: #282c34;
  color: white;
  border: 1px solid #444;
  margin: 5px;
  padding: 10px 15px;
  cursor: pointer;
}
.info-marquee {
  background: #3700b3;
  padding: 10px;
}
.main-banner img {
  width: 100%;
  display: block;
}
.feature-steps {
  display: flex;
  justify-content: space-around;
  background: #111;
  padding: 20px 10px;
}
.step {
  text-align: center;
  flex: 1;
}
.jackpot {
  text-align: center;
  background: #222;
  padding: 20px 10px;
}
.jackpot-value {
  font-size: 2em;
  color: gold;
}
footer {
  text-align: center;
  background: #0a0a0a;
  padding: 10px;
  font-size: 0.9em;
}


@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.led {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #00ff00;
  animation: blink 1s infinite;
}


.main-menu button {
  position: relative;
  background: #282c34;
  color: white;
  border: none;
  margin: 5px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 0;
  overflow: hidden;
}

.main-menu button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(
    #00ff00,
    #00ccff,
    #ff00ff,
    #ffcc00,
    #00ff00
  );
  z-index: -1;
  border-radius: 8px;
  animation: spin 2s linear infinite;
}

.main-menu button::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #282c34;
  border-radius: 4px;
  z-index: -1;
}

@keyframes spin {
  0% {
    transform: rotate(0turn);
  }
  100% {
    transform: rotate(1turn);
  }
}


.feature-steps button {
  position: relative;
  background: #282c34;
  color: white;
  border: none;
  margin: 10px;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 8px;
  z-index: 0;
  overflow: hidden;
}

.feature-steps button::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(
    #00ff00,
    #00ccff,
    #ff00ff,
    #ffcc00,
    #00ff00
  );
  z-index: -1;
  border-radius: 10px;
  animation: spin 2s linear infinite;
}

.feature-steps button::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #282c34;
  border-radius: 6px;
  z-index: -1;
}

.feature-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #111;
  padding: 30px 10px;
}
