*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: relative;
  background: url("../images/header-back.png") center top / cover repeat fixed;
  padding: 1.25rem 1rem 0;
  text-align: center;
}

.site-title {
  margin: 0 0 0.75rem;
  line-height: 1;
}

.site-title a {
  display: inline-block;
  text-decoration: none;
}

.site-title img {
  width: min(520px, 88vw);
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  padding-bottom: 0.75rem;
}

.nav-link {
  display: inline-block;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(234, 0, 205, 0.60);
  transform: translateY(-1px);
}

.nav-link.active {
  background: #e400b0;
  color: #fff;
}

.site-main {
  flex: 1;
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    url("../images/main-back.png") center / cover no-repeat fixed;
}

.page-section {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.coming-soon {
  margin: 0;
  padding: 1.25rem 2.5rem;
  border: 2px solid #111;
  background: rgba(255, 255, 255, 0.15);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-align: center;
}

.content-panel {
  width: min(900px, 100%);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.content-panel h1 {
  margin-top: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.content-panel h2 {
  margin-top: 1.75rem;
  font-size: 1.25rem;
}

.content-panel p,
.content-panel li {
  line-height: 1.65;
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 2.5rem;
  width: min(1100px, 100%);
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-width: 90px;
}

.social-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-item:hover .social-icon {
  transform: scale(1.06);
}

.social-icon svg {
  width: 42px;
  height: 42px;
  fill: #fff;
}

.social-icon.youtube {
  background: #ff0000;
  border-radius: 16px;
}

.social-icon.twitch {
  background: #9146ff;
  border-radius: 16px;
}

.social-icon.discord {
  background: #5865f2;
  border-radius: 50%;
}

.social-icon.spotify {
  background: #1db954;
  border-radius: 50%;
}

.social-icon.steam {
  background: #1b2838;
  border-radius: 50%;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 16px;
}

.social-icon.x {
  background: #000;
  border-radius: 16px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.social a {
  font-size: 0.95rem;
  text-decoration: underline;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-list > li {
  margin-bottom: 1.5rem;
}

.project-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.project-progress {
  color: #555;
  font-size: 0.95rem;
}

.site-footer {
  background: #e8e8e8;
  padding: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.footer-links a {
  text-decoration: underline;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .coming-soon {
    letter-spacing: 0.15em;
    padding: 1rem 1.25rem;
  }

  .social-grid {
    gap: 1.5rem;
  }

  .site-main {
    background-attachment: scroll;
  }
}
