@font-face {
  font-family: 'BystanderSans-Light';
  src: url('fonts/BystanderSans-Light.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'BystanderSans-Light', 'Segoe UI', 'Roboto', 'Arial', system-ui, sans-serif;
  background: linear-gradient(135deg, #fef3c7, #e0f2fe);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1f2937;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 400px;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}

.logo {
  width: calc(100% - 2rem);
  max-width: none;
  height: auto;
  display: block;
  margin: 0.25rem auto 0.1rem auto;
}

.sublogo {
  height: 70px;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.links a {
  display: block;
  text-align: center;
  padding: 0.75rem 0;
  background: #2563eb;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, background-color 0.2s ease;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.03);
  width: 100%;
  box-sizing: border-box;
}

.links a:hover {
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #222;
  box-shadow: 0 2px 8px 0 rgba(255,179,71,0.18);
}

.linky {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 0;
}

.linky a img {
  max-height: 32px;
  width: auto;
  vertical-align: middle;
  filter: grayscale(0.2) brightness(0.95);
  transition: filter 0.18s;
}

.linky a:hover img {
  filter: none;
}

@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 1rem 0.2rem;
  }
  .links a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
  .logo {
    width: 80px;
  }
}

.coded-by {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 1rem auto 0 auto;
} 