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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #050e14, #0a1c22);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.container {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(0, 255, 247, 0.1);
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
}

header {
  text-align: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00fff7, #00c8c3, #7bfffd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  letter-spacing: 1px;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  justify-content: center;
  text-align: center;
}

.hero-text, .form-container {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text {
  background: radial-gradient(circle at top left, rgba(0,255,247,0.05), transparent 70%);
  border-radius: 1rem;
  padding: 2rem;
}

.badge-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}

.badge-logo {
  width: 130px;
  margin-bottom: 0.5rem;
  margin-right: -10px;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px #00fff7); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 12px #00fff7); }
}

.badge {
  padding: 0.4rem 1rem;
  background: rgba(0,255,247,0.15);
  color: #7bfffd;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0,255,247,0.2);
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h1 span {
  position: relative;
  color: #00fff7;
}

h1 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00fff7, #00c8c3);
  border-radius: 4px;
  animation: underlineGrow 2s ease-in-out infinite alternate;
}

@keyframes underlineGrow {
  from { transform: scaleX(0.4); opacity: 0.6; }
  to { transform: scaleX(1); opacity: 1; }
}

p {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 500px;
}

.form-inner {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  max-width: 500px;
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(45deg, #7bfffd, #00c8c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
}

.input-group:last-child {
  grid-column: span 2;
}

label {
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

input, select, textarea {
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
  color: white;
  outline: none;
}

textarea {
  resize: none;
}

button {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(45deg, #00fff7, #00c8c3);
  border: none;
  color: white;
  border-radius: 0.5rem;
  font-weight: bold;
  margin-top: 1rem;
  cursor: pointer;
}

footer {
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
}

@media (min-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .input-group:last-child {
    grid-column: span 1;
  }
}




:root {
  --accent: #00fff7;
  --accent-dark: #00c8c3;
  --accent-light: #7bfffd;
  --bg-start: #050e14;
  --bg-end: #0a1c22;
}

#loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end));
  z-index: 9999;
  font-family: 'Share Tech Mono', monospace;
}

.grid-loader {
  display: grid;
  grid-template-columns: repeat(5, 20px);
  grid-gap: 10px;
}

.grid-cell {
  width: 20px;
  height: 20px;
  background-color: rgba(0, 255, 247, 0.1);
  animation: lightUp 1.5s infinite ease-in-out;
}

.grid-cell:nth-child(odd) {
  animation-delay: 0.2s;
}

.grid-cell:nth-child(even) {
  animation-delay: 0.4s;
}

@keyframes lightUp {
  0%, 100% {
    background-color: rgba(0, 255, 247, 0.1);
  }
  50% {
    background-color: rgba(0, 255, 247, 0.6);
    box-shadow: 0 0 6px var(--accent);
  }
}

.log-area {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  width: 90%;
  max-width: 500px;
  color: var(--accent);
}

.log-line {
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
} 
.modal-content {
  background: rgba(10, 20, 30, 0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0,255,247,0.2);
  animation: modalPop 0.4s ease-out;
}
@keyframes modalPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #00fff7, #00c8c3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modal-content p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.modal-close {
  background: linear-gradient(45deg, #00fff7, #00c8c3);
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,255,247,0.3);
}
