/* ========= Global Base ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background-color: #1a1a1a;
}

/* ========= About Section ========= */
.about-section {
  padding: 60px 25px;
  max-width: 900px;
  margin: auto;
  background-color: #1e1e1e;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
  color: #e0e0e0;
  line-height: 1.9;
}


.about-section h2 {
  font-size: 2.5rem;
  color: #00e0ff;
  margin-bottom: 20px;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
}

.about-section h3 {
  font-size: 1.5rem;
  color: #ffaa33;
  margin-top: 35px;
  margin-bottom: 12px;
  text-shadow: 0 0 4px rgba(255, 170, 51, 0.4);
}

.about-section p,
.about-section li {
  font-size: 1.1rem;
  color: #cccccc;
}

.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section li::before {
  content: "★";
  margin-right: 10px;
  color: #00e0ff;
}

/* ========= Footer ========= */
.footer {
  background: linear-gradient(to right, #111111, #1f1f1f);
  color: #dddddd;
  padding: 50px 20px;
  text-align: center;
  margin-top: 80px;
  border-top: 1px solid #00e0ff;
  box-shadow: 0 -2px 10px rgba(0, 255, 255, 0.1);
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #00e0ff;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.footer-tagline {
  font-size: 1rem;
  margin: 10px 0;
  color: #aaaaaa;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  margin: 0 14px;
  text-decoration: none;
  color: #ffaa33;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00e0ff;
}

.footer-credit {
  font-size: 0.9rem;
  color: #888888;
}

.footer-credit span {
  color: #00e0ff;
  font-weight: 600;
}
