body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
  }
  
  nav {
    padding: 20px;
    text-align: center;
  }
  
  nav a {
    margin-right: 20px;
    color: #FFA726;
    text-decoration: none;
  }
  
  nav a:last-child {
    margin-right: 0;
  }
  
  nav a:hover {
    color: #ff8c00;
  }
  
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
  }
  
  .logo {
    width: 120px;
    image-rendering: crisp-edges;
  }
  
  h1 {
    font-size: 3rem;
    color: #FFA726;
    text-shadow: 0 0 10px #FFA726;
    margin-top: 20px;
  }
  
  p {
    max-width: 600px;
    color: #ccc;
    font-size: 1.2rem;
    margin-top: 10px;
  }
  
  .button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 24px;
    font-size: 1rem;
    background: #FFA726;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    box-shadow: 0 0 10px #FFA726;
    transition: background 0.3s;
    text-decoration: none;
  }
  
  .button:hover {
    background: #ff8c00;
  }
  
  .hero {
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }
  
  .hero h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 7vw, 4rem);
    color: #FFA726;
    text-shadow: 0 0 10px #000;
    padding: 0 20px;
  }
  
  .hero-polar-night {
    background-image: url("../images/polar-night.png");
  }
  
  .hero-echoes {
    background-image: url("../images/echoes.png");
  }
  
  .content {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .content h2 {
    color: #FFA726;
  }
  
  .screenshots {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .screenshots img {
    width: 100%;
    max-width: 280px;
    border-radius: 10px;
    box-shadow: 0 0 10px #FFA726;
    cursor: zoom-in;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .screenshots img:hover {
    transform: scale(1.04);
    box-shadow: 0 0 18px #FFA726;
  }
  
  .back-link {
    display: block;
    text-align: center;
    margin-top: 60px;
    color: #aaa;
    text-decoration: none;
  }
  
  .back-link:hover {
    color: #FFA726;
  }
  
  /* Index showcase */
  
  .showcase {
    display: flex;
    width: 100%;
    min-height: 70vh;
    overflow: visible;
  }
  
  .game {
    flex: 1;
    min-height: 70vh;
    transition: flex 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
  }
  
  .game:hover {
    flex: 2.5;
  }
  
  .game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease;
  }
  
  .game:hover img {
    opacity: 1;
  }
  
  .game-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    transition: opacity 0.4s ease;
  }
  
  .game h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: #FFA726;
    text-shadow: 0 0 6px #000;
  }
  
  .game p {
    font-size: 1rem;
    color: #fff;
    max-width: 300px;
  }
  
  .game:not(:hover) .game-info {
    opacity: 0.5;
  }
  
  /* Lightbox */
  
  .lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
  }
  
  .lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 25px #FFA726;
    cursor: default;
  }
  
  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
  }
  
  .lightbox-close:hover {
    color: #FFA726;
  }
  
  #lightbox-caption {
    margin-top: 20px;
    color: #ccc;
    text-align: center;
    font-size: 1rem;
  }
  
  /* Mobile */
  
  @media (max-width: 800px) {
    .showcase {
      flex-direction: column;
      min-height: auto;
    }
  
    .game {
      height: 320px;
      min-height: 320px;
      flex: none;
    }
  
    .game:hover {
      flex: none;
    }
  
    nav a {
      display: inline-block;
      margin: 8px 10px;
    }
  
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
    .footer-brand-block {
      align-items: flex-start;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
    }
  }

  .site-footer {
    margin-top: 90px;
    background:
      linear-gradient(rgba(255, 167, 38, 0.06), rgba(0, 0, 0, 0)),
      #050505;
    border-top: 1px solid rgba(255, 167, 38, 0.3);
    box-shadow: 0 -10px 30px rgba(255, 167, 38, 0.08);
  }
  
  .showcase + .site-footer,
  main + .site-footer {
    margin-top: 0;
  }
  
  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 38px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand-block {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .footer-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 8px rgba(255, 167, 38, 0.45));
  }
  
  .footer-brand-block h2 {
    margin: 0 0 8px;
    color: #FFA726;
    font-size: 1.4rem;
    text-shadow: 0 0 8px rgba(255, 167, 38, 0.35);
  }
  
  .footer-brand-block p {
    margin: 0;
    max-width: 420px;
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  
  .footer-column h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .footer-column a {
    width: fit-content;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease, text-shadow 0.2s ease;
  }
  
  .footer-column a:hover {
    color: #FFA726;
    text-shadow: 0 0 8px rgba(255, 167, 38, 0.45);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 24px 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #777;
    font-size: 0.8rem;
  }
  
  @media (max-width: 800px) {
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
    .footer-brand-block {
      align-items: flex-start;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 8px;
    }
  }