  .footer {
    background-color: #151122;
    color: #ffffff;
    padding: 30px 0 20px;
    font-family: 'Poppins', sans-serif;
    margin-top: 60px;
    border-top: 3px solid #F800A1;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .footer-section {
    flex: 1;
    margin: 10px;
    min-width: 220px;
  }

  .footer-section h3 {
    border-bottom: 2px solid #F597D4;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #F597D4;
  }

  .footer-section p,
  .footer-section a {
    font-size: 14px;
    color: #C4C4C4;
    text-decoration: none;
    line-height: 1.6;
  }

  .footer-section a:hover {
    color: #8CE3F5;
  }

  .footer-links p {
    margin: 10px 0;
  }

  .footer-links p::after {
    content: " â€?";
    color: #C4C4C4;
  }

  .footer-links p:last-child::after {
    content: "";
  }

  .discord-button {
    display: inline-block;
    background: linear-gradient(135deg, #8CE3F5, #F800A1);
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 0 12px #F800A1;
  }

  .discord-button:hover {
    background: linear-gradient(135deg, #F800A1, #8CE3F5);
    box-shadow: 0 0 20px #8CE3F5;
  }

  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 30px auto 0;
    padding: 15px 30px;
    max-width: 1200px;
    background-color: #1b152c;
    box-shadow: 0 0 10px rgba(248, 0, 161, 0.3);
    font-size: 12px;
    color: #B0BEC5;
    border-radius: 12px;
  }

  .footer-bottom a {
    color: #B0BEC5;
    text-decoration: none;
  }

  .footer-bottom a:hover {
    color: #F800A1;
  }