body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0d0d0d;
    color: #f0f0f0;
  }
  
  header.banner {
    background: url(Banner.png) center/cover no-repeat;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .logo {
    height: 50px;
  }
  
  .nav-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #7289da;
  }
  
  .discord-button {
    background: #7289da;
    padding: 8px 15px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .discord-button:hover {
    background: #5b6fb2;
  }
  
  .hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #bbb;
  }
  
  .cta-button {
    margin-top: 20px;
    display: inline-block;
    background: #ffffff;
    color: #1f1f1f;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  
  .cta-button:hover {
    background: #7289da;
    color: white;
  }
  
  .info-section {
    padding: 60px 20px;
    text-align: center;
    background: #151515;
    margin-top: 20px;
    border-radius: 10px;
    margin: 20px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    background: #111;
    margin-top: 20px;
  }
  