body {
  background: linear-gradient(135deg, #181a20 70%, #23242b 100%);
  color: #f5f5f5;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111217;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  border-bottom: 2px solid #23242b;
}
nav .logo img {
  height: 48px;
  filter: drop-shadow(0 0 8px #ff00cc);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  font-size: 1rem;
}
nav ul li a:hover {
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  color: #181a20;
  box-shadow: 0 2px 12px #00ff9944;
}
.hero {
  text-align: center;
  padding: 3rem 1rem 1.5rem 1rem;
  background: linear-gradient(135deg, #181a20 60%, #ff00cc 100%);
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  box-shadow: 0 8px 32px #ff00cc22;
}
.hero-logo {
  width: 90px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 24px #00ff99);
}
.hero h1 {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0.5rem 0;
  font-weight: 800;
  letter-spacing: 2px;
}
.mission {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 500;
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  color: #181a20;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 0 16px #00ff99;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin: 0 0.5rem;
}

/* Add spacing for the second CTA button (Support Server) */
.cta + .cta {
  margin-top: 2.4rem;
}
.cta:hover {
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  color: #fff;
  transform: scale(1.04);
}
section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 1.5rem 1rem;
  background: #23242b;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,255,153,0.10);
  border: 1.5px solid transparent;
  border-image: linear-gradient(90deg, #ff00cc 10%, #00ff99 90%);
  border-image-slice: 1;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
section:hover {
  box-shadow: 0 8px 48px #00ff9944, 0 2px 16px #ff00cc33;
  border: 1.5px solid #00ff99;
}
section h2 {
  color: #ff00cc;
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  margin-bottom: 0.7rem;
}
ul {
  padding-left: 1.5rem;
  font-size: 1rem;
}
li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.invite-link, .support-link {
  color: #00ff99;
  font-weight: bold;
  text-decoration: underline;
}
.invite-link:hover, .support-link:hover {
  color: #ff00cc;
}
.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.videos video {
  max-width: 100%;
  height: auto;
  width: 100%;
}
blockquote {
  background: #181a20;
  border-left: 5px solid #00ff99;
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  font-style: italic;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 16px #00ff9933;
  font-size: 1rem;
}
blockquote span {
  display: block;
  margin-top: 0.5rem;
  color: #00ff99;
  font-size: 0.95rem;
}
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
input, textarea {
  background: #181a20;
  border: 1px solid #00ff99;
  color: #fff;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 1.08rem;
  resize: vertical;
}
button[type="submit"] {
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  color: #181a20;
  border: none;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 16px #00ff99;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
button[type="submit"]:hover {
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  color: #fff;
  transform: scale(1.04);
}
footer {
  text-align: center;
  padding: 1.2rem 1rem 0.7rem 1rem;
  color: #aaa;
  font-size: 0.95rem;
  background: #111217;
  border-top: 1px solid #23242b;
  margin-top: 3rem;
  letter-spacing: 0.5px;
}
@media (max-width: 900px) {
  section {
    padding: 1.2rem;
  }
  nav ul {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.3rem;
  }
  section {
    margin: 1rem;
    padding: 1rem;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .hero-logo {
    width: 80px;
  }
  .tagline {
    font-size: 1.3rem;
  }
  section h2 {
    font-size: 1.1rem;
  }
  .videos video {
    width: 100vw;
    max-width: 100vw;
    height: auto;
  }
  blockquote {
    font-size: 0.95rem;
    padding: 0.7rem 0.5rem;
  }
}
.tagline {
  font-size: 2rem;
  font-weight: bold;
  margin: 1.2rem 0 1.2rem 0;
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px #00ff99cc, 0 0 24px #ff00cc44;
  letter-spacing: 1px;
}
#about {
  background: #23242b;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(0,255,153,0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  border: 1.5px solid transparent;
  border-image: linear-gradient(90deg, #ff00cc 10%, #00ff99 90%);
  border-image-slice: 1;
  transition: box-shadow 0.2s, border 0.2s;
}
#about:hover {
  box-shadow: 0 8px 48px #00ff9944, 0 2px 16px #ff00cc33;
  border: 1.5px solid #ff00cc;
}
#about h2 {
  font-size: 1.6rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  color: #ff00cc;
  margin-bottom: 0.7rem;
  position: relative;
  display: inline-block;
  letter-spacing: 1.5px;
}
#about h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  margin: 0.5rem auto 0 auto;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  border-radius: 2px;
  box-shadow: 0 0 8px #00ff99cc;
}
#about p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
  margin: 1.5rem auto 0 auto;
  max-width: 650px;
  background: linear-gradient(90deg, #fff, #ff00cc 60%, #00ff99);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px #00ff9944, 0 0 16px #ff00cc22;
}
.center {
  text-align: center;
}
.tutorial-link {
  display: block;
  margin: 2rem auto 0 auto;
  text-align: center;
  font-size: 1.05rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #ff00cc, #00ff99);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 0 16px #00ff99, 0 0 8px #ff00cc;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  animation: pulse 1.5s infinite alternate;
}
.tutorial-link:hover {
  background: linear-gradient(90deg, #00ff99, #ff00cc);
  color: #181a20;
  transform: scale(1.05);
}
@keyframes pulse {
  0% { box-shadow: 0 0 16px #00ff99, 0 0 8px #ff00cc; }
  100% { box-shadow: 0 0 32px #00ff99, 0 0 16px #ff00cc; }
}
/* Glowing text for 'Coming Soon' */
.glow-text {
  display: block;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 2px;
  text-shadow:
    0 0 8px #ff00cc,
    0 0 16px #ff00cc,
    0 0 32px #00ff99,
    0 0 48px #00ff99;
  animation: pulse 2s infinite alternate;
  margin: 2rem auto;
}

/* Status Message Styles */
#status-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
}

.status {
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  border-left: 4px solid;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: slideIn 0.3s ease-out;
  word-wrap: break-word;
  max-width: 100%;
}

.status.success {
  background: rgba(0, 255, 153, 0.15);
  border-left-color: #00ff99;
  color: #00ff99;
  box-shadow: 0 4px 12px rgba(0, 255, 153, 0.2);
}

.status.error {
  background: rgba(255, 0, 204, 0.15);
  border-left-color: #ff00cc;
  color: #ff00cc;
  box-shadow: 0 4px 12px rgba(255, 0, 204, 0.2);
}

.status.info {
  background: rgba(135, 206, 235, 0.15);
  border-left-color: #87ceeb;
  color: #87ceeb;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.2);
}

.status.warning {
  background: rgba(255, 165, 0, 0.15);
  border-left-color: #ffa500;
  color: #ffa500;
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Loading States */
.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #00ff99;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.button-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
}

.button-loading::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #00ff99;
  animation: spin 1s linear infinite;
}

/* Enhanced Visual Feedback for Form Validation */
.field-error {
  border-color: #ff00cc !important;
  box-shadow: 0 0 8px rgba(255, 0, 204, 0.3) !important;
}

.field-success {
  border-color: #00ff99 !important;
  box-shadow: 0 0 8px rgba(0, 255, 153, 0.3) !important;
}

/* Role Dropdown Styling */
.role-select-dropdown {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #40444b;
  border-radius: 6px;
  background: #1e1e2e;
  color: #f5f5f5;
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}

.role-select-dropdown:hover {
  border-color: #00ff99;
  box-shadow: 0 0 8px rgba(0, 255, 153, 0.3);
}

.role-select-dropdown:focus {
  border-color: #00ff99;
  box-shadow: 0 0 8px rgba(0, 255, 153, 0.3);
}

.role-select-dropdown option {
  background: #1e1e2e;
  color: #f5f5f5;
  padding: 8px 12px;
}

.role-select-dropdown option:hover {
  background: #2a2a3a;
}

.role-option {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #2a2a3a;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.role-option:hover {
  background-color: #2a2a3a;
}

.role-option:last-child {
  border-bottom: none;
}

.role-color-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.role-name {
  color: #f5f5f5;
  font-weight: 500;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.role-id-display {
  color: #72767d;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Role Entry Styling */
.role-entry {
  background: #2f3349;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #40444b;
  position: relative;
}

.role-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.role-inputs input,
.role-inputs select {
  padding: 8px 12px;
  border: 1px solid #40444b;
  border-radius: 6px;
  background: #1e1e2e;
  color: #f5f5f5;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.role-inputs input:focus,
.role-inputs select:focus {
  outline: none;
  border-color: #00ff99;
  box-shadow: 0 0 8px rgba(0, 255, 153, 0.3);
}

.btn-remove-role {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff416c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-remove-role:hover {
  background: #ff4b2b;
  transform: scale(1.1);
}

/* Reaction Entry Styling */
.reaction-entry {
  background: #2f3349;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #40444b;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}

.reaction-entry input {
  padding: 8px 12px;
  border: 1px solid #40444b;
  border-radius: 6px;
  background: #1e1e2e;
  color: #f5f5f5;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
  flex: 1;
}

.reaction-entry input:focus {
  outline: none;
  border-color: #00ff99;
  box-shadow: 0 0 8px rgba(0, 255, 153, 0.3);
}

.reaction-entry .role-id-container {
  flex: 2;
}

.btn-remove-reaction {
  background: #ff416c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-remove-reaction:hover {
  background: #ff4b2b;
  transform: scale(1.1);
}

/* Nested Settings Styling */
.nested-settings {
  margin-top: 15px;
  padding: 20px;
  background: #2a2a3a;
  border-radius: 12px;
  border: 1px solid #40444b;
}

.setting-group {
  margin-bottom: 25px;
}

.setting-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #f5f5f5;
  margin-bottom: 15px;
  cursor: pointer;
}

.setting-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00ff99;
}

.btn-secondary {
  background: linear-gradient(90deg, #5865f2, #4752c4);
  color: white;
  margin-top: 10px;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #4752c4, #5865f2);
} 