    body {
      background: url('../img/trip1.png') no-repeat center top fixed;
      background-size: cover;
      color: white;
      font-family: Arial, sans-serif;
      text-align: center;
      padding: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      flex-direction: column;
    }

    @media (max-width: 640px) {
      body {
        background: url('../img/trip1.png') no-repeat center top fixed;
        background-size: cover;
      }
      .container {
        background: rgba(0, 0, 0, 0.5);
      }
      .profile-img {
        display: none !important;
      }
      .link-button {
        font-size: 14px;
        padding: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }

    .container {
      max-width: 400px;
      margin: 0 auto;
      background: rgba(0, 0, 0, 0.6);
      padding: 20px;
      border-radius: 10px;
    }

    .profile-img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      margin: 20px auto;
      display: block;
      object-fit: cover;
      border: 3px solid white;
    }

    h1 {
      font-size: 26px;
      font-weight: bold;
      letter-spacing: 1px;
    }

    p {
      font-size: 14px;
      margin-bottom: 20px;
    }

    .highlight {
      color: #FFD700;
      font-weight: bold;
    }

    .link-button {
      background: rgba(255, 255, 255, 0.5);
      display: block;
      color: #000;
      padding: 15px;
      margin: 10px auto;
      border-radius: 30px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      width: 90%;
      max-width: 350px;
      box-shadow: 5px 5px 0px black;
      transition: all 0.3s ease-in-out;
    }

    .link-button:hover {
      transform: translateY(-3px);
      box-shadow: 8px 8px 0px black;
    }