body {
  background: linear-gradient(135deg, #3a2c1f 0%, #5a4a30 100%);
  min-height: 100vh;
  background-attachment: fixed;
  color: #e9dcc9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-bottom: 20px;
}

.header-title {
  font-size: 5.5rem;
  font-weight: 800;
  color: #2E7D32;
  text-shadow: 0 0 15px rgba(46, 125, 50, 0.7);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.header-subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  color: #FFD600;
  text-shadow: 0 0 10px rgba(255, 214, 0, 0.6);
  letter-spacing: 1px;
  margin-bottom: 2.5rem;
}

.game-description {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  padding: 20px;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(139, 115, 85, 0.5);
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn-download {
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  justify-content: center;
}

.btn-windows {
  background: linear-gradient(to bottom, #00A4EF 0%, #0078D7 100%);
  box-shadow: 0 5px 20px rgba(0, 116, 212, 0.4);
  color: white;
}

.btn-linux {
  background: linear-gradient(to bottom, #E95420 0%, #C34113 100%);
  box-shadow: 0 5px 20px rgba(233, 84, 32, 0.4);
  color: white;
}

.btn-download:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-windows:hover {
  box-shadow: 0 8px 25px rgba(0, 116, 212, 0.6);
}

.btn-linux:hover {
  box-shadow: 0 8px 25px rgba(233, 84, 32, 0.6);
}

.social-section {
  margin-bottom: 2rem;
  text-align: center;
}

.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0088cc;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 136, 204, 0.4);
}

.telegram-link:hover {
  background: rgba(0, 136, 204, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
  color: #4fc3f7;
}

.telegram-icon {
  font-size: 1.5rem;
  color: #0088cc;
}

.copyright {
  font-size: 0.95rem;
  opacity: 0.7;
  padding: 10px;
}

@media (max-width: 768px) {
  .header-title {
    font-size: 3.8rem;
  }
  .header-subtitle {
    font-size: 1.8rem;
  }
  .game-description {
    padding: 20px;
    font-size: 1.1rem;
  }
  .download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .btn-download {
    min-width: 220px;
    padding: 12px 30px;
  }
}
