/* style.css */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #2147B6, #60A3FA);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #051D2C;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 1rem;
  gap: 0.5rem;
}

.logo-small {
  width: 80px;
  height: 80px;
  margin-bottom: 0.5rem;
}

.app-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #051D2C;
  margin-bottom: 0.2rem;
}

.subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.card {
  background-color: white;
  color: black;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  width: 85%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 0.75rem;
}

.card-title {
  font-weight: bold;
  color: #1e40af;
  margin-bottom: 0.3rem;
}

.card-desc {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

input[type="text"] {
  width: 100%;
  max-width: 300px;
  padding: 0.75rem;
  text-align: center;
  margin-bottom: 1.25rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  box-sizing: border-box;
}

.flex-col.gap-2 > button:not(:last-child) {
  margin-bottom: 0.75rem;
}

.link-container {
  background-color: #64A3FF;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.link-container a {
  font-size: 0.9rem;
  color: white;
  text-decoration: none;
}

.author {
  font-size: 0.85rem;
  font-weight: bold;
  color: #00205B;
  margin-top: 0.25rem;
}

.enter-btn {
  background-color: #10b981;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  box-sizing: border-box;
}

.enter-btn:hover {
  background-color: #059669;
}

.footer {
  font-size: 0.7rem;
  margin-top: 1.5rem;
  text-align: center;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
