@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 2rem;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.links a {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: #038aff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease-in-out;
}

.links a:hover {
  background: #0059a7;
}

footer {
  font-size: 0.85rem;
  color: #666;
  margin-top: 2rem;
}

.site-logo {
  display: block;
  margin: 20px auto;
  max-width: 250px;
}

button, .btn {
  background-color: #008CFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, .btn:hover { background-color: #0059a7; }


.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
