/* --------------------------------------------------------------------------
   WORLD CLUB - Web3 & Crypto Profile Hub Design System
   Inspired by BlockchainExpress Linktree Aesthetic & Modern Glassmorphism
   -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* Color Tokens - Default Light Mode */
  --bg-frame: #eceef1;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-topbar: rgba(255, 255, 255, 0.65);
  --border-color: rgba(0, 0, 0, 0.08);
  --border-topbar: rgba(255, 255, 255, 0.4);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-gold: #F0B90B;
  --accent-gradient: linear-gradient(135deg, #2563eb, #7c3aed);
  --accent-gradient-hover: linear-gradient(135deg, #1d4ed8, #6d28d9);
  
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --card-shadow-hover: 0 20px 35px -10px rgba(37, 99, 235, 0.15), 0 8px 20px -6px rgba(0, 0, 0, 0.06);
  --modal-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 9999px;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Palette Toggle */
[data-theme="dark"] {
  --bg-frame: #0b0f19;
  --bg-card: #151c2c;
  --bg-card-hover: #1e293b;
  --bg-topbar: rgba(21, 28, 44, 0.75);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-topbar: rgba(255, 255, 255, 0.12);
  
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;
  
  --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3), 0 4px 12px -2px rgba(0, 0, 0, 0.2);
  --card-shadow-hover: 0 20px 35px -10px rgba(59, 130, 246, 0.25), 0 8px 20px -6px rgba(0, 0, 0, 0.3);
}

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

html {
  font-family: var(--font-body);
  background-color: var(--bg-frame);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-x: hidden;
  transition: background-color var(--transition-normal);
}

/* SVG Vector Utility Classes */
.brand-svg-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.service-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-svg-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.svg-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

/* Ambient Background Graphic */
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  transition: opacity var(--transition-normal);
}

.bg-orb-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(139, 92, 246, 0.1) 70%);
}

.bg-orb-2 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: -50px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, rgba(59, 130, 246, 0.05) 70%);
}

/* Top Glassmorphic Navigation Bar */
.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 580px;
  height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-topbar);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border-topbar);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.08);
  z-index: 100;
  transition: all var(--transition-normal);
}

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

.brand-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

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

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.icon-btn:hover {
  background: var(--accent-blue);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-1px);
}

/* Main Profile Container Card */
.app-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin: 84px auto 40px;
  padding: 0 16px;
}

.profile-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

/* Profile Header Section */
.profile-avatar-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.avatar-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 3px;
  background: var(--accent-gradient);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
  animation: pulse-ring 4s ease-in-out infinite alternate;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25); }
  100% { box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4); }
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background-color: #0b0f19;
  border: 2px solid var(--bg-card);
}

.verified-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  background: #1d9bf0;
  border: 3px solid var(--bg-card);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.profile-title-group {
  text-align: center;
  margin-bottom: 12px;
}

.profile-name {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.handle-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.1);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}

.profile-bio {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: center;
  max-width: 460px;
  margin-bottom: 20px;
}

.bio-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  max-width: 480px;
  padding: 12px 16px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

[data-theme="dark"] .stats-bar {
  background: rgba(255, 255, 255, 0.02);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

/* --------------------------------------------------------------------------
   Founder & Owner Spotlight Card
   -------------------------------------------------------------------------- */
.owner-spotlight-card {
  width: 100%;
  margin-bottom: 28px;
}

.owner-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.08), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(240, 185, 11, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(240, 185, 11, 0.08);
  transition: all var(--transition-fast);
}

.owner-card-inner:hover {
  border-color: rgba(240, 185, 11, 0.5);
  box-shadow: 0 8px 24px rgba(240, 185, 11, 0.15);
}

.owner-avatar-container {
  position: relative;
  flex-shrink: 0;
}

.owner-img {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.owner-gold-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #F0B90B, #d9a406);
  border: 2px solid var(--bg-card);
  border-radius: 50%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.owner-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.owner-badge-tag {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #F0B90B, #d9a406);
  color: #000000;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 4px;
}

.owner-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.25;
}

.owner-subtext {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 3px 0 8px 0;
  line-height: 1.35;
}

