/* Reset some default margins/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-screen flex container */
html, body {
  height: 100%;
  font-family: sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 1rem;
}

/* Logo sizing */
.logo {
  max-width: 300px;
  width: 50%;
  margin-bottom: 2rem;
}

/* App badges */
.badges a {
  margin: 0 0.5rem;
  display: inline-block;
}

.badges img {
  height: 70px; /* ← increased from 50px */
  width: auto;
  transition: transform 0.2s ease;
}

.badges img:hover {
  transform: scale(1.05);
}
