* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f0f 100%);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.login-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(120, 119, 198, 0.5), rgba(255, 119, 198, 0.5), rgba(120, 219, 255, 0.5));
  z-index: -1;
  border-radius: 22px;
  opacity: 0.7;
}

.login-card h1 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #b4b4b4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.login-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 300px;
}

.login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn.google {
  background: rgba(219, 68, 55, 0.15);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(219, 68, 55, 0.2);
}

.login-btn.google:hover {
  background: rgba(219, 68, 55, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(219, 68, 55, 0.3);
}

.login-btn.discord {
  background: rgba(88, 101, 242, 0.15);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.2);
}

.login-btn.discord:hover {
  background: rgba(88, 101, 242, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.3);
}

.login-btn svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@media (max-width: 480px) {
  .login-card {
    padding: 40px 30px;
  }
  
  .login-card h1 {
    font-size: 2rem;
  }
  
  .login-options {
    min-width: 250px;
  }
}
