/* ==========================================================================
   STYLES SPÉCIFIQUES POUR LES 6 JEUX DE MARIAGE
   ========================================================================== */

/* Structure commune des vues de jeu */
.game-view-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-header-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}

.game-header-badge {
  display: inline-block;
  background: #FAF4E6;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--color-border-gold);
}

.game-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

.game-description {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 14px auto;
}

.game-score-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-bg-base);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
}

.game-footer-actions {
  position: sticky;
  bottom: 74px; /* Juste au dessus de la barre mobile */
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  z-index: 50;
}

.game-footer-actions .btn {
  width: 100%;
}

/* ==========================================================================
   1. JEU DÉGUSTATION DE VINS
   ========================================================================== */
.wine-bottles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.bottle-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.bottle-card.is-answered {
  border-color: var(--color-primary);
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F2 100%);
}

.bottle-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.bottle-number-badge {
  font-weight: 800;
  font-size: 15px;
  color: var(--color-text-main);
}

.status-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}

.status-pill-pending {
  background: #F1F5F9;
  color: #64748B;
}

.status-pill-done {
  background: #E8F5E9;
  color: #2E7D32;
}

.bottle-visual-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-bottom: 14px;
}

.bottle-illustration {
  width: 44px;
  height: 80px;
  border-radius: 6px 6px 14px 14px;
  background: #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.bottle-illustration.has-wine-rouge {
  background: linear-gradient(180deg, #581825 0%, #722F37 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(114, 47, 55, 0.3);
}

.bottle-illustration.has-wine-rose {
  background: linear-gradient(180deg, #E0829D 0%, #F4AAB9 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(224, 130, 157, 0.3);
}

.bottle-illustration.has-wine-blanc {
  background: linear-gradient(180deg, #EADCA6 0%, #FAF0CA 100%);
  color: #5C4A08;
  box-shadow: 0 4px 12px rgba(234, 220, 166, 0.4);
}

.wine-type-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.wine-option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wine-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.dot-rouge { background: #722F37; }
.dot-rose { background: #E0829D; }
.dot-blanc { background: #EADCA6; border: 1px solid #C4B57D; }

.wine-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-main);
}

.wine-option-btn:hover {
  background: var(--color-bg-base);
  border-color: var(--color-primary);
}

.wine-option-btn.active {
  background: #FAF4E6;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary);
}

/* ==========================================================================
   2. JEU DÉGUSTATION DE SIROPS
   ========================================================================== */
.syrup-bottles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.syrup-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.syrup-card.is-answered {
  border-color: #F472B6;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF2F8 100%);
}

.syrup-visual-area {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  background: var(--color-bg-base);
  padding: 10px 14px;
  border-radius: var(--radius-md);
}

.syrup-glass-icon {
  font-size: 28px;
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.syrup-current-choice {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.syrup-current-choice .label {
  color: var(--color-text-muted);
}

.syrup-choice-text {
  font-size: 15px;
  color: #BE185D;
}

.flavor-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.flavor-chip {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text-main);
  cursor: pointer;
  transition: all 0.15s ease;
}

.flavor-chip:hover {
  background: #FDF2F8;
  border-color: #F472B6;
}

.flavor-chip.selected {
  background: #BE185D;
  color: white;
  border-color: #BE185D;
  box-shadow: 0 2px 8px rgba(190, 24, 93, 0.3);
}

/* ==========================================================================
   3. QUESTIONNAIRE SUR LES MARIÉS
   ========================================================================== */
.quiz-questions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quiz-question-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.quiz-question-card.is-answered {
  border-color: var(--color-primary);
}

.question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.question-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.question-type-badge {
  font-size: 11px;
  background: var(--color-bg-base);
  color: var(--color-text-muted);
  padding: 2px 8px;
  border-radius: 8px;
}

.question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
  line-height: 1.4;
}

.qcm-options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qcm-option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: white;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.opt-letter {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-base);
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.opt-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
}

.qcm-option-btn:hover {
  background: var(--color-bg-base);
  border-color: var(--color-primary);
}

.qcm-option-btn.selected {
  background: #FAF4E6;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.qcm-option-btn.selected .opt-letter {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.text-answer-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-text-answer {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  outline: none;
  background: white;
  transition: all 0.2s ease;
}

.input-text-answer:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.input-hint {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   4. JEU TIR AU BUT UNIHOCKEY
   ========================================================================== */
.unihockey-dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .unihockey-dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.unihockey-goal-card, .unihockey-score-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.goal-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.hint-pill {
  font-size: 11px;
  background: #E0F2FE;
  color: #0369A1;
  padding: 3px 8px;
  border-radius: 10px;
}

/* Cage d'unihockey */
.unihockey-goal-frame {
  position: relative;
  height: 220px;
  background: #0F172A;
  border: 8px solid #DC2626; /* Poteaux rouges unihockey standard */
  border-bottom: 6px solid #64748B;
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  padding: 10px;
  overflow: hidden;
}

.goal-net-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.08) 75%);
  background-size: 16px 16px;
  pointer-events: none;
}

.target-zone {
  position: relative;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  transition: all 0.15s ease;
  z-index: 2;
}

.target-zone:hover {
  background: rgba(220, 38, 38, 0.35);
  border-color: #F87171;
  transform: scale(1.02);
}

.target-zone.target-hit {
  background: #22C55E !important;
  border-color: white !important;
  transform: scale(0.95);
}

.target-bullseye { font-size: 18px; }
.target-pts { font-size: 13px; font-weight: 800; color: #FDE047; }
.target-name { font-size: 10px; opacity: 0.85; }

.target-top-left { grid-column: 1; grid-row: 1; }
.target-center { grid-column: 2; grid-row: 1 / span 2; }
.target-top-right { grid-column: 3; grid-row: 1; }
.target-bottom-left { grid-column: 1; grid-row: 2; }
.target-bottom-right { grid-column: 3; grid-row: 2; }

.unihockey-quick-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

/* Carte Score */
.score-display-panel {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.score-caption {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94A3B8;
}

.score-counter-value {
  font-size: 42px;
  font-weight: 800;
  color: #FBBF24;
  line-height: 1.1;
  margin-top: 4px;
}

.score-counter-value .score-unit {
  font-size: 16px;
  color: white;
}

.score-stepper-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.stepper-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
}

.stepper-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.stepper-btn:hover {
  background: white;
  border-color: var(--color-primary);
}

.input-score-number {
  flex: 1;
  height: 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
}

.unihockey-tip-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FAF4E6;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--color-primary-dark);
}

