/* ============================================================
   PERSONAL PROFILE SITE — STYLESHEET
   guns.lol inspired | glassmorphism | cinematic dark theme
   ============================================================ */

/* ---------- CSS RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0c;
  --text-primary: #f5f0e8;
  --text-secondary: #b0a89c;
  --text-muted: #6b6560;
  --accent: #c8a25c;
  --accent-glow: rgba(200, 162, 92, 0.25);
  --glass-bg: rgba(18, 18, 22, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(30, 30, 36, 0.7);
  --panel-bg: rgba(14, 14, 18, 0.95);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --panel-width: 440px;

  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  box-shadow:
    inset 0 0 2px rgba(200, 162, 92, 0.08),
    inset 0 0 8px rgba(0, 0, 0, 0.6);
}

/* ---------- CUSTOM CURSOR ---------- */
body.custom-cursor,
body.custom-cursor * {
  cursor: none !important;
}

.cursor-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(200, 162, 92, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease-smooth),
    height 0.25s var(--ease-smooth),
    border-color 0.25s var(--ease-smooth),
    background 0.25s var(--ease-smooth);
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: rgba(200, 162, 92, 0.9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
}

.cursor-ring.cursor-hover {
  width: 52px;
  height: 52px;
  border-color: rgba(200, 162, 92, 0.9);
  background: rgba(200, 162, 92, 0.1);
}

.cursor-ring.cursor-click {
  width: 18px;
  height: 18px;
  border-color: #f0d080;
  background: rgba(200, 162, 92, 0.3);
  transition:
    width 0.1s var(--ease-smooth),
    height 0.1s var(--ease-smooth),
    border-color 0.1s var(--ease-smooth),
    background 0.1s var(--ease-smooth);
}

/* ---------- BACKGROUND VIDEO ---------- */
.video-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0a0a0c;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.9);
}

/* ---------- DARK VIGNETTE OVERLAY ---------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.7) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(0, 0, 0, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0, 0, 0, 0.30) 0%, transparent 60%);
  pointer-events: none;
}

/* ---------- DECORATIVE BG SLOGAN ---------- */
.bg-slogan {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;

  font-family: var(--font-serif);
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.035);
  text-align: center;
  line-height: 1;
  user-select: none;

  text-shadow:
    1px 0 0 rgba(255, 0, 0, 0.02),
    -1px 0 0 rgba(0, 200, 255, 0.02);
}

/* ---------- MUTE BUTTON ---------- */
.mute-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 100;

  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    transform 0.2s var(--ease-smooth);
}

.mute-btn:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.mute-btn svg { pointer-events: none; }

/* ---------- VIEW COUNT ---------- */
.view-count {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 50;

  display: flex;
  align-items: center;
  gap: 7px;

  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.view-count svg { opacity: 0.5; }

/* ============================================================
   PROFILE SECTION (centered) — BIG SCALE
   ============================================================ */

.profile-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 24px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* Name — LARGE serif (x2 size) */
.profile-name {
  font-family: var(--font-serif);
  font-size: clamp(7rem, 18vw, 12rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;

  text-shadow:
    0 0 50px rgba(200, 162, 92, 0.35),
    0 0 100px rgba(200, 162, 92, 0.12),
    0 0 150px rgba(200, 162, 92, 0.05);

  /* Gentle breathing float */
  animation: nameFloat 6s ease-in-out infinite;
}

@keyframes nameFloat {
  0%, 100% { transform: translateY(0); }
  25%      { transform: translateY(-4px); }
  75%      { transform: translateY(3px); }
}

/* Bio — bigger, with subtle glow */
.profile-bio {
  margin-top: 14px;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  max-width: 520px;
  line-height: 1.6;

  text-shadow:
    0 0 8px rgba(200, 162, 92, 0.2),
    0 0 20px rgba(200, 162, 92, 0.06);

  /* Gentle float, delayed from name */
  animation: bioFloat 7s ease-in-out infinite;
}

@keyframes bioFloat {
  0%, 100% { transform: translateY(0); }
  30%      { transform: translateY(-2px); }
  70%      { transform: translateY(2px); }
}

/* ---------- PROFILE CARD (glassmorphism) — BIGGER ---------- */
.profile-card {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;

  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 18px 32px 18px 18px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  /* Rhythm pulse animation */
  animation: cardPulse 4s ease-in-out infinite;

  transition:
    background 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
}

@keyframes cardPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(200, 162, 92, 0); }
  50%      { transform: scale(1.02); box-shadow: 0 0 25px rgba(200, 162, 92, 0.12); }
}

