body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1f2937;
  color: #f9fafb;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f2937;
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3b82f6;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
}

.navbar-nav .nav-link {
  color: #f9fafb;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3b82f6;
}

.navbar-toggler {
  display: none;
}

.hero_area {
  background: linear-gradient(to bottom, #3b82f6, #1e40af);
  color: #f9fafb;
  padding: 4rem 2rem;
  text-align: left;
  position: relative;
}

.detail-box {
  max-width: 600px;
  margin-left: 2rem;
}

.detail-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.detail-box p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-box {
  display: flex;
  gap: 1rem;
}

.btn-box .btn1,
.btn-box .btn2 {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-box .btn1 {
  background-color: #1f2937;
  color: #f9fafb;
}

.btn-box .btn2 {
  background-color: #2563eb;
  color: #f9fafb;
}

.btn-box .btn1:hover,
.btn-box .btn2:hover {
  transform: scale(1.05);
}

.staff_section {
  padding: 4rem 2rem;
  background-color: #1f2937;
}

.heading_container h2 {
  text-align: center;
  font-size: 2rem;
  color: #3b82f6;
}

.heading_container p {
  text-align: center;
  font-size: 1rem;
  color: #f9fafb;
}

.staff_box {
  text-align: center;
  background: #374151;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 1rem;
  transition: transform 0.3s ease;
}

.staff_box:hover {
  transform: translateY(-5px);
}

.staff_box img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.staff_box h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.staff_box i {
  font-size: 0.875rem;
  color: #3b82f6;
}

.staff_section .row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.discord_section {
  background-color: #3b82f6;
  color: #f9fafb;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  width: 80%;
}

.discord_section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.discord_section p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.discord_section .join-btn {
  display: inline-block;
  background-color: #1f2937;
  color: #f9fafb;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.discord_section .join-btn:hover {
  transform: scale(1.05);
  background-color: #2563eb;
}

.footer_section {
  background-color: #1f2937;
  color: #f9fafb;
  padding: 1.5rem 0;
  text-align: center;
}

.footer_section a {
  color: #3b82f6;
  font-weight: 600;
}

.footer_section a:hover {
  text-decoration: underline;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0;
  color: #3b82f6;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.news-item {
  background: #374151;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  text-align: center;
  transition: transform 0.3s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item h2 {
  color: #f9fafb;
  margin-bottom: 1rem;
}

.news-item p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.read-more-btn {
  display: inline-block;
  background-color: #2563eb;
  color: #f9fafb;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
  transform: scale(1.05);
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.store-item {
  background: #374151;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.store-item:hover {
  transform: translateY(-5px);
}

.store-item img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.store-item h2 {
  color: #f9fafb;
  margin-bottom: 1rem;
}

.store-item p {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.purchase-btn {
  display: inline-block;
  background-color: #2563eb;
  color: #f9fafb;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.purchase-btn:hover {
  transform: scale(1.05);
}