/* ==========================================================================
   5. JEU BLIND TEST MUSICAL
   ========================================================================== */
.music-tracks-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.music-track-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.music-track-card.is-answered {
  border-color: #8B5CF6;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
}

.track-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.track-vinyl-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vinyl-disc {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.vinyl-center {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F59E0B;
}

.track-num-label {
  font-weight: 700;
  font-size: 14px;
}

.track-hint-pill {
  font-size: 11px;
  background: #F3E8FF;
  color: #7E22CE;
  padding: 3px 8px;
  border-radius: 10px;
}

.track-inputs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) {
  .track-inputs-grid {
    grid-template-columns: 1fr;
  }
}

.track-input-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-input-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 4px;
}

.input-track-field {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  outline: none;
  background: white;
  transition: all 0.2s ease;
}

.input-track-field:focus {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

/* ==========================================================================
   6. JEU NATURE & OISEAUX
   ========================================================================== */
.nature-theme-header {
  border-color: rgba(45, 90, 67, 0.3);
}

.btn-nature {
  background: linear-gradient(135deg, #2D5A43 0%, #1B3D2C 100%);
  box-shadow: 0 8px 24px rgba(45, 90, 67, 0.25);
}

.nature-card.is-answered {
  border-color: var(--color-accent-green);
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAF7 100%);
}

.nature-header-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nature-category-pill {
  font-size: 11px;
  background: #E8F5E9;
  color: #2E7D32;
  padding: 3px 8px;
  border-radius: 10px;
}

.btn-bird-audio {
  background: #FAF4E6;
  border: 1px solid var(--color-border-gold);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.btn-bird-audio:hover, .btn-bird-audio.playing {
  background: var(--color-primary);
  color: white;
  transform: scale(1.05);
}

.nature-opt-btn.selected {
  background: #E8F5E9;
  border-color: #2D5A43;
  box-shadow: 0 0 0 2px #2D5A43;
}

.nature-opt-btn.selected .opt-letter {
  background: #2D5A43;
  color: white;
}

/* Éléments de dégustation exclusive */
.tasting-exclusive-notice {
  background: #FAF4E6;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: 13px;
  color: var(--color-primary-dark);
  margin-top: 10px;
}

.tasting-switch-warning {
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.warning-icon {
  font-size: 28px;
}

.warning-text {
  flex: 1;
  font-size: 13px;
  color: #78350F;
}

.warning-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.pts-tag-item {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary-dark);
  background: #FAF4E6;
  padding: 2px 8px;
  border-radius: 8px;
}

.q-header-badges {
  display: flex;
  align-items: center;
  gap: 6px;
}

.question-pts-pill {
  font-size: 11px;
  font-weight: 800;
  background: #FEF3C7;
  color: #92400E;
  padding: 2px 8px;
  border-radius: 8px;
}

.track-pts-indicators {
  display: flex;
  gap: 4px;
}

/* Positions dynamiques sur la cage d'Unihockey */
.unihockey-goal-frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 8px;
  height: 250px;
}

.pos-top-left { grid-column: 1; grid-row: 1; }
.pos-top-center { grid-column: 2; grid-row: 1; }
.pos-top-right { grid-column: 3; grid-row: 1; }
.pos-middle-left { grid-column: 1; grid-row: 2; }
.pos-center { grid-column: 2; grid-row: 2; }
.pos-middle-right { grid-column: 3; grid-row: 2; }
.pos-bottom-left { grid-column: 1; grid-row: 3; }
.pos-bottom-center { grid-column: 2; grid-row: 3; }
.pos-bottom-right { grid-column: 3; grid-row: 3; }

/* Blind Test Verrouillé */
.blindtest-locked-card {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.locked-disc-anim {
  margin-bottom: 16px;
}

.large-vinyl {
  width: 70px;
  height: 70px;
  animation: spinVinyl 6s linear infinite;
}

.large-vinyl .vinyl-center {
  width: 22px;
  height: 22px;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.locked-message-text {
  font-size: 16px;
  color: var(--color-text-main);
  max-width: 480px;
  margin: 10px auto 16px auto;
  line-height: 1.5;
}

.locked-info-pill {
  background: #FAF5FF;
  border: 1px solid #E9D5FF;
  color: #6B21A8;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  margin-bottom: 24px;
  max-width: 500px;
}

.locked-actions-row {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   DÉFIS PHOTOS & ACTIVITÉS SOUVENIRS
   ========================================================================== */
.photos-count-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FAF5E8;
  color: #854D0E;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #FEF08A;
  margin-top: 4px;
}

.photo-themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.photo-theme-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
}

.photo-theme-card.theme-completed {
  border-color: #86EFAC;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}

.theme-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.theme-icon {
  font-size: 28px;
  line-height: 1;
}

.theme-meta {
  flex: 1;
}

.theme-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0 0 4px 0;
}

.theme-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.4;
}

.photo-upload-box {
  background: #FAF8F5;
  border: 2px dashed #E5DFD7;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.photo-upload-box:hover {
  border-color: var(--color-primary);
}

.photo-file-input {
  display: none;
}

.btn-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 13px;
}

