/* =====================================================
   GymCrush – Super Crush  |  assets/css/super-crush.css
   ===================================================== */

/* ─── Variables ──────────────────────────────────── */
:root {
  --gsc-gold:        #FFD700;
  --gsc-gold-dark:   #FFA500;
  --gsc-gold-glow:   rgba(255, 215, 0, 0.55);
  --gsc-pink:        #FF4B8B;
  --gsc-purple:      #6C3FC5;
  --gsc-border:      linear-gradient(135deg, #a78bfa, #ec4899);
  --gsc-radius:      16px;
}

/* ─── 1. BOUTON ÉTOILE DORÉE ─────────────────────── */
.gsc-star-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gsc-gold);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(255, 165, 0, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: visible;
  outline: none;
  flex-shrink: 0;
}

.gsc-star-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 22px var(--gsc-gold-glow);
  background: #fffbea;
}

.gsc-star-btn:active {
  transform: scale(0.93);
}

/* Icône SVG étoile dans le bouton */
.gsc-star-btn .gsc-star-icon {
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 1px 3px var(--gsc-gold-dark));
  transition: transform 0.2s ease;
}

.gsc-star-btn:hover .gsc-star-icon {
  transform: rotate(-10deg) scale(1.15);
}

/* État "envoyé" */
.gsc-star-btn.gsc-sent {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-color: var(--gsc-gold-dark);
  box-shadow: 0 6px 22px var(--gsc-gold-glow);
  animation: gsc-pulse-gold 1.8s ease-in-out 3;
}

.gsc-star-btn.gsc-sent .gsc-star-icon {
  filter: drop-shadow(0 0 6px #fff) brightness(10);
}

/* ─── Injection dans la barre d'actions GymCrush ─── */
/* Remplace le bouton .message-btn ou .send-btn existant */
.gc-action-bar .gsc-star-btn,
.profile-actions .gsc-star-btn,
.swipe-actions .gsc-star-btn {
  order: 4; /* dernier bouton à droite */
}

/* ─── 2. ANIMATION D'ENVOI (burst étoiles) ──────── */
@keyframes gsc-pulse-gold {
  0%   { box-shadow: 0 0 0 0 var(--gsc-gold-glow); }
  50%  { box-shadow: 0 0 0 14px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

@keyframes gsc-star-burst {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0); }
}

.gsc-particle {
  position: fixed;
  pointer-events: none;
  font-size: 18px;
  z-index: 99999;
  animation: gsc-star-burst 0.75s ease-out forwards;
}

/* ─── 3. TOAST NOTIFICATION ──────────────────────── */
/* Étoiles SVG dans le toast Super Crush */
.gsc-toast-star {
  width:          16px;
  height:         16px;
  display:        inline-block;
  vertical-align: middle;
  margin:         0 3px;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
  animation: gsc-star-pulse 1.4s ease-in-out infinite;
}

#gsc-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--gsc-gold), var(--gsc-gold-dark));
  color: #1a1a1a;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(255, 165, 0, 0.5);
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

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

#gsc-toast.gsc-toast-error {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  color: #fff;
  box-shadow: 0 8px 28px rgba(229, 62, 62, 0.5);
}

/* ─── 4. MODAL MATCH ─────────────────────────────── */
#gsc-match-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 5, 40, 0.88);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

#gsc-match-modal.gsc-modal-open {
  opacity: 1;
  pointer-events: all;
}

.gsc-match-card {
  background: linear-gradient(160deg, #1a0533 0%, #2d1065 60%, #1a0533 100%);
  border: 2px solid rgba(167, 139, 250, 0.4);
  border-radius: 28px;
  padding: 40px 32px 36px;
  text-align: center;
  max-width: 340px;
  width: 90%;
  animation: gsc-card-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes gsc-card-in {
  from { transform: scale(0.6) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0);       opacity: 1; }
}

.gsc-match-title {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 6px;
  letter-spacing: 1px;
}

.gsc-match-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 28px;
}

.gsc-match-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.gsc-match-avatars img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gsc-gold);
  box-shadow: 0 0 20px var(--gsc-gold-glow);
}

.gsc-match-heart {
  font-size: 36px;
  animation: gsc-heartbeat 0.8s ease-in-out infinite;
}

@keyframes gsc-heartbeat {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

.gsc-match-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.gsc-match-btn {
  display: inline-block;
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gsc-gold), var(--gsc-gold-dark));
  color: #1a1a1a;
  font-weight: 800;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 22px rgba(255, 165, 0, 0.45);
  letter-spacing: 0.4px;
}

.gsc-match-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 165, 0, 0.6);
}

