/* ==========================================================================
   JL Creative Media - Modern Link Tree & Interactive Catalog Design System
   Palette: Deep Forest Green (#1B3B2B), Warm Cream (#FAF5ED), Gold Accent (#C89B3C)
   ========================================================================== */

:root {
  /* Colors */
  --bg-main: #FAF5ED;
  --bg-card: #FFFFFF;
  --bg-subtle: #F4EFE6;
  --bg-forest: #1B3B2B;
  --bg-forest-light: #254D39;
  --bg-forest-dark: #12291D;
  
  --text-main: #1A241E;
  --text-muted: #5B6B60;
  --text-light: #F4EFE6;
  
  --primary-green: #1B3B2B;
  --accent-gold: #C89B3C;
  --accent-gold-hover: #D9A948;
  --accent-gold-light: #FFF8EB;
  --accent-gold-border: rgba(200, 155, 60, 0.35);
  
  --border-subtle: rgba(27, 59, 43, 0.1);
  --border-hover: rgba(200, 155, 60, 0.5);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(27, 59, 43, 0.04);
  --shadow-md: 0 8px 24px rgba(27, 59, 43, 0.08);
  --shadow-lg: 0 16px 40px rgba(27, 59, 43, 0.12);
  --shadow-gold: 0 8px 24px rgba(200, 155, 60, 0.25);
  --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(200, 155, 60, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(27, 59, 43, 0.04) 0%, transparent 50%);
  background-attachment: fixed;
  padding-bottom: 60px;
}

/* Background Pattern / Texture */
.bg-decor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-decor::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 59, 43, 0.08) 0%, transparent 70%);
}

.bg-decor::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
}

/* Container */
.app-container {
  width: 100%;
  max-width: 560px;
  padding: 20px 20px 40px;
  margin: 0 auto;
}

/* Header Navbar */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 18px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--primary-green);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.btn-icon:hover {
  background: var(--primary-green);
  color: var(--bg-main);
  border-color: var(--primary-green);
  transform: translateY(-1px);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-toggle:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold-light);
}

/* Hero Profile Card */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.avatar-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.avatar-img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FFFFFF;
  box-shadow: var(--shadow-lg), 0 0 0 2px var(--accent-gold);
  transition: var(--transition-normal);
}

.avatar-wrapper:hover .avatar-img {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--accent-gold), var(--shadow-gold);
}

.badge-status {
  position: absolute;
  bottom: 2px;
  right: -2px;
  background: var(--primary-green);
  color: var(--bg-main);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 2px solid #FFFFFF;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.badge-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.profile-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.profile-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-subtle);
  color: var(--primary-green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid var(--border-subtle);
}

.profile-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.profile-bio p {
  margin-bottom: 4px;
}

.profile-bio strong {
  color: var(--text-main);
}

.flag-badge {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
}

/* Quick Social Icons Row */
.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--primary-green);
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary-green);
  color: var(--accent-gold);
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Banner Note */
.banner-note {
  background: var(--primary-green);
  color: var(--bg-main);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--accent-gold-border);
}

.banner-note::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(200, 155, 60, 0.15) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(30deg); }
  20%, 100% { transform: translateX(100%) rotate(30deg); }
}

.banner-note span {
  position: relative;
  z-index: 1;
  font-style: italic;
  letter-spacing: 0.01em;
}

.banner-note strong {
  color: var(--accent-gold);
  font-style: normal;
}

/* Section Divider / Header */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 16px;
}

.section-label-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-green);
  white-space: nowrap;
}

.section-label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-subtle), transparent);
}

/* Links Stack / Grid */
.links-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* Link Card */
.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.link-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold-border);
}

.link-card-primary {
  background: var(--primary-green);
  color: #FFFFFF;
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.link-card-primary:hover {
  background: var(--bg-forest-light);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--accent-gold-hover);
}

.link-card-primary .link-title {
  color: #FFFFFF;
}

.link-card-primary .link-desc {
  color: rgba(255, 255, 255, 0.85);
}

