:root {
  --color-green: #4e5f00;
  --color-navy: rgba(0, 18, 50, 0.85);
  --color-yellow: #fcdfa0;
  --color-red: #c70022;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: url('media/wallpaper.jpg') no-repeat center center fixed;
  background-size: cover;
  color: var(--color-yellow);
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Commodore 64 Pixelized', Orbitron, Montserrat, Arial, sans-serif !important;
}

.logo {
  height: auto;
  width: 10%;
}

.navbar {
  width: 100%;
  background: var(--color-navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: opacity 0.4s;
}

.navbar.navbar-hidden {
  opacity: 0;
  pointer-events: none;
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
  font-weight: bold;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
}

.hero-content .tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #ffb347;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.steam-btn, .hero-steam {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: transparent;
  color: var(--color-yellow);
  font-size: 1.3rem;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border: 2px solid var(--color-red);
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  margin-top: 1.5rem;
  pointer-events: auto;
  letter-spacing: 1px;
  backdrop-filter: blur(2px);
}

.steam-btn i, .hero-steam i {
  font-size: 1.5rem;
}

.steam-btn:hover, .hero-steam:hover {
  background: var(--color-red);
  color: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: translateY(-2px) scale(1.06);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 2rem;
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  color: var(--color-yellow);
  margin: 4rem 0 2rem 0;
  position: relative;
  text-shadow: 2px 2px 0 var(--color-navy), 0 2px 8px var(--color-navy);
}

.section-heading:before, .section-heading:after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: var(--color-red);
  border-radius: 2px;
}

.section-heading:before {
  margin-right: 1rem;
}

.section-heading:after {
  margin-left: 1rem;
}

.heading-icon {
  color: var(--color-red);
  font-size: 2.2rem;
}

.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  background: var(--color-navy);
}

.about-card {
  position: relative;
  background: var(--color-yellow);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,173,238,0.15), 0 4px 24px rgba(0,0,0,0.4);
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  max-width: 900px;
  color: var(--color-navy);
  overflow: hidden;
  border-left: 6px solid var(--color-red);
}

.screenshots-section {
  padding: 4rem 1rem 2rem 1rem;
  background: var(--color-navy);
  text-align: center;
}

.screenshots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.screenshot-card {
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(78,95,0,0.10), 0 4px 16px rgba(0,18,50,0.18);
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.2s cubic-bezier(.4,0,.2,1);
  max-width: 400px;
  will-change: transform;
}

.screenshot-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(78,95,0,0.12), 0 4px 16px rgba(0,18,50,0.18);
}

.screenshot-card img {
  width: 100%;
  display: block;
}

.site-footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0 1.5rem 0;
  background: var(--color-navy);
}

.footer-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

.navbar-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.navbar-social a {
  color: var(--color-yellow);
  font-size: 2rem;
  transition: color 0.2s, transform 0.2s;
}

.navbar-social a:hover {
  color: var(--color-red);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .about-card {
    padding: 1.5rem 0.5rem;
  }
  .screenshots-grid {
    gap: 1rem;
  }
  .about-list {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
  .roadmap-content {
    background: var(--color-yellow);
  }
  .roadmap-content h3 {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .navbar-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .hero-section {
    height: 70vh;
  }
  .screenshots-section {
    padding: 2rem 0.5rem;
  }
  .screenshot-card {
    max-width: 100%;
  }
  .section-heading {
    font-size: 1.3rem;
  }
  .navbar-social a {
    font-size: 1.3rem;
  }
  .hero-video {
    display: none;
  }
  .hero-video-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
  }
  .feature-card p {
    font-size: 0.95rem;
  }
  .navbar {
    display: none;
  }
}

.feature-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem 2rem 1rem;
  background: var(--color-navy);
}

.feature-container {
  display: flex;
  max-width: 900px;
  width: 100%;
  align-items: center;
  gap: 2.5rem;
  position: relative;
}

.feature-container.feature-reverse {
  flex-direction: row-reverse;
}