.profile-card:hover {
  animation: none;
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.card-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-info {
  display: flex;
  align-items: center;
}

.card-username {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

/* ---------- SOCIAL ICONS ROW — BIGGER ---------- */
.socials-row {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #d4c8b0;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    color 0.3s var(--ease-smooth),
    transform 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #f5f0e8;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 162, 92, 0.15);
}

.social-btn svg { pointer-events: none; }

/* ============================================================
   BOOSTS TOGGLE BUTTON — PROMINENT, GLOWING, PULSING
   ============================================================ */

.boosts-toggle {
  position: fixed;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  padding: 33px 23px;
  border: 2px solid rgba(200, 162, 92, 0.5);
  border-right: none;
  border-radius: 12px 0 0 12px;
  background: rgba(20, 16, 8, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;

  box-shadow:
    -2px 0 20px rgba(200, 162, 92, 0.2),
    0 0 40px rgba(200, 162, 92, 0.06);

  cursor: pointer;

  /* Breathing pulse animation */
  animation: boostPulse 3s ease-in-out infinite;

  transition:
    background 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    color 0.3s var(--ease-smooth),
    padding-right 0.3s var(--ease-smooth),
    box-shadow 0.3s var(--ease-smooth);
}

@keyframes boostPulse {
  0%, 100% {
    box-shadow:
      -2px 0 20px rgba(200, 162, 92, 0.2),
      0 0 40px rgba(200, 162, 92, 0.06);
  }
  50% {
    box-shadow:
      -2px 0 28px rgba(200, 162, 92, 0.35),
      0 0 56px rgba(200, 162, 92, 0.12);
  }
}

.boosts-toggle:hover {
  background: rgba(36, 28, 12, 0.85);
  border-color: rgba(200, 162, 92, 0.8);
  color: #f0d080;
  padding-right: 30px;
  box-shadow:
    -4px 0 32px rgba(200, 162, 92, 0.4),
    0 0 60px rgba(200, 162, 92, 0.15);
  animation: none; /* Stop pulsing on hover for contrast */
}

.boosts-toggle-icon {
  flex-shrink: 0;
  opacity: 0.9;
  width: 18px;
  height: 18px;
}

/* ---------- BOOSTS PANEL OVERLAY ---------- */
.boosts-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-smooth);
}

.boosts-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- BOOSTS PANEL (drawer from right) ---------- */
.boosts-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: var(--panel-width);
  max-width: 100vw;
  height: 100vh;

  background: var(--panel-bg);
  border-left: 1px solid var(--glass-border);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  display: flex;
  flex-direction: column;

  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out-expo);

  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.boosts-panel.open {
  transform: translateX(0);
}

.boosts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--glass-border);
  flex-shrink: 0;
}

.boosts-header h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.boosts-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--text-secondary);

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.2s var(--ease-smooth),
    color 0.2s var(--ease-smooth);
}

.boosts-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

/* Boosts grid (scrollable) */
.boosts-grid {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px 40px;

  display: flex;
  flex-direction: column;
  gap: 16px;
}

.boosts-grid::-webkit-scrollbar { width: 4px; }
.boosts-grid::-webkit-scrollbar-track { background: transparent; }
.boosts-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

/* Empty state */
.boosts-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- BOOST CARD ---------- */
.boost-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;

  transition:
    background 0.3s var(--ease-smooth),
    border-color 0.3s var(--ease-smooth),
    transform 0.2s var(--ease-smooth);
}

.boost-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.boost-card-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  cursor: pointer;
}

.boost-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.boost-card:hover .boost-card-image img {
  transform: scale(1.04);
}

