.sjclub {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Outer transparent box (desktop only) */
.content-wrapper {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  max-width: 900px;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
}

/* Inner scrollable display area */
.content-inner {
  height: 90%;
  width: 90%;
  margin: auto;
  box-sizing: border-box;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.content-inner::-webkit-scrollbar { display: none; }

/* Headings / text */
.content-inner h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
}
.tagline {
  text-align: center;
  color: #eaeaea;
  margin-bottom: 10px;
}

/* Perks list */
.perks {
  list-style: none;
  padding: 0;
  margin: 8px 0 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
  color: #eaeaea;
  font-size: 15px;
}
.perks li { line-height: 1.5; }

/* Form */
.sjclub-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.sjclub-form input[type="text"],
.sjclub-form input[type="email"] {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #555;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.consent {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.4;
}
.btn-primary {
  padding: 12px;
  font-size: 1rem;
  background: #ff3628;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .3s ease, opacity .3s ease;
}
.btn-primary:hover { background: #df2619; }

.privacy-note {
  font-size: 0.85rem;
  color: #bcbcbc;
  text-align: center;
}

.alt-channels {
  text-align: center;
  color: #eaeaea;
}
.alt-channels a { color: #ff3628; text-decoration: none; }

/* 🔽 MOBILE LAYOUT ADJUSTMENTS */
@media (max-width: 768px) {
  .sjclub {
    display: block;       /* ✅ allow normal flow */
    height: auto;         /* ✅ let it grow */
  }

  /* ✅ show the global dark overlay */
  .bg-overlay {
    display: block;
  }

  .content-wrapper {
    height: auto !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .content-inner {
    width: 100% !important;
    height: auto !important;
    overflow-y: visible !important;
    /* padding: 20px !important; */
  }

  .perks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .content-inner {
    /* padding: 15px !important; */
  }
}
