/* ==========================================================================
   pxdproject Linktree Website - Volcanic Obsidian Theme Styling
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Theme Variables & Design Tokens (Volcanic Obsidian Palette)
   -------------------------------------------------------------------------- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Exclusive Volcanic Obsidian Palette */
  --bg-primary: #050404;
  --bg-card: rgba(22, 12, 10, 0.82);
  --bg-card-hover: rgba(38, 18, 14, 0.95);
  --border-color: rgba(255, 42, 0, 0.28);
  --border-hover: rgba(255, 85, 0, 0.75);
  
  --primary-accent: #ff2a00;   /* Fiery Red */
  --secondary-accent: #ff6b00; /* Ember Orange */
  --tertiary-accent: #ff9900;  /* Flame Gold */
  
  --text-main: #ffffff;
  --text-muted: #e09f80;
  --text-sub: #f3d4c7;
  
  --glow-primary: rgba(255, 42, 0, 0.5);
  --glow-secondary: rgba(255, 107, 0, 0.4);
  
  --blob-1: #ff1a00;
  --blob-2: #990000;
  --blob-3: #ff6600;
  
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Mobile Touch Fixes
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
  user-select: none;
  outline: none !important;
}

a, button, div, span, img {
  -webkit-tap-highlight-color: transparent !important;
}

*:focus, *:active, *:focus-visible {
  outline: none !important;
  box-shadow: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 1rem 5rem 1rem;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* --------------------------------------------------------------------------
   3. Phoenix Flame & Ember Background Animations
   -------------------------------------------------------------------------- */
.bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: floatEmber 14s ease-in-out infinite alternate;
}

.blob-1 {
  top: -15%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--blob-1) 0%, transparent 70%);
}

.blob-2 {
  bottom: -5%;
  right: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--blob-2) 0%, transparent 70%);
  animation-delay: -4s;
}

.blob-3 {
  top: 35%;
  left: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--blob-3) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes floatEmber {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 35px) scale(1.12); }
  100% { transform: translate(-30px, 70px) scale(0.92); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255, 42, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 42, 0, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* --------------------------------------------------------------------------
   4. Glassmorphism Utilities
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 35px 0 rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden !important;
}

.glass-icon-btn {
  background: rgba(255, 42, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden !important;
}

.glass-icon-btn:hover, .glass-icon-btn:active {
  background: rgba(255, 42, 0, 0.3);
  transform: translateY(-2px) scale(1.05);
  border-color: var(--border-hover);
  box-shadow: 0 0 20px var(--glow-primary);
}

.brand-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--secondary-accent);
  background: rgba(255, 42, 0, 0.12);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   5. Layout & Container
   -------------------------------------------------------------------------- */
.app-container {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 2.35rem;
  position: relative;
  z-index: 1;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* --------------------------------------------------------------------------
   6. Profile Section
   -------------------------------------------------------------------------- */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 0.5rem;
}

.avatar-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 3.25rem;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3.5px solid rgba(255, 42, 0, 0.6);
  box-shadow: 0 14px 38px rgba(255, 42, 0, 0.55), 0 0 24px rgba(0,0,0,0.9);
  transition: transform var(--transition-bounce);
}

.avatar-wrapper:hover .avatar-img {
  transform: scale(1.05) rotate(2deg);
}

.avatar-ring {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent), var(--tertiary-accent));
  z-index: -1;
  filter: blur(12px);
  opacity: 0.85;
  animation: phoenixFlamePulse 3s ease-in-out infinite alternate;
}

@keyframes phoenixFlamePulse {
  0% { opacity: 0.6; transform: scale(0.96); filter: blur(9px); }
  100% { opacity: 1; transform: scale(1.08); filter: blur(15px); }
}

