/* Landing page styles - consistent with websocket-client.css theme */
body {
  background: #181a20;
  color: #f1f1f1;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-container {
  max-width: 600px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
  box-sizing: border-box;
}

.landing-header {
  margin-bottom: 48px;
}

.tagline {
  font-size: 3.2em;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #f1f1f1;
  line-height: 1.1;
}

.subtitle {
  font-size: 1.4em;
  color: #b0b3b8;
  margin: 0;
  font-weight: 300;
}

.landing-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.description {
  text-align: left;
  line-height: 1.6;
}

.description p {
  font-size: 1.1em;
  color: #d1d1d1;
  margin: 0 0 20px 0;
}

.description p:last-child {
  margin-bottom: 0;
}

/* Login section styling - reusing existing patterns */
.login-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.login-form-container {
  background: #23262f;
  padding: 24px 28px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}

.login-message {
  margin-bottom: 20px;
  color: #aaa;
  text-align: center;
  font-size: 1em;
}

.login-form-container input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #2a2d36;
  color: #fff;
  box-sizing: border-box;
  margin-bottom: 16px;
  font-size: 1em;
}

.login-form-container input[type="text"]:focus {
  outline: none;
  border-color: #0066cc;
}

.login-form-container button[type="submit"] {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #0066cc;
  color: white;
  font-weight: 500;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
}

.login-form-container button[type="submit"]:hover {
  background: #0052a3;
}

/* Start chatting button for logged-in users */
.start-chatting-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 500;
  transition: background-color 0.2s;
}

.start-chatting-btn:hover {
  background: #0052a3;
}

/* Responsive design */
@media (max-width: 768px) {
  .landing-container {
    padding: 24px 16px;
  }
  
  .tagline {
    font-size: 2.4em;
  }
  
  .subtitle {
    font-size: 1.2em;
  }
  
  .description p {
    font-size: 1em;
  }
  
  .login-form-container {
    padding: 20px 24px;
  }
  
  .login-form-container input[type="text"] {
    padding: 16px 20px;
    font-size: 1.1em;
  }
  
  .login-form-container button[type="submit"] {
    padding: 16px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .tagline {
    font-size: 2em;
  }
  
  .subtitle {
    font-size: 1.1em;
  }
  
  .landing-content {
    gap: 32px;
  }
}