* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(135deg, #000b3a, #5d48a7, #410155);
  font-family: Helvetica, sans-serif;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

h1 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 2.5em;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: none;
  text-shadow: none;
}

.apps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.app {
  margin: 20px;
}

.app-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.app-link:hover,
.app-link:focus {
  transform: scale(1.05);
  filter: brightness(1.2);
  outline: none;
}

.app-link:hover {
  background: none;
  cursor: pointer;
}

.app-link img {
  width: 48px;
  height: auto;
  border-radius: 0;
}

.app-link span {
  font-size: 1.2em;
}

@media (max-width: 600px) {
  .apps {
    flex-direction: column;
    gap: 20px;
  }

  h1 {
    font-size: 2em;
  }
}

.header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}

.header-logo {
  width: 48px;
  height: auto;
  border-radius: 6px;
  vertical-align: middle;
  margin-bottom: 30px;
  display: inline-block;
}

/* Layout for app link + copy button and message */
.app-link-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

/* Styling for the custom share button */
.copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Styling for the copy message */
.copy-message {
  font-size: 0.9em;
  color: #fff;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  right: -70px; /* Adjust as needed */
  white-space: nowrap;
}

.copy-message.show {
  opacity: 1;
  transform: translateX(0);
}