body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff8f4;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
  text-align: center;
}

.share-wrapper {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #fff3e0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h1 {
  font-size: 2rem;
  color: #795548;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 1.4rem;
  color: #5e3e36;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.qr-code {
  width: 280px;
  max-width: 90vw;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

p {
  font-size: 1.2rem;
  margin-top: 1rem;
  color: #555;
  max-width: 90%;
}

.share-link {
  display: block;
  margin: 0.5rem auto 1rem;
  font-size: 1rem;
  color: #f95556;
  text-decoration: underline;
}

.copy-button {
  background-color: #f95556;
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background 0.3s ease;
}

.copy-button:hover {
  background-color: #d94448;
}

.divider {
  margin: 2rem auto;
  width: 60%;
  border: none;
  border-top: 1px solid #e0cfc2;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: #fff;
  background-color: #f95556;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background-color: #d94448;
  transform: scale(1.05);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.email { background-color: #5e3e36; }
.social-icon.whatsapp { background-color: #25D366; }
.social-icon.sms { background-color: #6d4c41; }

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .qr-code {
    width: 320px;
  }

  p {
    font-size: 1.3rem;
  }
}
