/* Style mobile-first sobre en noir et blanc */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #fff;
}

.page-wrapper {
  padding-top: 3em;
  padding-bottom: 3em;
  padding: 2em 1em;
  display: flex;
  justify-content: center;
}

.outer-box {
  width: 100%;
  max-width: 420px;
  background-color: #111;
  border-radius: 20px;
  padding: 2em 1em;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5em;
  color: #ffffff;
}

.info-box {
  background-color: #1a1a1a;
  border: 1px solid #444;
  border-radius: 15px;
  padding: 1.5em;
  margin-bottom: 1.5em;
}

.info-box h2 {
  margin-top: 0;
  color: #fff;
}

.info-box a {
  color: #7c3aed;
  text-decoration: none;
}

.info-box a:hover {
  text-decoration: underline;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(8px);
  z-index: -1;
}
.skool-button-wrapper {
  text-align: center;
  margin-top: 2em;
}
.skool-button {
  background-color: #fff;
  color: #000;
  padding: 1em 2em;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.skool-button:hover {
  background-color: #eee;
  transform: scale(1.05);
}