.link-card-primary .link-icon {
  background: var(--accent-gold);
  color: var(--primary-green);
}

.link-card-featured {
  border: 1.5px solid var(--accent-gold);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-gold-light) 100%);
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-subtle);
  color: var(--primary-green);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.link-card:hover .link-icon {
  background: var(--primary-green);
  color: var(--accent-gold);
}

.link-card-primary:hover .link-icon {
  background: #FFFFFF;
  color: var(--primary-green);
}

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

.link-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.link-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.01em;
}

.link-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--accent-gold);
  color: var(--primary-green);
  white-space: nowrap;
}

.link-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.35;
}

.link-arrow {
  font-size: 1rem;
  color: var(--accent-gold);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.link-card:hover .link-arrow {
  transform: translateX(4px);
}

/* Modals System */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 41, 29, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(20px);
  transition: var(--transition-normal);
  overflow: hidden;
}

.modal-backdrop.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--primary-green);
  color: #FFFFFF;
  border-bottom: 2px solid var(--accent-gold);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
}

.modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.modal-close:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
  font-style: italic;
}

/* Catalog Product Items in Modal */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.product-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.product-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.product-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.product-info {
  flex: 1;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed var(--border-subtle);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.btn-sm-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-green);
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-sm-whatsapp:hover {
  background: var(--accent-gold);
  color: var(--primary-green);
}

/* Calculator Modal Form */
.calc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-item:hover {
  border-color: var(--accent-gold-border);
}

.calc-item.selected {
  border-color: var(--accent-gold);
  background: var(--accent-gold-light);
}

.calc-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-green);
  cursor: pointer;
}

.calc-label-group {
  flex: 1;
  margin-left: 12px;
}

.calc-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
}

.calc-item-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.calc-summary {
  margin-top: 20px;
  padding: 16px;
  background: var(--primary-green);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-total-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.calc-total-amount {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.btn-full-whatsapp {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: var(--accent-gold);
  color: var(--primary-green);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-fast);
}

.btn-full-whatsapp:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
}

/* QR Code Modal */
.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.qr-canvas {
  width: 220px;
  height: 220px;
  padding: 14px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--accent-gold);
  margin-bottom: 16px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-green);
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

/* Footer */
.footer {
  margin-top: 36px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer strong {
  color: var(--primary-green);
}

/* Plans / Pricing Cards */
.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.plan-card-popular {
  border: 2px solid var(--accent-gold);
  background: var(--primary-green);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.plan-card-popular:hover {
  box-shadow: var(--shadow-lg), 0 12px 32px rgba(200, 155, 60, 0.35);
}

.plan-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--primary-green);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 18px;
  border-radius: 0 0 10px 10px;
}

.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  margin-top: 8px;
  background: var(--bg-subtle);
  color: var(--primary-green);
}

.plan-card-popular .plan-icon {
  background: var(--accent-gold);
  color: var(--primary-green);
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2px;
}

.plan-card-popular .plan-name {
  color: #FFFFFF;
}

.plan-tagline {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.plan-card-popular .plan-tagline {
  color: rgba(255, 255, 255, 0.75);
}

.plan-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.plan-price-period {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  width: 100%;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-main);
  border-bottom: 1px dashed var(--border-subtle);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-card-popular .plan-features li {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.plan-features li i {
  color: var(--accent-gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-cta {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
}

.plan-cta-default {
  background: var(--primary-green);
  color: #FFFFFF;
  border: 1px solid var(--accent-gold);
}

.plan-cta-default:hover {
  background: var(--bg-forest-light);
  transform: translateY(-1px);
}

.plan-cta-popular {
  background: var(--accent-gold);
  color: var(--primary-green);
  box-shadow: var(--shadow-gold);
}

.plan-cta-popular:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-1px);
}

/* Responsiveness */
@media (max-width: 480px) {
  .app-container {
    padding: 14px 14px 30px;
  }
  .profile-title {
    font-size: 1.5rem;
  }
  .link-card {
    padding: 14px 16px;
  }
  .link-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}
