/* =============================
   RESET
   ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* =============================
   BODY & PAGE TRANSITION
   ============================= */

body {
  background-color: #000000; /* black */
  color: #ffffff; /* white text */
  line-height: 1.6;

  /* Page transition */
  opacity: 0;
  transition: opacity 0.35s ease;
}

body.fade-in { opacity: 1; }
body.fade-out { opacity: 0; }

/* =============================
   CONTAINER
   ============================= */

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* =============================
   HEADER
   ============================= */

.header {
  background: #020617;
  border-bottom: 1px solid #1e293b;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #ef4444; /* red */
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
  transition: color 0.2s ease, border-bottom 0.2s ease;
}

.nav a:hover {
  color: #ef4444;
}

/* =============================
   HERO
   ============================= */

.hero {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85));
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  color: #cbd5f5;
}

.btn {
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ef4444; /* red button */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: #dc2626; /* darker red on hover */
  transform: translateY(-2px); /* micro lift */
}


/* =============================
   FEATURES
   ============================= */

.features {
  padding: 60px 0;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  background: #0a0a0a;
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #1f1f1f;
}

.feature h3 {
  margin-bottom: 15px;
  color: #ef4444;
}

/* =============================
   FOOTER
   ============================= */

.footer {
  background: #000000;
  border-top: 1px solid #1f1f1f;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #9ca3af;
}

/* =================
.footer a {
  color: #ef4444;
  text-decoration: none;
  font-weight: bold;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .disclaimer {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}
@media (max-width: 480px) {
  .hero {
    padding: 70px 0;
  }

  .feature {
    padding: 20px;
  }
}