.gsc-match-close {
  margin-top: 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: color 0.2s;
}
.gsc-match-close:hover { color: rgba(255,255,255,0.8); }

/* ─── 5. CONFETTI MATCH ──────────────────────────── */
.gsc-confetti {
  position: fixed;
  top: -10px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 99998;
  animation: gsc-confetti-fall linear forwards;
}

@keyframes gsc-confetti-fall {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg) scale(0.4); opacity: 0; }
}

/* ─── 6. CARD SUPER CRUSH (Likes envoyés) ────────── */
.gsc-card-wrapper {
  position: relative;
  border-radius: var(--gsc-radius);
  overflow: hidden;
  border: 2.5px solid;
  border-image: linear-gradient(135deg, #a78bfa, #ec4899) 1;
  border-radius: var(--gsc-radius);
  box-shadow: 0 4px 18px rgba(107, 63, 197, 0.22);
  margin-bottom: 16px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gsc-card-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107, 63, 197, 0.3);
}

.gsc-card-wrapper img {
  width: 100%;
  display: block;
  border-radius: calc(var(--gsc-radius) - 2px);
}

/* Badge cœur en haut à gauche */
.gsc-heart-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 20px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  z-index: 2;
}

/* ─── TAMPON "SUPER CRUSH" ───────────────────────── */
.gsc-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg) scale(0);
  border: 4px solid var(--gsc-pink);
  border-radius: 6px;
  padding: 8px 14px;
  color: var(--gsc-pink);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Impact', 'Arial Black', sans-serif;
  text-shadow: 1px 1px 0 rgba(255,75,139,0.3);
  opacity: 0;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  background: rgba(255,255,255,0.05);
  white-space: nowrap;
  pointer-events: none;
  /* Effet "encre" */
  -webkit-text-stroke: 0.5px var(--gsc-pink);
}

.gsc-card-wrapper.gsc-is-super .gsc-stamp,
.gsc-stamp.gsc-stamp-visible {
  transform: translate(-50%, -50%) rotate(-12deg) scale(1);
  opacity: 1;
}

/* Tampon dans l'onglet activities (jws_members_image) */
.gsc-stamp.gsc-stamp-activities {
  font-size: 28px;
  padding: 10px 18px;
  border-width: 4px;
  border-color: var(--gsc-gold);
  color: var(--gsc-gold);
  text-shadow: 1px 1px 0 rgba(255, 165, 0, 0.35);
  -webkit-text-stroke: 0.5px var(--gsc-gold-dark);
  z-index: 5;
}

/* Overlay sombre sous le tampon */
.gsc-card-wrapper.gsc-is-super::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  border-radius: var(--gsc-radius);
  z-index: 1;
  pointer-events: none;
}

/* Nom sous la carte */
.gsc-card-name {
  padding: 10px 14px;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
}

/* ─── 7. SECTION LIKES ENVOYÉS ───────────────────── */
.gsc-likes-container {
  padding: 0 12px;
}

.gsc-likes-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 10px;
  font-weight: 800;
  font-size: 17px;
  color: #1a1a1a;
}

.gsc-likes-header .gsc-badge {
  background: var(--gsc-pink);
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.gsc-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.gsc-tab {
  flex: 1;
  padding: 9px;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.gsc-tab.active {
  background: var(--gsc-purple);
  border-color: var(--gsc-purple);
  color: #fff;
}

/* ─── 8. SECTION MATCHES ─────────────────────────── */
.gsc-matches-container {
  padding: 0 12px;
}

.gsc-matches-title {
  font-size: 22px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.gsc-matches-title span {
  color: var(--gsc-pink);
  margin-left: 8px;
}

.gsc-matches-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.gsc-matches-empty img {
  width: 200px;
  margin-bottom: 20px;
}

.gsc-matches-empty h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.gsc-matches-empty p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto 24px;
}

.gsc-home-btn {
  background: #1a1a3e;
  color: #fff;
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gsc-home-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(26,26,62,0.3);
}

/* Grid des matches */
.gsc-matches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.gsc-match-item {
  border-radius: var(--gsc-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.2s;
}

.gsc-match-item:hover { transform: scale(1.02); }

.gsc-match-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.gsc-match-item-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  padding: 20px 10px 10px;
  font-weight: 700;
  font-size: 14px;
}

.gsc-match-super-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--gsc-gold), var(--gsc-gold-dark));
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(255,165,0,0.5);
  z-index: 2;
}

