@font-face {
  font-family: 'Evil Empire';
  src: url('../Fonts/EvilEmpire.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.snowless-hero {
  background: url('../Pictures/snowless_bg.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  text-align: center;
  color: #e8e8f8;
}

.snowless-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(5, 5, 20, 0.6); /* dark overlay */
  z-index: 0;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
}

.hero-content h1 {
  font-family: 'Evil Empire', 'Raleway', sans-serif;
  font-size: 4.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  color: #ffffff;
}

.tagline {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #cfd0f9;
}

.hero-desc {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #d5d6f0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-buttons .btn {
  padding: 0.75rem 1.5rem;
  background-color: #26264d;
  color: #f0f0ff;
  border: 1px solid #5c5cff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.hero-buttons .btn:hover {
  background-color: #5c5cff;
  color: #fff;
}

.snowless-about {
  background-color: #151530;
  color: #d8d8f2;
  padding: 5rem 2rem;
  text-align: center;
}

.snowless-about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #e0d9ff;
}

.snowless-about p {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.snowless-features {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  background-color: #100c26;
  padding: 5rem 2rem;
  color: #e4e3f8;
}

.features-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.features-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #e0d9ff;
}

.features-text h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #bbb5d3;
}

.features-text ul {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc9e6;
}

.features-images {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.features-images img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .snowless-features {
    flex-direction: column;
    align-items: center;
  }

  .features-images {
    grid-template-columns: 1fr;
  }
}

.features-images {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Контейнер скриншота */
.screenshot {
  aspect-ratio: 16 / 9; /* или 4 / 3 — на твой выбор */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* Само изображение */
.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.screenshot img.reveal {
  animation: fadeInUp 0.6s ease forwards;
}

/* Анимация появления */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* По умолчанию скриншоты скрыты */
.features-images img {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Класс, который активирует анимацию */
.features-images img.reveal {
  animation: fadeInUp 0.6s ease forwards;
}

.snowless-roadmap {
  background-color: #151530;
  padding: 5rem 2rem;
  text-align: center;
}

.roadmap-coming h2 {
  font-size: 2.2rem;
  color: #e0d9ff;
  margin-bottom: 1rem;
}

.roadmap-coming p {
  font-size: 1.3rem;
  color: #ccc9e6;
  opacity: 0.7;
}
