:root {
  --navy: #1a3c6e;
  --accent: #4a90d9;
  --gold: #f5a623;
  --bg: #f8fafc;
  --text: #1a3c6e;
  --muted: #64748b;
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 48px;
}

.links-container {
  width: 100%;
  max-width: 480px;
  padding: 0 20px 0;
}

/* Header */
.links-header {
  text-align: center;
  padding: 40px 0 32px;
  margin-bottom: 4px;
}

.links-logo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto 16px;
  display: block;
  object-fit: contain;
}

.links-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.links-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 360px;
  margin: 0 auto 16px;
}

.links-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.links-pill {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(245, 166, 35, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  letter-spacing: 0.2px;
}

/* Section labels */
.links-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 10px;
}

/* Card group */
.links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Card */
.link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.link-card:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 60, 110, 0.18);
  border-color: var(--navy);
}

.link-card:hover .card-sub {
  color: rgba(255, 255, 255, 0.7);
}

.link-card:hover .card-arrow {
  color: var(--gold);
}

.card-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

.card-text {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}

.card-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.18s ease;
}

.card-arrow {
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 4px;
  transition: color 0.18s ease;
}

/* Footer */
.links-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

.links-footer a {
  color: var(--accent);
  text-decoration: none;
}

.links-footer a:hover {
  text-decoration: underline;
}

/* WhatsApp share layout */
.link-card-wrap {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.link-card-wrap .link-card {
  flex: 1;
  min-width: 0;
}

.card-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: background 0.15s ease;
}

.card-wa-btn:hover {
  background: rgba(37, 211, 102, 0.2);
}

/* Top Share Orabo button */
.links-wa-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  margin: 20px 0 4px;
  transition: background 0.15s ease;
}

.links-wa-share:hover {
  background: #1da851;
}
