body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: linear-gradient(180deg, #000000, #1a0000);
  color: #f5f5f5;
  text-align: center;
}

/* Navigation */
nav {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
}

.nav-center {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-center li a {
  text-decoration: none;
  color: #ffd700;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-center li a:hover,
.nav-center li a.active {
  color: #ff3b3b;
}

/* Hero Section */
.hero {
  margin-top: 60px;
  padding: 50px 20px;
}

.main-logo {
  width: 220px;
  height: auto;
  margin-bottom: 20px;
}

h1 {
  color: #ffd700;
  font-size: 1.6rem;
  margin-bottom: 25px;
}

.btn-primary {
  background: #a50000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
}

/* About Page */
.content {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.content h2 {
  color: #ffd700;
  border-bottom: 2px solid #a50000;
  padding-bottom: 5px;
}

.content p {
  line-height: 1.8;
  margin-top: 15px;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  background: #000000;
  font-size: 0.9rem;
  color: #888;
}

.contact a {
  color: #ffd700;
  text-decoration: none;
}

.contact a:hover {
  color: #ff3b3b;
}
