.community-reveal-section {
  font-family: 'Courier Prime', monospace;
  overflow: hidden;
  min-height: 40vh; /* Gives the section some presence */
  display: flex;
  align-items: center;
}

.reveal-box {/* The blue border from your screenshot */
  padding: 40px;
  text-align: center;
  position: relative;
}

.reveal-text {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 0;
  letter-spacing: 1px;
  
  /* Initial hidden state */
  opacity: 0;
  filter: blur(15px);
  transform: translateY(20px);
  transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

/* Clear/Visible state triggered by JS */
.reveal-text.visible {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}
.btn-signup {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 30px;
  background-color: #EE2E3C;
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 10px #EE2E3C, 0 0 30px #EE2E3C;
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* Responsive Scaling */

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  padding: 40px;
  color: #000;
  width: 90%;
  max-width: 550px;
  position: relative;
  font-family: 'Courier Prime', monospace;
}

.modal-content .modal-head {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 2px;
  margin-top: 40px;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #000;
  font-size: 30px;
  cursor: pointer;
}

.modal-title {
  color: #000;
  letter-spacing: 3px;
  margin-bottom: 25px;
  text-align: center;
}

#signupForm input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #000;
  border: 1px solid #333;
  color: white;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #EE2E3C;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #fff;
  color: #EE2E3C;
  border: 1px solid #EE2E3C;
}
.events-btn-white {
  margin-top: 30px;
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: #EE2E3C;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 10px #EE2E3C, 0 0 30px #EE2E3C;
  transition: background 0.3s ease;
  border: none;
  margin-left: 30px;
}

.events-btn-white:hover {
  background-color: #EE2E3C;
  color: white;
}

@media (max-width: 768px) {
  .reveal-box {
    padding: 20px;
    margin: 0 10px;
  }
  .reveal-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  .btn-signup {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-left: 0;
  }
}
@media (max-width: 576px) {
  .reveal-box {
    padding: 15px;
    margin: 0 5px;
  }

.reveal-text{
  font-size: 30px !important;
  line-height: 1.2;
  letter-spacing: 0 !important;
}}