.lords-exchange-banner {
  min-height: 100vh;
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Arial', sans-serif;
}

.lords-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

/* Logo Section */
.lords-logo-section {
  text-align: center;
  margin-bottom: 3rem;
}

.lords-crown {
  margin-bottom: 1rem;
}

.lords-crown i {
  font-size: 3rem;
  color: #d4af37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.lords-title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.lords-text {
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.exchange-text {
  color: #ffffff;
  margin-left: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Login Form */
.lords-login-form {
  width: 100%;
  max-width: 350px;
}

.lords-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.lords-input-group {
  position: relative;
}

.lords-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

.lords-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.lords-input:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Login Button */
.lords-login-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a70 100%);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lords-login-btn:hover {
  background: linear-gradient(135deg, #3468b3 0%, #22427a 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.lords-login-btn:active {
  transform: translateY(0);
}

/* reCAPTCHA Notice */
.lords-recaptcha {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  max-width: 300px;
  margin: 0 auto;
}

.lords-link {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lords-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .lords-exchange-banner {
    padding: 1rem;
  }
  
  .lords-title {
    font-size: 2rem;
  }
  
  .lords-crown i {
    font-size: 2.5rem;
  }
  
  .lords-login-form {
    max-width: 300px;
  }
  
  .lords-input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  
  .lords-login-btn {
    padding: 0.9rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .lords-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  .lords-crown i {
    font-size: 2rem;
  }
  
  .lords-recaptcha {
    font-size: 0.75rem;
  }
}

/* Dark theme with subtle texture */
.lords-exchange-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(44, 90, 160, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.01) 50%, transparent 51%);
  pointer-events: none;
  z-index: 0;
}

.lords-container {
  position: relative;
  z-index: 1;
}
