@font-face {
  font-family: 'ChiKareGo2';
  src: url('assets/ChiKareGo2.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  height: 100%;
  width: 100%;
  background: #000;
  overflow-x: hidden;
}

body {
  font-family: 'ChiKareGo2', monospace;
  color: #fff;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Looping background animation */
.bg-anim {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Darken/blend overlay to keep text legible, similar to mock */
.bg-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center 45%, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 70%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
}

/* Main content, centered with flexbox */
.content {
  position: relative;
  z-index: 2;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6vh 5vw;
  gap: clamp(1rem, 3vw, 2rem);
}

.logo {
  width: min(90vw, 700px);
  height: auto;
  display: block;
}

.tagline {
  font-family: 'ChiKareGo2', monospace;
  font-size: 18px;
  line-height: 1.6;
  max-width: 620px;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: clamp(0.5rem, 2vw, 3rem);
}

.tagline + .tagline {
  margin-top: -0.75rem;
}

/* Buttons row */
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  min-width: 200px;
  justify-content: flex-start;
}

.link-btn .btn-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.link-btn .btn-text {
  font-family: 'ChiKareGo2', monospace;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
}

.bsky-btn:hover {
  background: #fff;
  color: #000;
}

.bsky-btn:hover .btn-icon {
  filter: invert(1);
}

.steam-btn:hover {
  background: #fff;
  color: #000;
}

.steam-btn:hover .btn-icon {
  filter: invert(1);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .content {
    padding: 8vh 6vw;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .link-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .link-btn .btn-text {
    text-align: center;
  }

  .tagline {
    font-size: 14px;
  }

  .link-btn .btn-text {
    font-size: 12px;
  }
}
