* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #000;
  color: #e5e5e5;
  padding: 2rem;
  overflow-x: hidden;
}

.snowflake {
  position: fixed;
  top: -10px;
  color: #fff;
  user-select: none;
  pointer-events: none;
  animation: fall linear infinite;
}

@keyframes fall {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(110vh); opacity: 0.4; }
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  color: #fff;
}

header p {
  font-size: 1.2rem;
  color: #ccc;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.card {
  background: #111;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(255,255,255,0.05);
  border: 1px solid #1f1f1f;
}

.icons img {
  width: 50px;
  height: 50px;
  background: #222;
  padding: 0.6rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(255,255,255,0.05);
  transition: transform 0.2s ease;
}

.icons img:hover {
  transform: scale(1.1);
}

.yt-button {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: #b30000;
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
}

.projects .project {
  background: #161616;
  border: 1px solid #1f1f1f;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(255,255,255,0.05);
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
}

.projects .project h3 {
  color: #fff;
}

.projects .project p {
  color: #cfcfcf;
}

footer {
  text-align: center;
  margin-top: 3rem;
  color: #777;
}
  .logo-winter { position: absolute; top: 20px; left: 20px; font-size: 48px; color: #e0f7ff; text-shadow: 0 0 10px #66ccff; }

  .snow { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 9999; }

  .snow span { position: absolute; top: -10px; width: 8px; height: 8px; background: white; border-radius: 50%; opacity: 0.9; animation: fall 6s linear infinite; }

  @keyframes fall { to { transform: translateY(110vh) rotate(360deg); } }