.feature-video {
  width: 720px;
  height: 405px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.feature-card {
  position: relative;
  margin-left: -120px;
  margin-top: 80px;
  z-index: 2;
  background: rgba(252, 223, 160, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 2.5rem 2rem;
  min-width: 320px;
  max-width: 420px;
  color: var(--color-navy);
}

.feature-container.feature-reverse .feature-card {
  margin-left: -120px;
  margin-right: -120px;
  margin-top: 80px;
}

.feature-card h2 {
  font-family: 'Commodore 64 Pixelized', Orbitron, Montserrat, Arial, sans-serif !important;
  font-size: 2rem;
  color: var(--color-red) !important;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: bold;
}

.feature-card p {
  position: relative;
  color: #222;
  background: rgba(252,223,160,0.5);
  border-left: 6px solid var(--color-red);
  padding: 1em 1em 1em 1.5em;
  border-radius: 8px;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0.7em 0 0.7em 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-card p strong {
  background: var(--color-yellow);
  color: var(--color-red);
  padding: 0 0.2em;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .feature-container,
  .feature-container.feature-reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .feature-video {
    width: 100%;
    height: 220px;
    max-width: 100%;
  }
  .feature-card {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    max-width: 100%;
    min-width: 0;
    padding: 1.5rem 1rem;
    position: static;
  }
}

.roadmap-section {
  background: rgba(0, 18, 50, 0.85);
  padding: 4rem 1rem 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roadmap-timeline {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  position: relative;
  margin-top: 2rem;
  max-width: 1300px;
  width: 100%;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00adee 0%, #ffb347 100%);
  z-index: 0;
  transform: translateY(-50%);
}

.roadmap-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 200px;
  flex: 1;
  margin-bottom: 2rem;
}

.roadmap-dot {
  display: none !important;
}

.roadmap-content {
  background: var(--color-yellow);
  color: #111;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 1.5rem 1.2rem;
  text-align: center;
  margin-top: 0.5rem;
  min-width: 230px;
  max-width: 230px;
  width: 230px;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-left: 6px solid var(--color-red);
  position: relative;
}

.roadmap-date {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
  background: var(--color-red);
  padding: 4px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.roadmap-content h3 {
  font-family: 'Commodore 64 Pixelized', Orbitron, Montserrat, Arial, sans-serif;
  color: var(--color-red);
  margin-bottom: 0.7rem;
  min-height: 2.8em;
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.roadmap-content p {
  color: #222;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0.7em 0 0.7em 0;
  box-shadow: none;
  text-align: left;
  width: 100%;
}

.roadmap-highlight {
  background: none;
  color: inherit;
  padding: 0;
  border-radius: 0;
  font-weight: normal;
}

@media (max-width: 900px) {
  .roadmap-timeline {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .roadmap-timeline::before {
    top: 0;
    left: 50%;
    right: auto;
    width: 4px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #00adee 0%, #ffb347 100%);
    transform: translateX(-50%);
  }
  .roadmap-pin {
    flex-direction: row;
    align-items: flex-start;
    min-width: 0;
    width: 100%;
  }
  .roadmap-content {
    width: 90vw;
    min-width: unset;
    max-width: 100%;
    height: auto;
    align-items: center;
    padding: 1.2rem 1rem;
    margin-bottom: 1.5rem;
  }
  .roadmap-icon {
    width: 44px;
    height: 44px;
    font-size: 1.7rem;
  }
  .roadmap-content h3,
  .roadmap-content p {
    text-align: center;
    width: 100%;
  }
}

.hero-video-mobile {
  display: none;
}

@media (max-width: 700px) {
  .hero-section {
    height: 100vh;
    height: 100svh; /* modern mobile viewport height */
    position: relative;
    overflow: hidden;
  }
  
  .hero-video-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    object-fit: cover;
    z-index: 1;
  }

  .hero-video {
    display: none !important;
  }
}

.roadmap-icon {
  width: 56px;
  height: 56px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  z-index: 2;
  border-bottom: 4px solid var(--color-red);
  font-size: 2.3rem;
  color: var(--color-red);
}

@media (max-width: 900px) {
  .roadmap-icon {
    display: none;
  }
}

.screenshots-section .section-heading {
  font-family: 'Commodore 64 Pixelized', Orbitron, Montserrat, Arial, sans-serif !important;
}

.roadmap-section .section-heading, .about-section .section-heading {
  font-family: 'Commodore 64 Pixelized', Orbitron, Montserrat, Arial, sans-serif !important;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0.5rem;
  background: none;
  transition: background 0.2s;
}

.about-list li:before {
  content: attr(data-emoji);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.3rem;
  transition: transform 0.2s;
}

.about-list li:hover:before {
  transform: scale(1.2) rotate(-10deg);
}

.about-list strong {
  color: var(--color-red);
}

.about-list-title {
  display: block;
  font-weight: bold;
  color: var(--color-red);
  margin-bottom: 0.1em;
  font-family: 'Commodore 64 Pixelized', Orbitron, Montserrat, Arial, sans-serif;
}

.about-list-desc {
  display: block;
  color: var(--color-navy);
  font-size: 0.98em;
  margin-bottom: 0.2em;
}

@media (max-width: 900px) {
  .about-list {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: none;
}

.lightbox.open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 90vw);
  height: min(80vh, 800px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 32px;
  width: 48px;
  height: 64px;
  cursor: pointer;
  border-radius: 6px;
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

.lightbox-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  font-size: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

@media (max-width: 700px) {
  .lightbox-content {
    width: 92vw;
    height: 78vh;
  }
}

.lightbox-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

@media (max-width: 700px) {
  .lightbox-counter {
    bottom: 12px;
    font-size: 13px;
    padding: 5px 9px;
  }
  #lightbox-img {
    max-width: 92vw;
    max-height: 78vh;
  }
} 

@media (min-width: 1200px) {
  .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    justify-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: none;
    margin: 0 auto;
    justify-content: center;
  }
  .screenshot-card {
    max-width: 400px;
    width: auto;
  }
} 

.screenshots-section .screenshots-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
} 

.splash-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: opacity, transform;
}
.splash-hero.hidden {
  opacity: 0;
  transform: translateY(-200px);
}

.splash-logo {
  max-width: min(60vw, 520px);
  width: 100%;
  height: auto;
  display: block;
}

.scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0.8;
  animation: hintBounce 1.6s ease-in-out infinite;
  font-size: 24px;
}
@keyframes hintBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.8; }
  50% { transform: translate(-50%, 6px); opacity: 0.5; }
}

/* Remove old washing overlay and power button styles */
#washing-overlay, #power-btn, .power-btn-glow, .washing-title, #washing-overlay-img { display: none !important; } 