/* === GENERAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at 20% 20%, #0f0f1a, #050509);
  color: #e0e0ff;
  min-height: 100vh;
  padding: 0;
  margin: 0;
}


/* === GLASSY CONTAINER === */
.container {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  max-width: 400px;
  width: 100%;
}

/* === HEADERS === */
h1, h2 {
  text-align: center;
  color: #00ffe7;
  text-shadow: 0 0 5px #00ffe7, 0 0 10px #00ffe7;
  margin-bottom: 1.5rem;
  font-size: 30pt;
}

/* === FORM FIELDS === */
input, button {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #00ffe7;
  background: rgba(0, 0, 0, 0.4);
  color: #00ffe7;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.6s ease-in-out;
}

input:focus {
  outline: none;
  box-shadow: 0 0 8px #00ffe7;
}

/* === BUTTON === */
button {
  background: linear-gradient(90deg, #00ffe7, #6600ff);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 0 15px #00ffe7;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  max-width: 300px;

}


input[type="submit"] {
  background: linear-gradient(90deg, #00ffe7, #6600ff);
  border: none;
  color: #000;
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 0 15px #00ffe7;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


input:hover {
  box-shadow: 0 0 15px #00ffe7, 0 0 30px #6600ff;
  transform: scale(1.02);
}

button:hover {
  box-shadow: 0 0 25px #00ffe7, 0 0 40px #6600ff;
  transform: scale(1.02);
}


/* === LINKS === */
a {
  color: #00ffe7;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}


.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #e0e0ff;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: #00ffe7;
  text-shadow: 0 0 10px #00ffe7, 0 0 25px #00ffe7;
  font-weight: 800;
  margin-bottom: 1rem;
}


.hero-button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.login-button {
  background: linear-gradient(90deg, #00ffe7, #6600ff);
  color: black;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 15px #00ffe7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00ffe7, 0 0 30px #6600ff;
}

.login-button {
  color: #000 !important; /* prevents override from generic 'a' */
  text-shadow: none !important;
}

.preview {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.chat-preview {
  max-width: 60rem;
  top: 1rem;
  width: 90%;
  justify-content: left;
  align-items: left;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.chat-preview:hover {
  transform: scale(1.05);
}


.hereo-container {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preview-section {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

