/* Reset & base */
* {
  margin: 0; padding: 0; box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
  background: #1a0000;
  color: #ff2a2a;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(90deg, #8b0000 0%, #ff0000 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 10000;
  box-shadow: 0 3px 10px rgba(255, 0, 0, 0.6);
  animation: slideDown 0.8s ease forwards;
}
@keyframes slideDown {
  from {transform: translateY(-100%);}
  to {transform: translateY(0);}
}
header h1 {
  font-weight: 900;
  font-size: 2rem;
  text-shadow: 0 0 10px #ff2a2a;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  user-select: none;
}
nav {
  display: inline-block;
  float: right;
}
nav a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffb3b3;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  user-select: none;
}
nav a.active,
nav a:hover {
  background: #ff2a2a;
  color: #fff;
  box-shadow: 0 0 15px #ff2a2a;
}

/* Main common */
main {
  flex-grow: 1;
  padding: 40px 0 80px;
  animation: fadeIn 1.2s ease forwards;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}
.fade-in-up.delay-1 {
  animation-delay: 0.3s;
}
.fade-in-up.delay-2 {
  animation-delay: 0.6s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home Page */
.home-main .hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.home-main .hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 0 0 15px #ff3a3a;
  animation: pulseRed 2.5s infinite;
}
@keyframes pulseRed {
  0%, 100% { text-shadow: 0 0 15px #ff3a3a; }
  50% { text-shadow: 0 0 35px #ff5a5a; }
}
.home-main .hero p {
  font-size: 1.25rem;
  color: #ff7a7a;
  margin-bottom: 30px;
}
.home-main .btn {
  background: #ff2a2a;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.3rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 20px #ff2a2a;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  display: inline-block;
  text-decoration: none;
}
.home-main .btn:hover {
  background: #ff5a5a;
  box-shadow: 0 0 40px #ff5a5a;
}

.features {
  max-width: 900px;
  margin: 0 auto 60px;
}
.features h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 0 10px #ff2a2a;
}
.feature-list {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-list article {
  background: #330000;
  padding: 25px 30px;
  border-radius: 15px;
  width: 280px;
  box-shadow: 0 0 20px #ff2a2a;
  transition: transform 0.3s ease;
  cursor: default;
}
.feature-list article:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff5a5a;
}
.feature-list h4 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #ff7a7a;
}
.feature-list p {
  font-weight: 600;
  color: #ffb3b3;
}

/* Testimonials */
.testimonials {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonials h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  text-shadow: 0 0 10px #ff2a2a;
}
.testimonials blockquote {
  background: #330000;
  padding: 25px 30px;
  border-radius: 15px;
  font-style: italic;
  box-shadow: 0 0 20px #ff2a2a;
  margin-bottom: 20px;
  color: #ffb3b3;
  transition: background 0.3s ease;
}
.testimonials blockquote:hover {
  background: #440000;
}

/* About Page */
.about-main {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}
.about-main h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #ff3a3a;
}
.about-main p {
  text-align: center;
  font-size: 1.2rem;
  color: #ff7a7a;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.team-member {
  background: #330000;
  padding: 25px 30px;
  border-radius: 20px;
  width: 280px;
  box-shadow: 0 0 20px #ff2a2a;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: default;
}
.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px #ff5a5a;
}
.team-member img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px #ff2a2a;
}
.team-member h3 {
  color: #ff7a7a;
  margin-bottom: 10px;
}
.team-member p {
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffb3b3;
}
.team-member p:last-child {
  font-weight: 400;
  font-style: italic;
  color: #ff9999;
}

/* Why Choose Us Page */
.why-main {
  max-width: 850px;
  margin: 0 auto;
  padding-top: 20px;
  color: #ffb3b3;
}
.why-main h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  text-shadow: 0 0 15px #ff3a3a;
  text-align: center;
}
.why-main article p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}
.why-main article h3 {
  margin-top: 40px;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff2a2a;
}
.why-main ul {
  list-style: none;
  padding-left: 0;
}
.why-main li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.why-main li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  color: #ff2a2a;
  font-weight: 900;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #8b0000 0%, #ff0000 100%);
  padding: 25px 0;
  text-align: center;
  box-shadow: 0 -3px 10px rgba(255, 0, 0, 0.6);
  user-select: none;
}
footer p {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
}
.discord-btn {
  background: #ff2a2a;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 20px #ff2a2a;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  user-select: none;
}
.discord-btn:hover {
  background: #ff5a5a;
  box-shadow: 0 0 40px #ff5a5a;
}

/* ✅ Responsive Styles */
@media (max-width: 1024px) {
  .feature-list,
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-list article,
  .team-member {
    width: 90%;
    max-width: 400px;
  }

  nav {
    float: none;
    text-align: center;
    margin-top: 15px;
  }

  nav a {
    display: inline-block;
    margin: 5px;
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 1.6rem;
  }

  nav a {
    padding: 8px 12px;
    font-size: 1rem;
  }

  .home-main .hero h2 {
    font-size: 2.2rem;
  }

  .home-main .hero p {
    font-size: 1.1rem;
  }

  .home-main .btn {
    font-size: 1.1rem;
    padding: 12px 25px;
  }

  .about-main h2,
  .why-main h2 {
    font-size: 2rem;
  }

  .why-main article p {
    font-size: 1rem;
  }

  footer p {
    font-size: 0.9rem;
  }

  .discord-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .home-main .hero h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 15px;
  }

  nav a {
    display: block;
    margin: 6px 0;
  }

  .team-member img {
    width: 120px;
    height: 120px;
  }

  .team-member {
    padding: 20px;
  }

  .why-main li {
    font-size: 1rem;
    padding-left: 24px;
  }

  .why-main li::before {
    left: 4px;
  }
}
