/* === style.css === */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
  }
  
  header {
    background: #1f1f1f;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #444;
  }
  
  header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #f44336;
    animation: fadeInDown 1s ease-in-out;
  }
  
  nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }
  
  nav ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #f44336;
  }
  
  .hero {
    padding: 100px 20px;
    text-align: center;
    background: url('apocalypse-bg.jpg') no-repeat center center/cover;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero button {
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .hero button:hover {
    background-color: #d32f2f;
  }
  
  section {
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
  }
  
  .download-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #444;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .download-btn:hover {
    background-color: #f44336;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #1f1f1f;
    border-top: 2px solid #444;
    color: #aaa;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

	@keyframes fadeInUp {
	  from {
		opacity: 0;
		transform: translateY(30px);
	  }
	  to {
		opacity: 1;
		transform: translateY(0);
	  }
	}

	.reveal {
	  opacity: 0;
	  transform: translateY(30px);
	  transition: opacity 0.6s ease, transform 0.6s ease;
	}

	.reveal.visible {
	  opacity: 1;
	  transform: translateY(0);
	}
	
	.announcement {
	  background: #d32f2f;
	  color: white;
	  text-align: center;
	  padding: 10px;
	  font-weight: bold;
	}

	.socials a {
	  color: #f44336;
	  text-decoration: none;
	  margin: 0 5px;
	}

	.socials a:hover {
	  text-decoration: underline;
	}

	.disclaimer {
	  font-size: 0.8rem;
	  color: #888;
	  margin-top: 10px;
	}
	
	