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

html {
  font-size: clamp(14px, 2vw, 18px);
}

body {
  height: 100%;
  width: 100%;
  font-family: 'Genos', sans-serif;
  overflow-x: hidden;
  color: white;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  background-image: url('background.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
  z-index: -1;
}

.fixed-header {
  position: fixed;
  top: 2vw;
  left: 2vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.title-box,
.icons-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.8rem 1.2rem;
  border-radius: 4px;
  backdrop-filter: blur(2px);
  width: fit-content;
  max-width: 90vw;
}

#title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 350;
  letter-spacing: 0.2em;
  transition: font-size 0.2s ease;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-icons a img,
.social-icons a svg {
  height: clamp(24px, 5vw, 44px);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.social-icons a img:hover,
.social-icons a svg:hover {
  opacity: 1;
}

.news-box {
  position: fixed;
  top: 2vw;
  right: 2vw;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  font-size: clamp(1.1rem, 2.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  backdrop-filter: blur(2px);
  z-index: 2;
  display: inline-block;
  line-height: 1.4;
  max-width: 90%;
  word-break: break-word;
  text-align: right;
}

.spacer {
  height: 100vh;
  background: transparent;
}

@media (max-width: 480px) {
  .fixed-header {
    top: 1rem;
    left: 0;
    right: 0;
    width: 100%;
    align-items: center;
  }

  .title-box,
  .icons-box {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons {
    justify-content: center;
  }

  .news-box {
    top: auto;
    bottom: 1.5rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}
