.fog-hero {
  background: url('../Pictures/fog-hero.jpg') no-repeat center center;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2rem;
  color: #f5f5f5;
}

.fog-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 25, 0.7);
  z-index: 0;
}

.fog-hero .hero-content {
  z-index: 1;
  max-width: 800px;
}

.fog-hero h1 {
  font-size: 3.5rem;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  color: #fefaf5;
}

.fog-hero .tagline {
  font-size: 1.2rem;
  color: #d4d1d8;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-buttons .btn {
  background-color: #1a1a33;
  color: #e5e5ff;
  padding: 0.75rem 1.5rem;
  border: 1px solid #444;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-disabled {
  background-color: #2a2a40;
  color: #999;
  border: 1px solid #444;
  cursor: not-allowed;
  opacity: 0.6;
}

.fog-about {
  background-color: #0f0f1f;
  color: #dedcea;
  padding: 5rem 2rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text h2 {
  font-size: 2rem;
  color: #f1e8d8;
  margin-bottom: 1rem;
}

.about-image img {
  max-width: 360px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.fog-characters {
  background-color: #151526;
  color: #dcdcf0;
  padding: 5rem 2rem;
  text-align: center;
}

.fog-characters h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #e0d9ff;
}

.character-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.character {
  max-width: 240px;
  text-align: center;
}

.character img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}

.character p {
  font-size: 0.95rem;
  color: #bcbad5;
}

.fog-features {
  background-color: #121222;
  color: #dedcea;
  padding: 4rem 2rem;
  text-align: center;
}

.fog-features h2 {
  font-size: 2rem;
  color: #e0d9ff;
  margin-bottom: 2rem;
}

.fog-features ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.fog-features li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .fog-hero h1 {
    font-size: 2.2rem;
  }

  .fog-hero .tagline {
    font-size: 1rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .character-grid {
    flex-direction: column;
    align-items: center;
  }
}
.fog-follow {
  background-color: #0f0f1f;
  color: #dcdcf0;
  padding: 5rem 2rem;
  text-align: center;
}

.fog-follow h2 {
  font-size: 2rem;
  color: #e0d9ff;
  margin-bottom: 1rem;
}

.fog-follow p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #bcbad5;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icons a img {
  height: 48px;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Optional: Subtle animated fog overlay */
.fog-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../Pictures/fog-overlay.png') repeat;
  opacity: 0.12; /* Было 0.05 */
  animation: fogMove 60s linear infinite;
  z-index: 1;
}

@keyframes fogMove {
  from { background-position: 0 0; }
  to { background-position: 1000px 0; }
}
