/* Dark + orange theme (itch.io palette) */
:root {
  --bulma-body-background-color: #000;
  --bulma-body-color: #fcfcfc;
  --bulma-text: #fcfcfc;
  --bulma-text-strong: #fcfcfc;
  --bulma-link: #be6418;
  --bulma-link-hover: #d4781f;
  --bulma-title-color: #be6418;
  --bulma-subtitle-color: #ccc;
  --bulma-border: #333;
  --bulma-navbar-background-color: #111;
  --bulma-navbar-item-color: #fcfcfc;
  --bulma-navbar-item-hover-color: #be6418;
  --bulma-navbar-item-hover-background-color: #1a1a1a;
  --bulma-footer-background-color: #111;
  --bulma-footer-color: #999;
  --bulma-section-background-color: #000;
  --bulma-hero-body-background-color: #000;
}

/* Sticky footer - Bulma has no min-height utility */
body.is-fullheight {
  min-height: 100vh;
}

/* Navbar burger lines */
.navbar-burger span {
  background-color: #fcfcfc !important;
}

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

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

/* Banner */
.game-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.game-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.game-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
}
.game-banner .banner-title {
  position: absolute;
  bottom: 1rem;
  left: 25%;
  z-index: 1;
  font-family: 'Morpheus', serif;
  font-size: 5rem;
  color: #fff;
  text-shadow: 2px 2px 8px #000, 0 0 20px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .game-banner {
    height: 180px;
  }
  .game-banner .banner-title {
    font-size: 2.5rem;
    left: 1rem;
  }
}

/* Section titles, buttons, navbar use Mason */
.section .title, .footer, .navbar, .button {
  font-family: 'Mason', serif;
}
.navbar {
  font-weight: bold;
  font-size: 1.3rem;
}
.button {
  font-weight: bold;
}

/* Logo card - no stretch */
img.logo-img {
  max-width: 100%;
  max-height: 250px;
  height: auto;
  width: auto;
}

/* itch.io embed centering */
.itch-embed {
  display: flex;
  justify-content: center;
}
.itch-embed iframe {
  max-width: 100%;
}

/* VK Play button */
.button.is-vk-play {
  background-color: #07f;
  border-color: transparent;
  color: #fff;
}
.button.is-vk-play:hover {
  background-color: #06d;
  color: #fff;
}

/* Discourse button */
.button.is-discourse {
  background-color: #be6418;
  border-color: transparent;
  color: #fff;
}
.button.is-discourse:hover {
  background-color: #d4781f;
  color: #fff;
}

/* SVG icon sizing inside .icon spans */
.icon svg {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
}

/* Footer link */
.footer a {
  color: #be6418;
}
.footer a:hover {
  color: #d4781f;
}
