@font-face {
  font-family: 'Radioz';
  src: url('fonts/Radioz.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'LuckiestGuy';
  src: url('fonts/LuckiestGuy.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #fecc91;
  color: #161618;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem 1rem;
  padding-top: 2rem;
  max-width: 800px;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: #fecc91;
  z-index: 100;
  color: #161618;
}

.header-img {
  height: 80px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.game-title {
  font-family: 'LuckiestGuy', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin-bottom: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.download-btn:active {
  transform: translateY(0);
}

.download-btn img {
  height: 48px;
  width: auto;
}

.download-fallback {
  display: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.btn-android .download-fallback {
  background-color: #3ddc84;
  color: #000;
}

.btn-ios .download-fallback {
  background-color: #007aff;
}


.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem 1.5rem;
  background-color: #fecc91;
  z-index: 100;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-item a {
  color: #161618;
  text-decoration: none;
}

.footer-item a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }
}