.owner-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #229ED9;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(34, 158, 217, 0.3);
}

.owner-contact-btn:hover {
  background: #1d89be;
  transform: translateY(-1px);
}

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

.section-label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin: 8px 0 4px 4px;
  display: block;
}

/* Link Card */
.link-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
  cursor: pointer;
}

.link-card:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--card-shadow-hover);
}

.link-card.featured {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(124, 58, 237, 0.06));
  border-color: rgba(59, 130, 246, 0.35);
}

.link-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: -9px;
  right: 18px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: var(--accent-gradient);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.link-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.link-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.link-text {
  display: flex;
  flex-direction: column;
}

.link-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-primary);
  line-height: 1.3;
}

.link-subtitle {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.link-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

[data-theme="dark"] .link-action-btn {
  background: rgba(255, 255, 255, 0.05);
}

.link-card:hover .link-action-btn {
  background: var(--accent-blue);
  color: #ffffff;
  transform: translateX(2px);
}

/* --------------------------------------------------------------------------
   Services Section Styling
   -------------------------------------------------------------------------- */
.services-section {
  width: 100%;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-header {
  text-align: center;
  margin-bottom: 20px;
}

.services-subtitle {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  text-decoration: none;
  color: var(--text-primary);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-info {
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.25;
}

.service-desc {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 3px;
  line-height: 1.35;
}

.service-inquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--accent-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  transition: all var(--transition-fast);
}

.service-inquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   Official Social Icon Footer Buttons
   -------------------------------------------------------------------------- */
.socials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  width: 100%;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.social-btn.tg-btn:hover {
  color: #229ED9;
  border-color: #229ED9;
  box-shadow: 0 8px 18px rgba(34, 158, 217, 0.25);
  transform: translateY(-3px) scale(1.08);
}

.social-btn.kols-btn:hover {
  color: #7c3aed;
  border-color: #7c3aed;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.3);
  transform: translateY(-3px) scale(1.08);
}

.social-btn.tg-ama-btn:hover {
  color: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 8px 18px rgba(0, 136, 204, 0.25);
  transform: translateY(-3px) scale(1.08);
}

.social-btn.twitter-btn:hover {
  color: #0f172a;
  border-color: #0f172a;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.25);
  transform: translateY(-3px) scale(1.08);
}

[data-theme="dark"] .social-btn.twitter-btn:hover {
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.2);
}

.social-btn.binance-btn:hover {
  color: #F0B90B;
  border-color: #F0B90B;
  box-shadow: 0 8px 18px rgba(240, 185, 11, 0.3);
  transform: translateY(-3px) scale(1.08);
}

.social-btn.cmc-btn:hover {
  color: #3861FB;
  border-color: #3861FB;
  box-shadow: 0 8px 18px rgba(56, 97, 251, 0.3);
  transform: translateY(-3px) scale(1.08);
}

/* Footer Tagline */
.footer-text {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-text svg, .footer-text i {
  color: #ef4444;
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  padding: 28px 24px;
  box-shadow: var(--modal-shadow);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.modal-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

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

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  border-radius: 50%;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

.qr-box {
  width: 180px;
  height: 180px;
  background: #ffffff;
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-input-group {
  display: flex;
  width: 100%;
  gap: 8px;
}

.copy-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(0, 0, 0, 0.03);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
}

[data-theme="dark"] .copy-input {
  background: rgba(255, 255, 255, 0.04);
}

.copy-btn {
  padding: 10px 18px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--accent-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.copy-btn:hover {
  opacity: 0.9;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: var(--text-primary);
  color: var(--bg-card);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toast-in 0.3s ease forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Constraints */
@media (max-width: 480px) {
  .app-wrapper {
    margin-top: 76px;
    padding: 0 12px;
  }
  
  .profile-card {
    padding: 28px 16px 24px;
    border-radius: 22px;
  }

  .profile-name {
    font-size: 1.45rem;
  }

  .owner-card-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .owner-details {
    align-items: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .link-card {
    padding: 12px 14px;
  }

  .link-icon-box {
    width: 38px;
    height: 38px;
  }

  .brand-svg-icon {
    width: 20px;
    height: 20px;
  }
}