.phoenix-avatar-badge {
  position: absolute;
  bottom: 2px;
  right: 4px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #ff1a00, #ff6b00);
  border: 3.5px solid var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 0 18px rgba(255, 42, 0, 0.9), 0 0 28px rgba(255, 107, 0, 0.6);
  animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
  0% { transform: scale(1); box-shadow: 0 0 12px rgba(255, 42, 0, 0.8); }
  100% { transform: scale(1.1); box-shadow: 0 0 22px rgba(255, 107, 0, 1); }
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff1a00 0%, #ff5500 40%, #ff9900 80%, #ffc400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 14px rgba(255, 26, 0, 0.5));
}

.brand-quote {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffb48a;
  text-shadow: 0 0 16px rgba(255, 42, 0, 0.55);
  margin-bottom: 1.6rem;
}

/* --------------------------------------------------------------------------
   7. Featured Action Banner ("Get In Touch") - Spacious Gap
   -------------------------------------------------------------------------- */
.featured-section {
  width: 100%;
}

.glow-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.55rem 1.85rem;
  display: flex;
  align-items: center;
  gap: 1.85rem; /* Increased space between icon and text */
  text-decoration: none;
  color: var(--text-main);
  background: linear-gradient(135deg, rgba(255, 26, 0, 0.35), rgba(153, 0, 0, 0.25), rgba(255, 107, 0, 0.25));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 66, 0, 0.5);
  box-shadow: 0 12px 35px rgba(255, 26, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  overflow: hidden !important;
  transition: transform var(--transition-bounce), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.glow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.75s ease;
  pointer-events: none;
}

.glow-card:hover::before, .glow-card:active::before {
  left: 100%;
}

.glow-card:hover, .glow-card:active {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--secondary-accent);
  box-shadow: 0 18px 45px var(--glow-primary), 0 0 25px var(--glow-secondary);
}

.featured-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ff1a00, #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 26, 0, 0.7);
}

.featured-content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.featured-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--secondary-accent);
  margin-bottom: 0.25rem;
}

.featured-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-arrow {
  font-size: 1.35rem;
  color: var(--secondary-accent);
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
  margin-left: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-card:hover .featured-arrow, .glow-card:active .featured-arrow {
  transform: translateX(3px);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   8. Link Buttons List Section - Increased Logo to Text Spacing
   -------------------------------------------------------------------------- */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-color), transparent);
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.link-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.85rem; /* Generous space between logo icon and bold text */
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  overflow: hidden !important;
  transition: all var(--transition-bounce);
  cursor: pointer;
}

.link-btn:hover, .link-btn:active {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5), 0 0 18px var(--glow-primary);
}

.link-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 42, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--secondary-accent);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.link-btn:hover .link-icon, .link-btn:active .link-icon {
  transform: scale(1.08);
  background: rgba(255, 42, 0, 0.25);
}

