* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background:
      radial-gradient(circle at 50% 0%, #a200ff2f, transparent 60%),
      #05070d;

  color: #e6edf3;
}

.container {
  text-align: center;
  width: 420px;
}

h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.subtitle {
  color: #8b949e;
  margin-bottom: 35px;
  line-height: 1.6;
}

.email-input {
  width: 100%;
  padding: 16px;
  border-radius: 14px;

  background: rgba(20,24,34,0.7);
  border: 1px solid rgba(255,255,255,0.08);

  color: white;
  margin-bottom: 15px;
}

.email-input:focus {
  outline: none;
  border-color: #a200ff99;
  box-shadow: 0 0 10px #a200ff99;
}

.join-btn {
  width: 100%;
  padding: 16px;

  border-radius: 14px;
  border: none;

  background: #a200ff99;
  color: rgb(255, 255, 255);

  font-weight: 600;
  cursor: pointer;

  transition: 0.25s;
  margin-bottom: 25px;
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 10px #a200ff99;
}

.small-text {
  color: #6e7681;
  font-size: 14px;
  margin-bottom: 20px;
}

.socials {
  display: flex;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 18px 38px;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);

  color: #ffffff;
  text-decoration: white;

  transition: 0.25s;
}

.social-btn:hover {
  background: rgba(255,255,255,0.05);
}
.fa-discord {
  color: #5865F2;
}

.social-btn .arrow {
  margin-left: 10px;
  opacity: 0.6;
}

/* MESSAGE */
.message {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);

  padding: 14px 22px;
  border-radius: 999px;

  background: rgba(20,24,34,0.95);
  border: 1px solid rgba(255,255,255,0.1);

  color: white;
  font-size: 14px;

  opacity: 0;
  transition: 0.3s;
  z-index: 9999;
}

.message.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.message.error {
  border-color: rgba(255,0,0,0.5);
  color: #ff6b6b;
}

.message.success {
  border-color: rgba(0,255,120,0.5);
  color: #00ff88;
}

.message.loading {
  color: #c9d1d9;
}
/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 14px 22px;
  border-radius: 999px;

  background: rgba(20, 24, 34, 0.95);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.1);

  font-size: 14px;
  color: white;

  opacity: 0;
  transition: all 0.3s ease;

  z-index: 9999;
}

/* SHOW */
.notification.show {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* ICON */
.notification .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 600;
}

/* ERROR */
.notification.error {
  border-color: rgba(255, 0, 0, 0.5);
  color: #ff6b6b;
}
.notification.error .icon {
  background: #ff4d4d;
  color: black;
}

/* SUCCESS */
.notification.success {
  border-color: rgba(0,255,120,0.5);
  color: #00ff88;
}
.notification.success .icon {
  background: #00ff88;
  color: black;
}

/* LOADING */
.notification.loading {
  color: #c9d1d9;
}

/* SPINNER */
.notification.loading .icon {
  border: 2px solid rgba(255,255,255,0.2);
  border-top: 2px solid white;
  background: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}