/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a1128;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Google Sans', 'Google Sans Display', 'Roboto', sans-serif;
  overflow-x: hidden;
}

#snowCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.title {
  font-family: 'Google Sans', 'Google Sans Display', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 5.4rem);
  color: white;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 20, 70, 0.7);
  line-height: 1.1;
}

.links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  row-gap: 1.8rem;
}

.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, filter 0.2s;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.link:hover {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.15));
}

.icon {
  width: 1.9rem;
  height: 1.9rem;
  fill: white;
  display: block;
}

.ssn-logo {
  font-family: 'Google Sans', 'Roboto', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  color: white;
  line-height: 1;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: text-shadow 0.2s;
}

.link:hover .ssn-logo {
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
  .links {
    gap: 1.8rem;
  }
  
  .icon {
    width: 2rem;
    height: 2rem;
  }
  
  .ssn-logo {
    font-size: 1.7rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}