/* ─── 9. ANIMATION BORDE BLEUE (carte swipée) ───── */
.gsc-swiped-blue-border {
  border: 3px solid #3b82f6 !important;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.45) !important;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* ─── 10. PAYWALL MODAL ──────────────────────────── */
/* ─── PAYWALL — BOTTOM SHEET ─── */
#gsc-paywall-modal {
  position: fixed; inset: 0;
  background: rgba(6, 4, 16, 0.88);
  z-index: 100001;
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
#gsc-paywall-modal.gsc-modal-open {
  opacity: 1; pointer-events: all;
}
/* ── Sheet wrapper ── */
.gsc-pw-sheet {
  background: #fff;
  border-radius: 28px 28px 0 0;
  padding: 10px 20px 30px;
  width: 100%; max-width: 420px;
  display: flex; flex-direction: column; align-items: center;
  animation: gsc-sheet-up 0.42s cubic-bezier(.34, 1.45, .64, 1) both;
}
@keyframes gsc-sheet-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.gsc-pw-handle {
  width: 38px; height: 4px; border-radius: 99px;
  background: #e5e7eb; margin: 0 auto 16px;
}

/* ── Star coin ── */
.gsc-star-coin {
  width: 78px; height: 78px; border-radius: 50%;
  background: linear-gradient(145deg, #FFE566, #FFAA00);
  border: 3px solid var(--gsc-gold);
  margin: auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; margin-bottom: 14px;
  box-shadow: 0 6px 24px rgba(255, 215, 0, .42);
  animation: gsc-star-float 3s ease-in-out infinite;
}
@keyframes gsc-star-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── Titles ── */
.gsc-sheet-title {
  font-size: 22px; font-weight: 900; color: #111;
  text-align: center; margin-bottom: 6px;
}
.gsc-sheet-sub {
  font-size: 11px; color: #6b7280; text-align: center;
  line-height: 1.45; max-width: 270px; margin-bottom: 18px;
}
.gsc-sheet-sub strong { color: #333; }

/* ── Pack grid ── */
.gsc-packs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 11px; width: 100%; margin-bottom: 14px;
  padding-top: 12px; overflow: visible;
}
.gsc-pack-card {
  border-radius: 17px; padding: 17px 12px 13px;
  border: 2px solid transparent;
  position: relative; display: flex; flex-direction: column; align-items: center;
  transition: transform .2s, box-shadow .22s;
  cursor: pointer; overflow: visible;
}
.gsc-pack-card:hover { transform: translateY(-3px); }
.gsc-pack-card.p1 {
  background: linear-gradient(160deg, #f5f0ff, #ece4ff);
  border-color: #9b5ef7;
}
.gsc-pack-card.p2 {
  background: linear-gradient(160deg, #fffbeb, #fff3c4);
  border-color: var(--gsc-gold);
}
/* Glow animations */
.gsc-pack-card.p1.card-glow { animation: gsc-glow-pk1 .42s ease-out forwards; }
.gsc-pack-card.p2.card-glow { animation: gsc-glow-pk2 .42s ease-out forwards; }
@keyframes gsc-glow-pk1 {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(123, 63, 242, 0); }
  30%  { transform: scale(.95);  box-shadow: 0 0 0 8px rgba(123, 63, 242, .22); }
  60%  { transform: scale(1.04); box-shadow: 0 0 0 14px rgba(123, 63, 242, .08); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(123, 63, 242, 0); }
}
@keyframes gsc-glow-pk2 {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(240, 180, 41, 0); }
  30%  { transform: scale(.95);  box-shadow: 0 0 0 8px rgba(240, 180, 41, .25); }
  60%  { transform: scale(1.04); box-shadow: 0 0 0 14px rgba(240, 180, 41, .1); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(240, 180, 41, 0); }
}
/* Flash overlay */
.gsc-pack-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 15px;
  background: rgba(255, 255, 255, 0);
  pointer-events: none; transition: background .08s; z-index: 1;
}
.gsc-pack-card.card-flash::before { background: rgba(255, 255, 255, .28); }

/* Badge "Populaire" / "Meilleur prix" */
.gsc-pack-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 3px 12px; border-radius: 99px;
  font-size: 10px; font-weight: 900; white-space: nowrap;
}
.gsc-pack-card.p1 .gsc-pack-badge { background: #7B3FF2; color: #fff; }
.gsc-pack-card.p2 .gsc-pack-badge {
  background: linear-gradient(135deg, var(--gsc-gold), var(--gsc-gold-dark)); color: #fff;
}

#gsc-pack-main-step {
  width: 100%;
}

