@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle, #0b3d1b, #021a0d);
  color: #eaffea;
}

.casino {
  max-width: 600px;
  margin: auto;
  padding: 20px;
}

h1 {
  text-align: center;
  color: #7CFF9B;
  text-shadow: 0 0 10px #00ff66;
}

.top-bar {
  background: #033;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
}

.game {
  background: #044;
  padding: 15px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ff8855;
}

.game h2 {
  margin-top: 0;
}

input, select {
  padding: 8px;
  border-radius: 6px;
  border: none;
  margin-right: 5px;
}

button {
  background: #00ff88;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #00cc6a;
}

button.reset {
  background: #ffcc00;
}

button.reset:hover {
  background: #e6b800;
}

.result, .slots {
  margin-top: 10px;
  font-size: 28px;
  text-align: center;
  animation: pop 0.3s ease;
}

@keyframes pop {
  0% { transform: scale(0.8); }
  100% { transform: scale(1); }
}

.provably-fair {
  background: #022;
  padding: 10px;
  border-radius: 8px;
  font-size: 12px;
  margin-bottom: 20px;
}

code {
  display: block;
  word-break: break-all;
  color: #7CFF9B;
}
/* === CASINO SIDE DECORATIONS === */

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: 60px;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Left side */
body::before {
  left: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(0, 255, 136, 0.15) 0px,
      rgba(0, 255, 136, 0.15) 20px,
      rgba(0, 0, 0, 0) 40px
    ),
    linear-gradient(
      180deg,
      #00ff88,
      #004422
    );
  box-shadow: inset -5px 0 15px rgba(0, 255, 136, 0.5);
}

/* Right side */
body::after {
  right: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(0, 255, 136, 0.15) 0px,
      rgba(0, 255, 136, 0.15) 20px,
      rgba(0, 0, 0, 0) 40px
    ),
    linear-gradient(
      180deg,
      #00ff88,
      #004422
    );
  box-shadow: inset 5px 0 15px rgba(0, 255, 136, 0.5);
}

/* Ensure content stays above decorations */
.casino {
  position: relative;
  z-index: 1;
}