.upload-icon {
  font-size: 24px;
}

.photo-preview-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.theme-uploaded-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.photo-success-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(34, 197, 94, 0.9);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.upload-loading-spinner {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--color-primary-dark);
  font-weight: 600;
}

/* ACTIVITÉS SOUVENIRS */
.activities-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.activity-interactive-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.2s ease;
}

.activity-interactive-card.is-completed {
  border-color: #86EFAC;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
}

.act-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.act-icon-large {
  font-size: 32px;
}

.act-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0 0 4px 0;
}

.act-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.act-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.btn-toggle-activity {
  border: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-act-todo {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
}

.btn-act-todo:hover {
  background: var(--color-primary-dark);
}

.btn-act-done {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
}

.act-pts-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary-dark);
}

/* HUB DUAL GRID */
.games-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.hub-game-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
}

.hub-game-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.hub-game-card.card-chosen {
  border-color: var(--color-primary);
  background: #FFFDF9;
}

.hub-game-card.card-completed {
  border-color: #86EFAC;
}

.game-card-icon {
  font-size: 32px;
  margin: 8px 0;
}

.game-card-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.game-card-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 10px 0;
}

.game-card-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.games-vertical-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.hub-feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s ease;
}

.hub-feature-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.feature-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.feature-icon {
  font-size: 26px;
}

.feature-header-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  margin: 0;
}

.feature-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 2px 0 0 0;
}

.feature-card-arrow {
  font-size: 18px;
  color: var(--color-text-muted);
  font-weight: 700;
}

.status-tag-done {
  font-size: 11px;
  font-weight: 700;
  background: #DCFCE7;
  color: #15803D;
  padding: 2px 8px;
  border-radius: 10px;
}

.status-tag-todo {
  font-size: 11px;
  font-weight: 600;
  background: #F3F4F6;
  color: #6B7280;
  padding: 2px 8px;
  border-radius: 10px;
}

.status-tag-counter {
  font-size: 11px;
  font-weight: 700;
  background: #FAF5E8;
  color: #92400E;
  padding: 2px 8px;
  border-radius: 10px;
}

.hub-welcome-banner {
  background: linear-gradient(135deg, #FAF4E6 0%, #FFFFFF 100%);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.banner-avatar {
  font-size: 38px;
  line-height: 1;
}

.banner-text h2 {
  font-size: 18px;
  margin: 0 0 4px 0;
  font-family: var(--font-serif);
}

.banner-text p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.guest-progress-pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary-dark);
  background: #FAF4E6;
  padding: 4px 12px;
  border-radius: 14px;
  border: 1px solid var(--color-border-gold);
}