/* Discount tag (shown when active) */
.gsc-discount-tag {
  position: absolute; top: 110px; right: 8px;
  background: #ef4444; color: #fff;
  font-size: 9px; font-weight: 900;
  padding: 2px 7px; border-radius: 99px;
  letter-spacing: 0.3px; z-index: 3;
  pointer-events: none; display: none;
}
.gsc-discount-tag.visible { display: block; }

/* Card body elements */
.gsc-pack-icon  { font-size: 28px; margin-bottom: 2px; display: block; }
.gsc-pack-label {
  font-size: 12px; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 1px;
}
.gsc-pack-card.p1 .gsc-pack-label { color: #7B3FF2; }
.gsc-pack-card.p2 .gsc-pack-label { color: #B45309; }
.gsc-pack-count {
  font-size: 28px; font-weight: 900; display: block;
  margin-bottom: 1px; line-height: 1;
}
.gsc-pack-card.p1 .gsc-pack-count { color: #6B21E8; }
.gsc-pack-card.p2 .gsc-pack-count { color: #B45309; }
.gsc-pack-unit  { font-size: 9px; font-weight: 700; color: #9ca3af; display: block; margin-bottom: 8px; }
.gsc-pack-sep   { width: 100%; height: 1px; background: rgba(0,0,0,.08); margin-bottom: 8px; }

/* Price block */
.gsc-price-block {
  display: flex; flex-direction: column; align-items: center; margin-bottom: 1px;
}
.gsc-price-original {
  font-size: 11px; font-weight: 700; color: #9ca3af;
  text-decoration: line-through; line-height: 1; margin-bottom: 1px;
  display: none;
}
.gsc-price-original.visible { display: block; }
.gsc-pack-price { font-size: 24px; font-weight: 900; display: block; line-height: 1; }
.gsc-pack-card.p1 .gsc-pack-price { color: #6B21E8; }
.gsc-pack-card.p2 .gsc-pack-price { color: #B45309; }
.gsc-pack-ppu   { font-size: 9px; color: #9ca3af; font-weight: 700; margin-top: 2px; }

/* Pay button */
.gsc-pay-btn {
  width: 100%; padding: 10px 6px; border-radius: 11px; border: none;
  font-size: 13px; font-weight: 900; cursor: pointer;
  margin-top: 8px; position: relative; overflow: hidden;
  transition: transform .18s, filter .18s; z-index: 2;
  color: #fff; font-family: 'DM Sans', sans-serif;
}
.gsc-pay-btn:hover  { transform: scale(1.05); filter: brightness(1.08); }
.gsc-pay-btn:active { transform: scale(.93); }
.gsc-pack-card.p1 .gsc-pay-btn {
  background: linear-gradient(135deg, #7B3FF2, #FF375F);
  box-shadow: 0 4px 12px rgba(123, 63, 242, .3);
}
.gsc-pack-card.p2 .gsc-pay-btn {
  background: linear-gradient(135deg, var(--gsc-gold), var(--gsc-gold-dark));
  box-shadow: 0 4px 12px rgba(255, 215, 0, .35);
}
.gsc-pay-btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0); border-radius: inherit;
  transition: background .08s; pointer-events: none;
}
.gsc-pay-btn.btn-flash::after { background: rgba(255, 255, 255, .35); }

/* Ripple effect */
.pw-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .45); transform: scale(0);
  animation: gsc-ripple .55s ease-out forwards; pointer-events: none;
}
@keyframes gsc-ripple { to { transform: scale(4); opacity: 0; } }

/* Plan buttons — vertical column */
.gsc-plan-btns-row {
  display: flex; flex-direction: column; gap: 8px; width: 100%; margin-bottom: 10px;
}
.gsc-plan-btn {
  width: 100%; padding: 13px 10px; border-radius: 13px; border: none;
  font-size: 14px; font-weight: 900; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: transform .18s, filter .18s;
  color: #fff; font-family: 'DM Sans', sans-serif;
}
.gsc-plan-btn:hover  { transform: scale(1.02); filter: brightness(1.06); }
.gsc-plan-btn:active { transform: scale(.97); }
.gsc-btn-premium {
  background: linear-gradient(135deg, var(--gsc-purple), var(--gsc-pink));
  box-shadow: 0 4px 14px rgba(108, 63, 197, .3);
}
.gsc-btn-gold {
  background: linear-gradient(135deg, var(--gsc-gold), var(--gsc-gold-dark));
  box-shadow: 0 4px 14px rgba(255, 215, 0, .35);
}

.gsc-paywall-dismiss {
  display: block; width: 100%; background: none; border: none;
  color: #9ca3af; font-size: 12px; cursor: pointer;
  padding: 8px; text-align: center; transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.gsc-paywall-dismiss:hover { color: #374151; }

/* ── Étape paiement Stripe inline ── */
.gsc-payment-back {
  background: none; border: none; color: #7B3FF2; font-size: 13px;
  font-weight: 700; cursor: pointer; padding: 0 0 14px;
  font-family: 'DM Sans', sans-serif; align-self: flex-start;
}
.gsc-payment-back:hover { text-decoration: underline; }
.gsc-payment-summary {
  display: flex; align-items: center; gap: 12px;
  background: #f5f0ff; border-radius: 12px; padding: 12px 14px;
  margin-bottom: 16px; width: 100%; box-sizing: border-box;
}
.gsc-payment-icon { font-size: 26px; }
.gsc-payment-label { font-size: 13px; font-weight: 800; color: #111; }
.gsc-payment-price { font-size: 20px; font-weight: 900; color: #7B3FF2; }
.gsc-field-wrap {
  display: flex; flex-direction: column; gap: 5px; width: 100%; margin-bottom: 10px;
}
.gsc-field-label {
  font-size: 11px; font-weight: 800; color: #6b7280;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.gsc-name-input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 11px 13px; font-size: 15px; color: #111;
  font-family: 'DM Sans', sans-serif; outline: none;
  transition: border-color 0.2s;
}
.gsc-name-input:focus { border-color: #7B3FF2; }
.gsc-name-input::placeholder { color: #9ca3af; }
.gsc-stripe-field {
  background: #fff; border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 11px 13px; box-sizing: border-box;
  transition: border-color 0.2s;
}
.gsc-stripe-field.StripeElement--focus { border-color: #7B3FF2; }
.gsc-stripe-field.StripeElement--invalid { border-color: #ef4444; }
.gsc-card-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
#gsc-card-errors {
  color: #ef4444; font-size: 12px; font-weight: 600;
  min-height: 18px; margin-bottom: 10px; text-align: center;
}
.gsc-payment-submit-btn {
  width: 100%; padding: 14px; border-radius: 13px; border: none;
  background: linear-gradient(135deg, #7B3FF2, #FF375F);
  color: #fff; font-size: 15px; font-weight: 900; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(123, 63, 242, .35);
  transition: transform .18s, filter .18s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.gsc-payment-submit-btn:hover:not(:disabled) { filter: brightness(1.08); }
.gsc-payment-submit-btn:active:not(:disabled) { transform: scale(.97); }
.gsc-payment-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.gsc-payment-secure {
  font-size: 11px; color: #9ca3af; text-align: center;
  margin-top: 10px; padding-bottom: 4px;
}

/* Bouton verrouillé (comptes gratuits) */
.gsc-star-btn.gsc-locked {
  border-color: var(--gsc-gold);
  box-shadow: 0 2px 8px rgba(255,215,0,0.2);
  cursor: pointer;
  flex-direction: column;
  gap: 0;
  overflow: visible;
}
.gsc-star-btn.gsc-locked .gsc-star-icon {
  font-size: 18px;
  filter: none;
  line-height: 1;
  position: relative;
}
.gsc-star-btn.gsc-locked:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px var(--gsc-gold-glow);
  background: #fffbea;
}
/* Cadenas superposé en bas à droite de l'étoile */
.gsc-star-btn.gsc-locked .gsc-lock-overlay {
  position: absolute;
  bottom: 10px;
  right: 8px;
  font-size: 12px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
/* Label "Bloqué" sous le bouton */
.gsc-star-btn.gsc-locked .gsc-lock-label {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  color: var(--gsc-gold-dark);
  white-space: nowrap;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* Badge plan sur le bouton */
.gsc-plan-label-badge {
  position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 8px; font-weight: 800;
  padding: 2px 7px; border-radius: 99px; letter-spacing: 0.5px;
}
.gsc-plan-label-badge.premium { background: var(--gsc-purple); color: #fff; }
.gsc-plan-label-badge.premium_gold { color: #1a1a1a; }

/* ─── Loading ─────────────────────────────────────── */
.gsc-loading {
  text-align: center;
  padding: 30px;
  color: #9ca3af;
  font-size: 14px;
}

/* ─── Quota indicator ─────────────────────────────── */
.gsc-quota-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gsc-gold);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(255,165,0,0.5);
  pointer-events: none;
}

.gsc-quota-badge.gsc-quota-empty {
  background: #e5e7eb;
  color: #9ca3af;
}

/* ─── 11. TAMPON ACTION LIVE (card discover / liste membres) ─── */
.gsc-action-stamp {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg) scale(0.5);
  border: 5px solid var(--gsc-gold);
  border-radius: 8px;
  padding: 10px 18px;
  color: var(--gsc-gold);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Impact', 'Arial Black', sans-serif;
  -webkit-text-stroke: 1px var(--gsc-gold);
  background: rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  animation: gsc-stamp-in-out 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes gsc-stamp-in-out {
  0%   { opacity: 0;   transform: translate(-50%, -50%) rotate(-15deg) scale(0.4); }
  12%  { opacity: 1;   transform: translate(-50%, -50%) rotate(-15deg) scale(1.08); }
  18%  { opacity: 1;   transform: translate(-50%, -50%) rotate(-15deg) scale(0.97); }
  22%  { opacity: 1;   transform: translate(-50%, -50%) rotate(-15deg) scale(1); }
  75%  { opacity: 1;   transform: translate(-50%, -50%) rotate(-15deg) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -50%) rotate(-15deg) scale(1.05); }
}

/* ─── 12. BADGE DESTINATAIRE (reçu un Super Crush) ─── */
.gsc-recipient-badge {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px 7px;
  background: linear-gradient(
    to bottom,
    rgba(59, 130, 246, 0.90) 0%,
    rgba(59, 130, 246, 0.65) 60%,
    transparent 100%
  );
  border-radius: var(--gsc-radius) var(--gsc-radius) 0 0;
  pointer-events: none;
  animation: gsc-badge-drop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes gsc-badge-drop {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}

.gsc-recipient-star {
  font-size: 15px;
  animation: gsc-star-pulse 2s ease-in-out infinite;
}
@keyframes gsc-star-pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.25); }
}

.gsc-recipient-text {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  white-space: nowrap;
}

/* ─── 13. FEEDBACK SWIPE-UP ─── */
.tinder--card.gsc-swiping-up {
  box-shadow: 0 0 0 4px var(--gsc-gold),
              0 0 30px var(--gsc-gold-glow) !important;
  transition: box-shadow 0.15s ease !important;
}

/* Tampon "live" pendant le swipe-up (pas d'animation auto, géré par JS) */
.gsc-action-stamp.gsc-stamp-live {
  animation: none;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-15deg) scale(1);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
/* Disparition douce si le geste est annulé */
.gsc-action-stamp.gsc-stamp-dismiss {
  opacity: 0 !important;
  transform: translate(-50%, -50%) rotate(-15deg) scale(0.55) !important;
}

/* Suppression de l'emoji ::after — remplacé par le tampon DOM */
.tinder--card.gsc-swiping-up::after {
  content: '';
  display: none;
  font-size: 72px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 15;
  filter: drop-shadow(0 0 16px var(--gsc-gold));
  animation: gsc-up-pulse 0.35s ease-in-out infinite alternate;
}
@keyframes gsc-up-pulse {
  from { transform: translate(-50%, -50%) scale(0.88); opacity: 0.4; }
  to   { transform: translate(-50%, -50%) scale(1.08); opacity: 0.65; }
}

/* ─── 14. ONGLETS MATCHES / SUPER LIKES REÇUS ─── */
.gsc-matches-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.gsc-matches-title-text {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}
.gsc-matches-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 5px;
  -webkit-overflow-scrolling: touch;
}
.gsc-mtab {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  background: #f9fafb;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.gsc-mtab:hover {
  border-color: var(--gsc-gold);
  color: #111;
}
.gsc-mtab.active {
  border-color: var(--gsc-gold);
  background: linear-gradient(135deg, #fffbea, #fff8d6);
  color: #111;
  box-shadow: 0 2px 8px rgba(255,215,0,0.3);
}
.gsc-mtab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50px;
  background: var(--gsc-gold);
  color: #000;
  font-size: 10px;
  font-weight: 900;
}
.gsc-mtab-panel {
  min-height: 60px;
}
@media (max-width: 480px) {
  .gsc-matches-header { gap: 8px; }
  .gsc-mtab { font-size: 11px; padding: 5px 10px; gap: 3px; }
}

/* ─── 15. GRILLE SUPER LIKES REÇUS ─── */
.gsc-received-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .gsc-received-grid { grid-template-columns: repeat(2, 1fr); }
}
.gsc-received-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: #f3f4f6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.gsc-received-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
}
.gsc-received-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gsc-received-star {
  position: absolute;
  top: 6px;
  right: 7px;
  font-size: 16px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  animation: gsc-star-pulse 2s ease-in-out infinite;
}
.gsc-received-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 8px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Profil flouté (non-premium) */
.gsc-received-blurred img {
  filter: blur(14px) brightness(0.85);
  transform: scale(1.06);
  pointer-events: none;
  user-select: none;
}

/* Le conteneur du panel reçus doit être position:relative pour l'overlay */
#gsc-mtab-received,
#gsc-umatch-received-panel {
  position: relative;
  padding-bottom: 40px;
}

/* ─── 16. BLUR WRAP / OVERLAY PREMIUM (Super Likes reçus) ─── */
.jws-liked-blur-wrap {
  position: relative;
}
.jws-liked-blur-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.jws-liked-blur-overlay .jws-blur-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  position: fixed;
  top: 45vh;
  padding: 28px 24px;
  max-width: 320px;
  width: calc(100% - 48px);
  box-shadow: 3px 8px 11px #1e1550, 22px 22px 19px rgba(50, 41, 119, 0.4);
  animation: rocket-bounce 1.8s ease-in-out infinite;
  z-index: 20;
}
@keyframes rocket-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.jws-liked-blur-overlay .jws-blur-count {
  font-size: 42px;
  font-weight: 900;
  color: #322977;
  line-height: 1;
  margin-bottom: 4px;
}
.jws-liked-blur-overlay .jws-blur-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}
.jws-liked-blur-overlay .jws-blur-label strong {
  color: #322977;
}
.jws-liked-blur-overlay .jws-blur-cta {
  display: inline-block;
  background: linear-gradient(135deg, #322977, #6b2fa0);
  color: #fff !important;
  padding: 13px 44px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 3px 8px 11px #1e1550, 22px 22px 19px rgba(50, 41, 119, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}
.jws-liked-blur-overlay .jws-blur-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #1e1550, 0 14px 30px rgba(50, 41, 119, 0.5);
}

/* Grille floutée à l'intérieur du wrap (Super Likes reçus non-premium) */
.jws-liked-blur-wrap .gsc-recv-blurred-grid {
  filter: blur(12px);
  pointer-events: none;
  user-select: none;
}

/* ─── 17. ÉTOILE DORÉE — onglet Super Likes reçus ─── */
#gsc-umatch-received-panel .jws_members_wap {
  position: relative;
  overflow: hidden;
}
#gsc-umatch-received-panel .jws_members_wap::after {
  content: '⭐';
  position: absolute;
  top: 52px;
  right: 18px;
  font-size: 22px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.55));
  animation: gsc-star-pulse 2s ease-in-out infinite;
}



/* ─── 18. SUPER MATCH — modale native adaptée ─── */
/* Étoile SVG dorée entre les deux avatars — déborde sur les photos */
.gsc-super-match-icon {
  display:     flex;
  align-items: center;
  margin:      0 -20px;
  position:    relative;
  z-index:     2;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 180, 0, 0.85));
  animation: gsc-star-pulse 1.6s ease-in-out infinite;
}
.gsc-star-svg {
  width:  96px;
  height: 96px;
  display: block;
}

/* Texte "Vous et ... mutuellement..." en blanc avec ombre */
.gsc-super-match-inner .match-content p:not(.gsc-super-match-label) {
  color: #fff !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 0, 0, 0.35) !important;
}

/* Label "⭐ Super Match !" doré sous l'image Match */
.gsc-super-match-label {
  font-size: 20px;
  font-weight: 900;
  color: var(--gsc-gold);
  letter-spacing: 1px;
  margin: 6px 0 4px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.55);
}

