body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url("cosmo.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

/* Dark overlay so text is readable */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);
  z-index: -1;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  background: rgba(0,0,0,0.45);
}

.logo {
  font-size: 44px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 3px;

  color: #ff4dff;
  text-shadow:
    0 0 10px rgba(255,77,255,0.9),
    0 0 20px rgba(124,77,255,0.8),
    0 0 35px rgba(0,229,255,0.6);
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

nav a:hover {
    color: #b84dff;
}

.hero {
    padding: 100px 20px;
}

.hero h2 {
    font-size: 48px;
    color: #b84dff;
}

.hero button {
    padding: 12px 30px;
    background: #b84dff;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.hero button:hover {
    background: #9933cc;
}

.section {
    padding: 60px 20px;
}

.payments a,
.social a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background: #111;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    border: 1px solid #b84dff;
    transition: 0.3s;
}

.payments a:hover,
.social a:hover {
    background: #b84dff;
}

footer {
    padding: 20px;
    background: black;
    font-size: 14px;
}
/* Games Section Dark Glass Box */
.games-section {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  text-align: center;
}

.games-section h2 {
  font-size: 32px;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 0 0 15px #ff00ff;
}

.games-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.game-box {
  display: block;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: white;

  border-radius: 14px;
  background: linear-gradient(45deg, #b84dff, #ff00ff);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);

  transition: 0.2s ease;
}

.game-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.9);
}
.action-section {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.action-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 500px;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

.action-title {
    color: #ff00ff;
    margin-bottom: 25px;
    font-size: 22px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #ff00ff;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-neon {
    padding: 15px 35px;
    background: linear-gradient(45deg, #ff00cc, #9933ff);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 0 15px #ff00cc;
    transition: 0.3s ease;
}

.btn-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #ff00cc;
}

.btn-neon-outline {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #ff00cc;
    color: #ff00cc;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-neon-outline:hover {
    background: #ff00cc;
    color: white;
    box-shadow: 0 0 20px #ff00cc;
}

.page {
  min-height: 100vh;rgba.page-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 16px 60px;
}

.back-link {
  display: inline-block;
  margin: 8px 0 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.9;
}
.back-link:hover { opacity: 1; }

.card.form-card {
  max-width: 500px;
  margin: 40px auto;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(187,77,255,0.45);
  border-radius: 22px;
  padding: 28px 22px;
  box-shadow:
    0 0 25px rgba(187,77,255,0.35),
    0 0 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
}

.page-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 28px;
  color: #fff;
  text-shadow:
    0 0 8px rgba(187,77,255,0.85),
    0 0 18px rgba(255,64,200,0.45);
}

.deposit-form {
  display: grid;
  gap: 14px;
}

.field span {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.deposit-form input,
.deposit-form select {
  width: 100%;
  padding: 14px 16px;
  font-size: 17px;
  border-radius: 12px;
  border: 1px solid rgba(187,77,255,0.4);
  background: rgba(0,0,0,0.55);
  color: white;
  outline: none;
}

.deposit-form input:focus,
.deposit-form select:focus {
  border: 1px solid #bb4dff;
  box-shadow: 0 0 12px rgba(187,77,255,0.6);
}

.field input,
.field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(15, 15, 20, 0.75);
  color: #fff;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: rgba(187,77,255,0.8);
  box-shadow: 0 0 0 3px rgba(187,77,255,0.18);
}

.help {
  display: block;
  margin-top: 6px;
  opacity: 0.85;
  color: #fff;
  font-size: 12px;
}

.divider {
  text-align: center;
  font-weight: 800;
  letter-spacing: 2px;
  opacity: 0.85;
  margin: 6px 0;
}

.checkbox-row{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;        /* no big box */
  margin: 6px 0 2px;
  width: 100%;
  background: transparent; /* remove dark box */
  border: none;            /* remove border box */
}

.checkbox-row input[type="checkbox"]{
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #bb4dff;
}

.checkbox-row span{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  white-space: normal;
  word-break: normal;
}

.primary-btn {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(90deg, rgba(187,77,255,0.95), rgba(255,64,200,0.9));
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(187,77,255,0.35);
}

.primary-btn:hover {
  filter: brightness(1.05);
  box-shadow: 0 0 26px rgba(255,64,200,0.35);
}

.note {
  margin-top: 14px;
  text-align: center;
  opacity: 0.9;
  color: #fff;
}