.boost-region-badge {
  position: absolute;
  top: 10px;
  right: 10px;

  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: 3px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Boost type badge (top-left on image) */
.boost-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;

  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 4px;
  padding: 3px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.boost-type-elo-boost     { color: #e0b83c; background: rgba(200, 162, 60, 0.2); border: 1px solid rgba(200, 162, 60, 0.4); }
.boost-type-net-win       { color: #5c96f0; background: rgba(70, 130, 220, 0.2); border: 1px solid rgba(70, 130, 220, 0.4); }
.boost-type-coaching      { color: #b06ae0; background: rgba(160, 80, 220, 0.2); border: 1px solid rgba(160, 80, 220, 0.4); }
.boost-type-duo-boost     { color: #44cc60; background: rgba(50, 180, 80, 0.2); border: 1px solid rgba(50, 180, 80, 0.4); }

.boost-card-body {
  padding: 16px;
}

.boost-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

/* Rank row: from → to */
.boost-rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.boost-rank-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid;
  border-radius: 6px;
  padding: 4px 12px;
  line-height: 1.3;
}

.boost-rank-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

.boost-card-desc {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.boost-card-date {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------- BOOST THUMBNAILS (multi-image) ---------- */
.boost-thumbs {
  display: flex;
  gap: 6px;
  padding: 10px 16px 0;
}

.boost-thumb {
  width: 56px;
  height: 40px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.boost-thumb:hover {
  opacity: 1;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.boost-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-smooth);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 0 20px rgba(200, 162, 92, 0.1));
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(18, 18, 22, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth);
}

.lightbox-close:hover {
  background: rgba(40, 40, 48, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Lightbox prev/next arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(18, 18, 22, 0.5);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(40, 40, 48, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ---------- NOTIFICATION CARD ---------- */
.notification-card {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 60;

  max-width: 300px;
  padding: 14px 36px 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: rgba(20, 20, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);

  will-change: transform;
  animation:
    notificationIn 0.5s var(--ease-out-expo) forwards,
    notifFloat 5s ease-in-out 0.5s infinite;

  transition: opacity 0.3s var(--ease-smooth);
}

.notification-card.hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  animation: none;
}

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

@keyframes notifFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.notification-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;

  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  pointer-events: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: color 0.2s var(--ease-smooth);
}

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

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  :root { --panel-width: 100vw; }

  .mute-btn {
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
  }

  .profile-section { padding: 60px 20px; }

  .profile-name { font-size: clamp(3.5rem, 12vw, 6rem); }
  .profile-bio { font-size: 1rem; }

  .profile-card {
    padding: 14px 24px 14px 14px;
    gap: 14px;
    border-radius: 16px;
  }

  .card-avatar {
    width: 54px;
    height: 54px;
  }

  .card-username { font-size: 1rem; }

  .socials-row { gap: 10px; margin-top: 26px; }
  .social-btn { width: 54px; height: 54px; }

  .boosts-toggle {
    padding: 24px 14px;
    font-size: 1.15rem;
    gap: 12px;
    border-radius: 10px 0 0 10px;
  }

  .boosts-toggle-icon { width: 20px; height: 20px; }

  .notification-card {
    right: 70px;
    bottom: 20px;
    max-width: 220px;
    font-size: 0.75rem;
  }

  .view-count {
    bottom: 20px;
    left: 18px;
    font-size: 0.78rem;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  .boost-card-image { height: 150px; }
}

@media (max-width: 480px) {
  .profile-name { font-size: 2.2rem; }
  .profile-bio { font-size: 0.92rem; }

  .profile-card {
    padding: 12px 20px 12px 12px;
    gap: 12px;
  }

  .card-avatar { width: 46px; height: 46px; }

  .socials-row { gap: 8px; }
  .social-btn { width: 40px; height: 40px; }

  .boosts-toggle {
    right: 6px;
    padding: 14px 8px;
    font-size: 0.78rem;
    gap: 6px;
  }

  .notification-card {
    right: 54px;
    max-width: 180px;
  }

  .boosts-header { padding: 20px 20px 14px; }
  .boosts-grid { padding: 14px 20px 30px; }

  .boost-card-image { height: 130px; }
}