/* ─── 14. EMPTY STATE "AUCUN SUPER LIKE REÇU" ──────── */
.gsc-empty-received {

  position: relative;
  overflow: hidden;
  text-align: center;
  background: transparent;
  border-radius: 0;
  animation: gsc-es-fadeUp 0.9s cubic-bezier(.22,.8,.36,1) both;
}
@keyframes gsc-es-fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* blobs décoratifs */
.gsc-empty-received .es-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  animation: gsc-es-blobDrift 12s ease-in-out infinite alternate;
}
.gsc-empty-received .es-blob-1 {
  width: 420px; height: 420px;
  background: var(--es-accent);
  top: -100px; left: -80px;
  animation-duration: 12s;
}
.gsc-empty-received .es-blob-2 {
  width: 300px; height: 300px;
  background: var(--es-star);
  bottom: -60px; right: -60px;
  animation-duration: 15s;
  animation-direction: alternate-reverse;
}
@keyframes gsc-es-blobDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* carte centrale */
.gsc-empty-received .es-card {
  position: relative;
  padding-bottom: 20px;
  z-index: 1;
}

/* scène 3D étoile */
.gsc-empty-received .es-scene {
  width: 180px;
  height: 180px;
  margin: 0 auto 40px;
  perspective: 600px;
  position: relative;
}
.gsc-empty-received .es-star-wrap {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  animation: gsc-es-spin3d 8s ease-in-out infinite;
  position: relative;
}
@keyframes gsc-es-spin3d {
  0%   { transform: rotateY(0deg)   rotateX(10deg); }
  35%  { transform: rotateY(200deg) rotateX(-10deg); }
  70%  { transform: rotateY(340deg) rotateX(12deg); }
  100% { transform: rotateY(360deg) rotateX(10deg); }
}
.gsc-empty-received .es-star-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gsc-empty-received .es-star-layer svg { width: 140px; height: 140px; }

