body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, sans-serif;
      background-image: url("../Images/background2.png");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      position: relative;
      overflow: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: -1;
    }

    .container {
      max-width: 850px;
      margin: auto;
      padding: 50px 20px;
    }

    .section {
      background-color: rgba(0, 0, 0, 0.85);
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 40px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    h1, h2 {
      text-align: center;
      color: #ffd740;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 3rem;
    }

    h2 {
      font-size: 2rem;
    }

    p {
      font-size: 1.1rem;
      line-height: 1.7;
      text-align: center;
      color: #f1f1f1;
    }

    .discord-contact {
      background-color: #7289da;
      color: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin: 30px auto 0;
      padding: 20px;
      max-width: 450px;
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
    }

    .discord-logo {
      width: 60px;
      height: 60px;
    }

    .discord-text {
      font-size: 1.5rem;
      font-weight: bold;
    }

    @media (max-width: 600px) {
      .discord-contact {
        flex-direction: column;
        padding: 20px;
      }
    }