/* ============================================================
   WANDR – Master Stylesheet  |  White BG + Sky Blue Primary
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --primary-light: #EFF6FF;
  --secondary: #F97316;
  --accent: #10B981;
  --purple: #8B5CF6;
  --pink: #EC4899;
  --danger: #EF4444;
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --border: #E2E8F0;
  --text: #0F172A;
  --muted: #64748B;
  --light: #CBD5E1;
  --nav-h: 64px;
  --radius: 16px;
  --shadow: 0 2px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* Dark Mode */
body.dark {
  --bg: #0F172A;
  --surface: #1E293B;
  --border: #334155;
  --text: #F1F5F9;
  --muted: #94A3B8;
  --light: #475569;
  --primary-light: #0C2340;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', system-ui, sans-serif; background: var(--bg); color: var(--text); min-height: 100vh; transition: background 0.3s, color 0.3s; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
::-webkit-scrollbar { width: 5px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ============================================================ TOP NAV */
.topnav {
  position: sticky; top: 0; z-index: 999;
  background: var(--bg); border-bottom: 1px solid var(--border);
  height: var(--nav-h); box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.topnav-inner {
  max-width: 1400px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 20px; padding: 0 20px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; background: linear-gradient(135deg, #0EA5E9, #F97316); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 20px; color: var(--text); letter-spacing: -0.5px; line-height: 1; }
.logo-sub { font-size: 9px; font-weight: 700; color: var(--muted); letter-spacing: 1.5px; }

/* Search */
.nav-search-wrap { flex: 1; max-width: 340px; }
.nav-search-form { position: relative; }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 14px; }
.nav-search-input { width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: 24px; padding: 9px 16px 9px 38px; font-family: inherit; font-size: 13px; outline: none; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
.nav-search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); background: var(--bg); }

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 12px; border-radius: 12px; color: var(--muted); transition: all 0.2s; font-size: 12px; font-weight: 700; position: relative; cursor: pointer; }
.nav-link:hover { background: var(--primary-light); color: var(--primary); }
.nav-link.active { color: var(--primary); background: var(--primary-light); }
.nav-link-icon { font-size: 20px; }
.nav-link-label { font-size: 10px; font-weight: 700; }
.badge-dot { position: absolute; top: 4px; right: 4px; background: #EF4444; color: white; border-radius: 10px; padding: 1px 5px; font-size: 10px; font-weight: 800; border: 2px solid var(--bg); min-width: 18px; text-align: center; }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* Notification */
.nav-notif-wrap { position: relative; }
.nav-notif-btn { background: var(--surface); border: 1.5px solid var(--border); border-radius: 12px; width: 40px; height: 40px; cursor: pointer; font-size: 18px; position: relative; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.nav-notif-btn:hover { border-color: var(--primary); background: var(--primary-light); }
.notif-dropdown { position: absolute; right: 0; top: calc(100% + 8px); width: 340px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; display: none; z-index: 1000; }
.notif-dropdown.open { display: block; }
.notif-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.notif-item { display: flex; gap: 10px; padding: 12px 16px; transition: background 0.15s; border-bottom: 1px solid var(--surface); }
.notif-item:hover { background: var(--surface); }
.notif-item.unread { background: var(--primary-light); }
.notif-avatar { width: 36px; height: 36px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.notif-body { flex: 1; }
.notif-msg { font-size: 13px; line-height: 1.5; }
.notif-time { font-size: 11px; color: var(--muted); margin-top: 2px; }
.notif-view-all { display: block; text-align: center; padding: 12px; font-size: 13px; font-weight: 700; color: var(--primary); border-top: 1px solid var(--border); }

/* ============================================================ PROFILE DROPDOWN */
.profile-dropdown-wrap { position: relative; }
.profile-trigger { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1.5px solid var(--border); border-radius: 30px; padding: 5px 12px 5px 5px; cursor: pointer; transition: all 0.2s; }
.profile-trigger:hover { border-color: var(--primary); background: var(--primary-light); }
.profile-trigger-avatar { width: 32px; height: 32px; background: linear-gradient(135deg, var(--primary), var(--purple)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 12px; overflow: hidden; flex-shrink: 0; }
.profile-trigger-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-trigger-name { font-size: 13px; font-weight: 700; color: var(--text); }

.profile-dropdown { position: absolute; right: 0; top: calc(100% + 8px); width: 280px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; display: none; z-index: 1000; }
.profile-dropdown.open { display: block; animation: dropIn 0.15s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

.pd-header { display: flex; gap: 12px; align-items: center; padding: 16px; background: linear-gradient(135deg, var(--primary-light), #F0FFFE); }
.pd-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--purple)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 16px; position: relative; flex-shrink: 0; }
.pd-verified { position: absolute; bottom: -2px; right: -2px; background: var(--primary); width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; color: white; border: 2px solid var(--bg); }
.pd-info { flex: 1; overflow: hidden; }
.pd-name { font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.pd-username { font-size: 12px; color: var(--muted); }
.pd-loc { font-size: 11px; color: var(--muted); margin-top: 1px; }
.premium-mini { background: linear-gradient(135deg, #F59E0B, #D97706); color: white; padding: 1px 5px; border-radius: 5px; font-size: 9px; font-weight: 800; }

.pd-divider { height: 1px; background: var(--border); margin: 2px 0; }
.pd-wallet { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; font-size: 13px; background: var(--surface); }
.pd-section-title { padding: 8px 16px 4px; font-size: 10px; font-weight: 800; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.pd-item { display: flex; align-items: center; gap: 8px; padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--text); transition: background 0.15s; cursor: pointer; }
.pd-item:hover { background: var(--surface); color: var(--primary); }
.pd-admin { color: var(--danger) !important; font-weight: 800 !important; }
.pd-admin:hover { background: #FEF2F2 !important; }
.pd-logout { color: var(--danger) !important; }
.pd-logout:hover { background: #FEF2F2 !important; }

.pd-toggle-row { justify-content: space-between; }
.toggle-switch { width: 36px; height: 20px; background: var(--border); border-radius: 10px; position: relative; cursor: pointer; transition: background 0.2s; }
.toggle-switch.on { background: var(--primary); }
.toggle-switch::after { content: ''; position: absolute; width: 16px; height: 16px; background: white; border-radius: 50%; top: 2px; left: 2px; transition: left 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.toggle-switch.on::after { left: 18px; }

/* ============================================================ LAYOUT */
.main-wrapper { max-width: 1400px; margin: 0 auto; padding: 24px 20px; min-height: calc(100vh - var(--nav-h)); }
.page-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
.page-grid-wide { display: grid; grid-template-columns: 1fr; }
.content-col { min-width: 0; }
.sidebar-col { display: flex; flex-direction: column; gap: 16px; }

/* ============================================================ CARDS */
.card { background: var(--bg); border-radius: 20px; border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; }
.card-pad { padding: 20px; }
.card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); font-weight: 800; font-size: 15px; display: flex; justify-content: space-between; align-items: center; }

/* ============================================================ BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 18px; border-radius: 12px; font-family: inherit; font-size: 13px; font-weight: 700; cursor: pointer; border: none; transition: all 0.2s; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(14,165,233,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-danger { background: var(--danger); color: white; }
.btn-success { background: var(--accent); color: white; }
.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 9px; }
.btn-full { width: 100%; }

/* ============================================================ FORMS */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.form-control { width: 100%; background: var(--surface); border: 2px solid var(--border); border-radius: 12px; padding: 11px 16px; font-family: inherit; font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s; }
.form-control:focus { border-color: var(--primary); background: var(--bg); box-shadow: 0 0 0 3px rgba(14,165,233,0.1); }
select.form-control { cursor: pointer; }

/* ============================================================ TAGS / BADGES */
.tag { background: var(--primary-light); color: var(--primary); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; display: inline-block; }
.badge { display: inline-flex; align-items: center; gap: 3px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 2px 8px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-green { background: linear-gradient(135deg, var(--accent), #059669); }
.badge-orange { background: linear-gradient(135deg, var(--secondary), #EA580C); }
.badge-purple { background: linear-gradient(135deg, var(--purple), #6D28D9); }
.verified-check { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; background: var(--primary); border-radius: 50%; color: white; font-size: 9px; }
.premium-badge { background: linear-gradient(135deg, #F59E0B, #D97706); color: white; padding: 2px 8px; border-radius: 8px; font-size: 10px; font-weight: 800; }

/* ============================================================ FLASH MESSAGES */
.flash-msg { padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; margin-bottom: 16px; transition: opacity 0.5s; }
.flash-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.flash-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.flash-info { background: var(--primary-light); color: #0369A1; border: 1px solid #BAE6FD; }

/* ============================================================ STORY RING */
.story-ring { background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 2.5px; border-radius: 50%; }
.story-ring-inactive { background: var(--border); padding: 2.5px; border-radius: 50%; }
.story-inner { background: var(--bg); border-radius: 50%; padding: 2px; }

/* ============================================================ POST CARD */
.post-card { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); margin-bottom: 20px; overflow: hidden; }
.post-header { display: flex; align-items: center; gap: 12px; padding: 14px 18px; }
.post-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 16px; overflow: hidden; flex-shrink: 0; }
.post-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-user-name { font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.post-meta { font-size: 12px; color: var(--muted); display: flex; gap: 6px; align-items: center; margin-top: 1px; }
.post-image { width: 100%; max-height: 500px; object-fit: cover; display: block; }
.post-actions { display: flex; align-items: center; padding: 10px 18px; gap: 4px; border-top: 1px solid var(--surface); }
.post-action-btn { display: flex; align-items: center; gap: 5px; padding: 7px 10px; border-radius: 10px; cursor: pointer; background: none; border: none; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--muted); transition: all 0.15s; }
.post-action-btn:hover { background: var(--surface); color: var(--text); }
.post-action-btn.liked .like-icon { filter: none; }
.post-caption { padding: 10px 18px 14px; font-size: 14px; line-height: 1.65; }
.post-caption strong { font-weight: 800; }
.post-hashtag { color: var(--primary); }

/* ============================================================ EXPLORE GRID */
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.explore-card { border-radius: 18px; overflow: hidden; position: relative; cursor: pointer; transition: transform 0.2s; box-shadow: var(--shadow); }
.explore-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.explore-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.explore-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 40%, transparent); }
.explore-info { position: absolute; bottom: 14px; left: 14px; right: 14px; color: white; }
.explore-name { font-weight: 800; font-size: 16px; }
.explore-travelers { font-size: 12px; opacity: 0.85; }
.trending-badge { position: absolute; top: 12px; right: 12px; background: var(--secondary); color: white; border-radius: 8px; padding: 3px 9px; font-size: 10px; font-weight: 800; }

/* ============================================================ GUIDE CARD */
.guide-card { background: var(--bg); border: 1px solid var(--border); border-radius: 18px; padding: 18px; transition: all 0.2s; cursor: pointer; }
.guide-card:hover { box-shadow: 0 8px 30px rgba(14,165,233,0.15); border-color: #BAE6FD; transform: translateY(-2px); }

/* ============================================================ ADMIN LAYOUT */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: #0F172A; padding: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; flex-shrink: 0; }
.admin-logo { padding: 20px 16px; border-bottom: 1px solid #1E293B; }
.admin-nav-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: #94A3B8; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.admin-nav-item:hover, .admin-nav-item.active { background: #1E293B; color: white; }
.admin-nav-item.active { border-left: 3px solid var(--primary); }
.admin-nav-section { padding: 12px 16px 4px; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; color: #475569; text-transform: uppercase; }
.admin-main { flex: 1; background: #F8FAFC; }
.admin-topbar { background: white; border-bottom: 1px solid #E2E8F0; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 10; }
.admin-content { padding: 24px; }
.admin-stat { background: white; border-radius: 16px; padding: 20px; border: 1px solid #E2E8F0; position: relative; overflow: hidden; }
.admin-stat-icon { position: absolute; top: 14px; right: 14px; font-size: 28px; opacity: 0.15; }
.admin-stat-val { font-size: 28px; font-weight: 900; color: var(--text); }
.admin-stat-label { font-size: 12px; color: var(--muted); font-weight: 600; margin-top: 2px; }
.admin-stat-change { font-size: 12px; font-weight: 700; margin-top: 8px; display: inline-flex; align-items: center; gap: 3px; padding: 2px 8px; border-radius: 6px; }
.change-up { background: #DCFCE7; color: #166534; }
.change-down { background: #FEF2F2; color: #991B1B; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { background: #F8FAFC; padding: 10px 14px; text-align: left; font-weight: 800; color: var(--muted); border-bottom: 2px solid var(--border); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.admin-table tr:hover td { background: #FAFBFC; }
.status-pill { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.status-active { background: #DCFCE7; color: #166534; }
.status-pending { background: #FEF9C3; color: #854D0E; }
.status-banned { background: #FEF2F2; color: #991B1B; }
.status-approved { background: #DCFCE7; color: #166534; }
.status-rejected { background: #FEF2F2; color: #991B1B; }

/* ============================================================ CHART BARS */
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--primary), var(--primary-dark)); min-height: 10px; transition: height 0.4s; }
.bar.muted { background: #DBEAFE; }

/* ============================================================ PROGRESS */
.progress-bar { height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.progress-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-dark)); }

/* ============================================================ CHAT */
.chat-layout { display: grid; grid-template-columns: 300px 1fr; height: calc(100vh - var(--nav-h)); }
.chat-sidebar { border-right: 1px solid var(--border); background: var(--bg); overflow-y: auto; }
.chat-contact { display: flex; gap: 12px; padding: 14px 16px; cursor: pointer; transition: background 0.15s; border-bottom: 1px solid var(--surface); }
.chat-contact:hover, .chat-contact.active { background: var(--primary-light); }
.chat-contact-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 15px; flex-shrink: 0; position: relative; overflow: hidden; }
.chat-contact-avatar img { width: 100%; height: 100%; object-fit: cover; }
.online-dot { position: absolute; bottom: 1px; right: 1px; width: 11px; height: 11px; background: var(--accent); border-radius: 50%; border: 2px solid var(--bg); }
.chat-main { display: flex; flex-direction: column; background: var(--surface); }
.chat-topbar { background: var(--bg); border-bottom: 1px solid var(--border); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.msg-me { display: flex; justify-content: flex-end; }
.msg-them { display: flex; justify-content: flex-start; }
.bubble-me { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: 18px 18px 4px 18px; padding: 10px 14px; max-width: 65%; font-size: 14px; line-height: 1.55; }
.bubble-them { background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: 18px 18px 18px 4px; padding: 10px 14px; max-width: 65%; font-size: 14px; line-height: 1.55; }
.chat-input-bar { background: var(--bg); border-top: 1px solid var(--border); padding: 12px 20px; display: flex; gap: 10px; align-items: center; }

/* ============================================================ FOOTER */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 20px; margin-top: 40px; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--muted); font-weight: 600; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .page-grid { grid-template-columns: 1fr; }
  .sidebar-col { display: none; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { width: 60px; }
  .admin-nav-item span:not(:first-child) { display: none; }
}
@media (max-width: 640px) {
  .topnav-inner { gap: 10px; padding: 0 12px; }
  .nav-search-wrap { display: none; }
  .logo-text { display: none; }
  .main-wrapper { padding: 16px 12px; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .chat-layout { grid-template-columns: 1fr; }
}

/* ============================================================ AUTH PAGES */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #EFF6FF 0%, #F0FFFE 50%, #FFF7ED 100%); padding: 20px; }
.auth-card { background: white; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); padding: 40px; width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; margin: 16px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.social-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 11px; border: 1.5px solid var(--border); border-radius: 12px; background: white; cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600; color: var(--text); transition: all 0.2s; margin-bottom: 8px; }
.social-btn:hover { border-color: var(--primary); background: var(--primary-light); }