.gsc-empty-received .es-layer-back  { transform: translateZ(-18px); }
.gsc-empty-received .es-layer-mid   { transform: translateZ(0px);   }
.gsc-empty-received .es-layer-front { transform: translateZ(18px);  }

.gsc-empty-received .es-layer-back  svg polygon { fill: #2b286b; }
.gsc-empty-received .es-layer-mid   svg polygon { fill: #6c68d8; }

/* sparkles (dans .es-scene, autour de l'étoile) */
.gsc-empty-received .es-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.gsc-empty-received .es-sp {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--es-star-glow);
  border-radius: 50%;
  opacity: 0;
  animation: gsc-es-sparkle 3s ease-in-out infinite;
}
.gsc-empty-received .es-sp:nth-child(1) { top: 8%;  left: 50%; animation-delay: 0s;   }
.gsc-empty-received .es-sp:nth-child(2) { top: 20%; left: 80%; animation-delay: .5s;  }
.gsc-empty-received .es-sp:nth-child(3) { top: 70%; left: 85%; animation-delay: 1s;   }
.gsc-empty-received .es-sp:nth-child(4) { top: 80%; left: 20%; animation-delay: 1.5s; }
.gsc-empty-received .es-sp:nth-child(5) { top: 18%; left: 12%; animation-delay: 2s;   }
.gsc-empty-received .es-sp:nth-child(6) { top: 55%; left: 6%;  animation-delay: 2.5s; }
@keyframes gsc-es-sparkle {
  0%,100% { opacity: 0; transform: scale(0); }
  50%     { opacity: 1; transform: scale(1.5); }
}

/* titre */
.gsc-empty-received .es-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 4.5vw, 1.7rem);
  color: var(--es-deep);
  line-height: 1.2;
  white-space: nowrap;
  margin-bottom: 18px;
  animation: gsc-es-fadeUp 0.9s 0.2s cubic-bezier(.22,.8,.36,1) both;
}

