body {
  font-family: 'Inter', sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
.hero {
  background: linear-gradient(to right, #12121200, #1a1a1a00);
  padding: 10rem rem;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.2rem;
  color: #cccccc;
}
.community-content {
  padding: 2rem;
  max-width: 850px;
  margin: 0 auto;
}
.form-section {
  background-color: #242424;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0099ff;
}
.form-section p {
  color: #cccccc;
  margin-bottom: 1.5rem;
}
.form-section label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-section input,
.form-section textarea {
  width: 95%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #444444;
  border-radius: 4px;
  background-color: #333333;
  color: #ffffff;
}
.form-section textarea {
  resize: vertical;
  min-height: 100px;
}
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #00ff88;
  color: #121212;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: none;
}
#back-to-top:hover {
  background-color: #00cc66;
}
.staff-application {
  text-align: center;
  background-color: #12121200;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0);
}
.staff-application h2 {
  color: #00aeff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.staff-application p {
  color: #cccccc;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.staff-btn {
  display: inline-block;
  background-color: #00aeff;
  color: #121212;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.staff-btn:hover {
  background-color: #09e2ff;
  transform: translateY(-2px);
}
.staff-btn:active {
  transform: translateY(0);
}
.discord-widget {
  background: #1e1e2e;
  border-radius: 12px;
  padding: 25px;
  width: 350px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  margin: 50px auto; 
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #28293d;
}
.discord-logo {
  width: 60px;
  height: 60px;
}
.member-count {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 15px 0;
  color: #ffffff;
}
.joinnow-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.3s;
  width: 80%;
  text-align: center;
}
.joinnow-btn:hover {
  background: #4752c4;
  transform: scale(1.05);
}