.link-icon.instagram { color: #e1306c; }
.link-icon.discord { color: #5865f2; }
.link-icon.kofi { color: #ff5e5b; }
.link-icon.email { color: var(--secondary-accent); }

.link-icon img, .social-icon img, .share-social-btn img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  pointer-events: none;
}

.kofi-icon-img {
  width: 26px !important;
  height: 26px !important;
  display: block;
}

.kofi-social-img {
  width: 22px !important;
  height: 22px !important;
  display: block;
}

.kofi-btn-img {
  width: 18px !important;
  height: 18px !important;
  display: block;
}

.link-text-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.link-label {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800; /* Crisp bold text */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.chevron {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-btn:hover .chevron, .link-btn:active .chevron {
  transform: translateX(3px);
  color: var(--secondary-accent);
}

.highlight-link {
  border-color: rgba(255, 107, 0, 0.45);
  background: linear-gradient(135deg, rgba(22, 12, 10, 0.85), rgba(255, 42, 0, 0.22));
}

/* --------------------------------------------------------------------------
   9. Footer & Social Bar
   -------------------------------------------------------------------------- */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.social-bar {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden !important;
}

.social-icon:hover, .social-icon:active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  border-color: var(--secondary-accent);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 0 20px var(--glow-primary);
}

.footer-credit {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.sub-credit {
  font-size: 0.78rem;
  margin-top: 0.25rem;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   10. Toast Notification Component
   -------------------------------------------------------------------------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(22, 12, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--primary-accent);
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85), 0 0 30px var(--glow-primary);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.35s ease;
  max-width: 90vw;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  color: var(--secondary-accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Modal Window Component
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 4, 4, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-backdrop.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-color: rgba(255, 42, 0, 0.4);
  transform: scale(1);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden !important;
}

.modal-backdrop.hidden .modal-card {
  transform: scale(0.9);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-accent);
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.9rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 0.2rem;
}

.close-btn:hover, .close-btn:active {
  color: var(--primary-accent);
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-sub);
}

.qr-code-wrapper {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  width: 180px;
  height: 180px;
  margin: 0 auto;
  box-shadow: 0 0 25px var(--glow-primary);
}

.qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.share-input-group {
  display: flex;
  gap: 0.5rem;
}

.share-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  color: var(--text-main);
  font-size: 0.88rem;
  outline: none;
  min-width: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.btn-primary:hover, .btn-primary:active {
  opacity: 0.95;
  transform: scale(1.02);
}

.share-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.share-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-social-btn:hover, .share-social-btn:active {
  transform: translateY(-2px);
}

.share-social-btn.instagram:hover, .share-social-btn.instagram:active {
  background: rgba(225, 48, 108, 0.35);
  border-color: #e1306c;
}

.share-social-btn.discord:hover, .share-social-btn.discord:active {
  background: rgba(88, 101, 242, 0.35);
  border-color: #5865f2;
}

.share-social-btn.kofi:hover, .share-social-btn.kofi:active {
  background: rgba(255, 94, 91, 0.35);
  border-color: #ff5e5b;
}

.share-social-btn.email:hover, .share-social-btn.email:active {
  background: rgba(255, 107, 0, 0.35);
  border-color: var(--secondary-accent);
}

/* --------------------------------------------------------------------------
   12. Responsive Mobile Phone Optimizations (Max-width 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  body {
    padding: 1.5rem 0.85rem 4rem 0.85rem;
  }

  .app-container {
    gap: 1.85rem;
  }

  .avatar-wrapper {
    width: 130px;
    height: 130px;
    margin-bottom: 2.2rem;
  }

  .phoenix-avatar-badge {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
    bottom: 0px;
    right: 2px;
  }
  
  .brand-title {
    font-size: 2.3rem;
    margin-bottom: 0.85rem;
  }
  
  .brand-quote {
    font-size: 1.12rem;
    margin-bottom: 1.2rem;
  }
  
  .featured-section .glow-card {
    padding: 1.25rem 1.35rem;
    gap: 1.45rem;
  }

  .featured-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .featured-content h2 {
    font-size: 1.2rem;
  }

  .featured-arrow {
    font-size: 1.2rem;
    margin-left: 0.2rem;
  }
  
  .link-btn {
    padding: 1.1rem 1.35rem;
    gap: 1.45rem; /* Increased mobile spacing between logo & text */
  }
  
  .link-icon {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }

  .link-label {
    font-size: 1.14rem;
  }

  .chevron {
    font-size: 0.9rem;
    margin-left: 0.35rem;
  }

  .toast {
    width: calc(100% - 1.75rem);
    max-width: 380px;
    bottom: max(1.25rem, env(safe-area-inset-bottom) + 0.75rem);
    padding: 0.8rem 1.2rem;
    font-size: 0.84rem;
    border-radius: 16px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.35;
  }

  .modal-card {
    width: calc(100vw - 1.75rem);
    max-width: 380px;
    padding: 1.35rem 1.15rem;
    gap: 1.1rem;
    border-radius: 20px;
  }

  .qr-code-wrapper {
    width: 155px;
    height: 155px;
    padding: 0.8rem;
  }

  .share-input-group {
    flex-direction: column;
    gap: 0.6rem;
  }

  .share-input {
    width: 100%;
    text-align: center;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.7rem;
  }

  .share-social-btn {
    font-size: 0.78rem;
    padding: 0.65rem 0.25rem;
  }
}
