
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(to bottom, #000000 0%, #000000 40%, #333333 70%, #555555 100%);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      color: #fff;
    }

    .top-section {
      background-color: #000;
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8em;
      font-weight: bold;
    }

    header {
      padding: 30px 20px 10px;
      text-align: center;
    }

    h1 {
      font-size: 2.0em;
      margin: 0;
      animation: fadeIn 2s ease-in-out;
    }

    .button-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 30px 20px;
    }

    .fancy-button {
      background: #ffffff22;
      border: 2px solid #fff;
      color: #fff;
      font-size: 1.2em;
      padding: 15px 30px;
      border-radius: 30px;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .fancy-button:hover {
      background: #fff;
      color: #000;
      box-shadow: 0 0 15px #fff;
    }

    .fancy-button::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .fancy-button:hover::after {
      left: 100%;
    }
img {
  max-width: 100%;
  height: auto;
}
    footer {
      margin-top: auto;
      background-color: #111;
      color: #ccc;
      text-align: center;
      padding: 20px 10px;
    }

    .social-icons {
      margin: 10px 0;
    }

    .social-icons a {
      color: #ccc;
      margin: 0 10px;
      font-size: 1.4em;
      text-decoration: none;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #fff;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
      .fancy-button {
        font-size: 1em;
        padding: 12px 24px;
      }

      .social-icons a {
        font-size: 1.2em;
      }
    }
