/* ===========================
   🌌 EVE Cosmic Stylesheet 🌌
   =========================== */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body Styling */
body {
  background: radial-gradient(circle at top, #0d0d0d, #000);
  color: #fff;
  text-align: center;
  line-height: 1.6;
  padding: 20px;
}

/* Container */
.container {
  max-width: 800px;
  margin: auto;
  background: rgba(25, 25, 25, 0.85);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 255, 150, 0.4);
  animation: fadeIn 1s ease-in-out;
}

/* Headings */
h1, h3 {
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffcc;
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  font-size: 16px;
  color: #e5e5e5;
  margin-bottom: 10px;
}

/* Glow Badge Containers */
.badge-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.badge {
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #00ffcc;
  padding: 15px;
  border-radius: 12px;
  min-width: 220px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  cursor: pointer;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.7);
}

/* Select Dropdowns */
label {
  display: block;
  text-align: left;
  margin: 15px 0 5px;
  font-size: 15px;
  color: #aaffff;
}

select, input[type="text"] {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #00ffcc;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  margin-bottom: 15px;
  font-size: 15px;
  outline: none;
}

select:focus, input[type="text"]:focus {
  box-shadow: 0 0 12px #00ffcc;
}

/* Submit Button */
.submit-btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #00ffcc, #0099ff);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.6);
  transition: 0.3s;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0099ff, #00ffcc);
  box-shadow: 0 0 25px rgba(0, 255, 200, 0.9);
  transform: scale(1.05);
}

/* Thank You Popup */
#thankYouMessage {
  display: none;
  margin-top: 15px;
  font-size: 18px;
  color: #00ffcc;
  font-weight: bold;
  text-shadow: 0 0 10px #00ffcc;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

<style>
    .join-dao-btn {
        background: linear-gradient(135deg, #00ff99, #00ccff) !important;
        color: #000 !important;
        font-size: 22px !important;
        font-weight: bold !important;
        padding: 16px 40px !important;
        border-radius: 14px !important;
        border: none !important;
        box-shadow: 0 0 15px #00ff99, 0 0 30px #00ccff !important;
        cursor: pointer !important;
        display: block !important;
        margin: 30px auto !important;
        text-align: center !important;
        transition: all 0.3s ease-in-out !important;
    }

    .join-dao-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 30px #00ccff, 0 0 60px #00ffcc !important;
    }

button#joinDao {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 20px auto;
  padding: 14px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #00ff99, #0077ff);
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 255, 150, 0.8);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
button#joinDao:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 180, 1);
}

</style>