/* sous-titre */
.gsc-empty-received .es-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--es-mid);
  letter-spacing: 0.01em;
  line-height: 1.6;
  animation: gsc-es-fadeUp 0.9s 0.35s cubic-bezier(.22,.8,.36,1) both;
}

/* bouton pill */
.gsc-empty-received .es-pill {
  display: inline-block;
  margin-top: 36px;
  padding: 13px 32px;
  background: #1E1B5E;
  color: #fff;
  white-space: nowrap;
  border-radius: 100px;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  animation: gsc-es-fadeUp 0.9s 0.5s cubic-bezier(.22,.8,.36,1) both;
}
.gsc-empty-received .es-pill:hover {
  background: #4b47a5;
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* ─── MENU TROIS POINTS — supprimer super crush ─── */
.gsc-card-dots-wrap {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 8;
}
.gsc-dots-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
}
.gsc-dots-btn:hover { background: rgba(0,0,0,0.68); }
.gsc-dots-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 5px, transparent 5px) 0% 0% / 8px 8px no-repeat, radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 5px, transparent 5px) 100% 0% / 8px 8px no-repeat, radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 5px, transparent 5px) 0% 100% / 8px 8px no-repeat, radial-gradient(circle at 0 0, #ffffff 0, #ffffff 5px, transparent 5px) 100% 100% / 8px 8px no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 6px) calc(100% - 16px) no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 16px) calc(100% - 6px) no-repeat, radial-gradient(at 100% 100%, #42bbce 0%, transparent 70%), radial-gradient(at 100% 0%, #d182d5 0%, transparent 70%), radial-gradient(at 0% 0%, #1c67ab 45%, transparent 70%), #d182d5;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  overflow: hidden;
  min-width: 200px;
  white-space: nowrap;
}
.gsc-dots-menu.open { display: block; }
.gsc-dots-action {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: none;
  text-align: left;
  font-size: 13px;
  cursor: pointer;
  color: #888;
  font-weight: 600;
  transition: background 0.15s;
}
.gsc-dots-action:hover { background: #fff5f5; }

