* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
  }
  
  body {
    background-color: #0f0f0f;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  header {
    background: url('../imgs/back.webp');
    box-shadow: 0px -18px 150px 120px #100D0D inset;
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  
  nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: 100%;
  }
  
  .nav-logo img {
    height: 75px;
  }
  
  .nav-links ul {
    display: flex;
    gap: 30px;
    list-style: none;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .discord-button {
    background-color: #5865f2;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .hero-title {
    color: #FFF;
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    text-transform: capitalize;
    padding-bottom: 100px;
  }


.rules-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  text-align: left;
}

.rules-container {
  max-width: 800px;
  width: 100%;
  color: white;
  font-size: 1.05rem;
  line-height: 1.8;
}

.rules-container h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #29e7cd;
  margin-top: 40px;
  margin-bottom: 15px;
}

.rules-container p {
  margin-bottom: 15px;
}

.rules-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.rules-container li {
  margin-bottom: 10px;
}
  /* Footer */
  footer {
    padding: 0;
    margin-top: 50px;
    font-size: 0.9rem;
  }
  
  .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .footer-top {
    background-color: #29e7cd;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 30px;
  }
  
  .footer-icons {
    display: flex;
    gap: 20px;
  }
  
  .footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s;
  }
  
  .footer-icon:hover {
    transform: scale(1.2);
  }
  
  .footer-bottom {
    background-color: #0f0f0f;
    color: #ccc;
    text-align: left;
    padding: 10px;
    font-weight: 500;
  }
  