/* ============================================================
   CULTURE BOX — Component Styles
   ============================================================ */

/* ======== LANGUAGE SWITCHER ======== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(200, 169, 126, 0.12);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 20px;
  padding: 3px 5px;
}
/* On desktop the top navbar already shows the switcher */
@media (min-width: 701px) {
  .lang-switcher-mobile-only { display: none; }
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(200, 169, 126, 0.2);
  color: var(--text);
}
.lang-btn.active {
  background: var(--gold-dark);
  color: #fff;
}
.lang-flag {
  font-size: 0.85rem;
  line-height: 1;
}
.lang-code {
  letter-spacing: 0.05em;
}

/* ======== BOX CARD COUNTRY IMAGE ======== */
.box-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}
.box-card:hover .box-card-img {
  opacity: 0.5;
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(253, 251, 247, 0.96);
  border-top: 1px solid var(--sand);
  backdrop-filter: blur(20px);
  padding: 8px 0 env(safe-area-inset-bottom, 0);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 8px;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  min-width: 52px;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.nav-item:hover { background: rgba(200, 169, 126, 0.1); }
.nav-item.active .nav-icon { color: var(--gold-dark); }
.nav-item.active .nav-label { color: var(--gold-dark); }
.nav-icon {
  font-size: 20px;
  color: var(--text-light);
  transition: var(--transition);
  line-height: 1;
}
.nav-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  transition: var(--transition);
}
.nav-item.active .nav-icon {
  transform: scale(1.15);
}
/* Top navbar for desktop */
.navbar-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(253, 251, 247, 0.96);
  border-bottom: 1px solid var(--sand);
  backdrop-filter: blur(20px);
  padding: 0;
}
.navbar-top-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.navbar-logo span { color: var(--gold-dark); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-link {
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  background: none;
  font-family: var(--font-body);
}
.navbar-link:hover { color: var(--text); background: rgba(200,169,126,0.1); }
.navbar-link.active { color: var(--gold-dark); font-weight: 600; }
.navbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.navbar-xp {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .navbar-top { display: none; }
  .navbar { display: block; }
}
@media (min-width: 701px) {
  .navbar { display: none; }
  .navbar-top { display: block; }
  .page-inner { padding-top: 80px; }
}

/* ======== TOAST ======== */
#toast-container {
  position: fixed;
  top: 72px;
  right: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: rgba(26, 15, 7, 0.92);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  border-left: 3px solid var(--gold);
  max-width: 300px;
  animation: slideInRight 0.3s ease forwards;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast-icon { font-size: 1.1rem; flex-shrink: 0; }
.toast-success { border-color: #2D7D4E; }
.toast-error { border-color: #C44B3A; }
.toast-gold { border-color: var(--gold); }
.toast.hiding {
  animation: slideInRight 0.25s ease reverse forwards;
}

/* ======== MODAL ======== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(26, 15, 7, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.hidden { display: none; }
.modal-box {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: fadeInScale 0.3s var(--transition-bounce);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--parchment);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}
.modal-close:hover { background: var(--sand); color: var(--text); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-body { color: var(--text-muted); line-height: 1.7; }

/* ======== STAMP ======== */
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 12px;
}
.stamp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.stamp-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid;
  transition: var(--transition);
}
.stamp-circle::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.4;
}
.stamp-circle:hover { transform: scale(1.08); }
.stamp-flag { font-size: 1.5rem; }
.stamp-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.stamp-locked { opacity: 0.3; filter: grayscale(1); }

/* ======== BOX CARD ======== */
.box-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
}
.box-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.box-card-header {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.box-card-flag {
  font-size: 3rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  z-index: 1;
}
.box-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 16px 16px;
}
.box-card-body {
  padding: 18px;
  background: var(--cream);
}
.box-card-country {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.box-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.box-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.box-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.box-card-xp {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.box-card-done {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2D7D4E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
}

/* ======== LEVEL BADGE ======== */
.level-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(200,169,126,0.15), rgba(200,169,126,0.08));
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: 999px;
  padding: 4px 12px 4px 4px;
}
.level-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--espresso);
}
.level-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ======== STAT CARD ======== */
.stat-card {
  background: var(--parchment);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ======== QUIZ OPTION ======== */
.quiz-option {
  padding: 14px 20px;
  border: 2px solid var(--sand);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream);
  font-size: 0.9rem;
  color: var(--text);
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 12px;
}
.quiz-option:hover:not(.disabled) {
  border-color: var(--gold);
  background: rgba(200,169,126,0.06);
  transform: translateX(4px);
}
.quiz-option.correct {
  border-color: #2D7D4E;
  background: rgba(45,125,78,0.08);
  color: #1A5C36;
}
.quiz-option.wrong {
  border-color: #C44B3A;
  background: rgba(196,75,58,0.08);
  color: #8B2319;
}
.quiz-option.disabled { cursor: not-allowed; }
.quiz-option-letter {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.quiz-option.correct .quiz-option-letter {
  background: #2D7D4E;
  color: white;
}
.quiz-option.wrong .quiz-option-letter {
  background: #C44B3A;
  color: white;
}

/* ======== LEADERBOARD ======== */
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.leaderboard-row:hover { background: var(--parchment); }
.leaderboard-rank {
  width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.leaderboard-rank.top1 { color: #B8860B; }
.leaderboard-rank.top2 { color: #708090; }
.leaderboard-rank.top3 { color: #8B5A2B; }
.leaderboard-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.88rem;
}
.leaderboard-score {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-dark);
}

/* ======== ACHIEVEMENT CARD ======== */
.achievement-card {
  background: var(--parchment);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.achievement-card.earned {
  border-color: rgba(200,169,126,0.4);
  background: linear-gradient(135deg, rgba(200,169,126,0.08), var(--parchment));
}
.achievement-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.achievement-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}
.achievement-card.locked .achievement-icon { filter: grayscale(1); opacity: 0.3; }
.achievement-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.achievement-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.achievement-card.locked .achievement-name,
.achievement-card.locked .achievement-desc {
  opacity: 0.5;
}
.achievement-earned-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #2D7D4E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
}

/* ======== AI ASSISTANT WIDGET ======== */
#ai-assistant-widget {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 9000;
  font-family: var(--font-body);
}

.ai-fab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2D4A7A 0%, #1A2E4A 100%);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 18px 12px 14px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 74, 122, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ai-fab:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(45, 74, 122, 0.5); }
.ai-fab.active { background: linear-gradient(135deg, #1A2E4A 0%, #0D1B2E 100%); }
.ai-fab-icon { font-size: 1.2rem; }
.ai-fab-label { white-space: nowrap; }
.ai-fab-pulse {
  position: absolute;
  top: 6px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: ai-pulse 2s ease-in-out infinite;
}
@keyframes ai-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.ai-chat-panel {
  position: fixed;
  bottom: 140px;
  right: 16px;
  width: 340px;
  max-width: calc(100vw - 32px);
  height: 480px;
  max-height: calc(100vh - 180px);
  background: white;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9001;
}
.ai-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.ai-chat-header {
  background: linear-gradient(135deg, #2D4A7A 0%, #1A2E4A 100%);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ai-chat-avatar {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ai-chat-header-info { flex: 1; min-width: 0; }
.ai-chat-name { color: white; font-size: 0.88rem; font-weight: 600; }
.ai-chat-status { color: rgba(255,255,255,0.6); font-size: 0.7rem; margin-top: 1px; }
.ai-chat-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 1rem; padding: 4px; border-radius: 4px;
  transition: color 0.2s;
}
.ai-chat-close:hover { color: white; }

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.ai-chat-messages::-webkit-scrollbar { width: 4px; }
.ai-chat-messages::-webkit-scrollbar-track { background: transparent; }
.ai-chat-messages::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 4px; }

.ai-msg { display: flex; max-width: 85%; }
.ai-msg-user { align-self: flex-end; }
.ai-msg-bot { align-self: flex-start; }
.ai-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text);
}
.ai-msg-bubble p { margin: 0 0 6px; }
.ai-msg-bubble p:last-child { margin-bottom: 0; }
.ai-msg-user .ai-msg-bubble {
  background: linear-gradient(135deg, #2D4A7A, #1A2E4A);
  color: white;
  border-radius: 14px 14px 4px 14px;
}
.ai-msg-bot .ai-msg-bubble {
  background: #F4F4F4;
  border-radius: 14px 14px 14px 4px;
}

.ai-typing { display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
.ai-typing span {
  width: 7px; height: 7px;
  background: #999;
  border-radius: 50%;
  animation: ai-bounce 1.2s ease-in-out infinite;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes ai-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.ai-quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.ai-quick-btn {
  background: white;
  border: 1px solid var(--sand);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.73rem;
  cursor: pointer;
  color: var(--text);
  transition: all 0.2s;
  white-space: nowrap;
}
.ai-quick-btn:hover {
  background: var(--parchment);
  border-color: var(--gold);
  color: var(--gold-dark);
}

.ai-chat-input-row {
  padding: 12px;
  border-top: 1px solid #F0F0F0;
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.ai-chat-input {
  flex: 1;
  border: 1.5px solid #E8E8E8;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.83rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.ai-chat-input:focus { border-color: #2D4A7A; }
.ai-chat-input:disabled { opacity: 0.5; }
.ai-send-btn {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #2D4A7A, #1A2E4A);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.ai-send-btn:hover:not(:disabled) { transform: scale(1.05); }
.ai-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ======== PASSPORT REPORT CTA ======== */
.passport-report-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(200,169,126,0.1), rgba(226,201,154,0.08));
  border: 1px solid rgba(200,169,126,0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.passport-report-cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.passport-report-icon { font-size: 1.8rem; flex-shrink: 0; }
.passport-report-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.passport-report-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.passport-report-cta > div { flex: 1; min-width: 0; }
.passport-report-error {
  text-align: center;
  color: var(--text-muted);
  padding: 20px;
  font-size: 0.85rem;
}

/* ======== CULTURAL JOURNEY REPORT CARD ======== */
.culture-report-card {
  position: relative;
  margin: 24px auto;
  max-width: 480px;
  background: linear-gradient(160deg, #1A2E4A 0%, #2D1B4E 40%, #1A3A2E 100%);
  border-radius: 24px;
  padding: 32px 28px;
  overflow: hidden;
  color: white;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.culture-report-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200,169,126,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(45,74,122,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.culture-report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  position: relative;
}
.culture-report-brand {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}
.culture-report-year {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.culture-report-hero {
  margin-bottom: 24px;
  position: relative;
}
.culture-report-personality {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8A97E;
  margin-bottom: 8px;
}
.culture-report-headline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: white;
  margin: 0;
}
.culture-report-stats {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.culture-report-stat {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.culture-report-stat:last-child { border-right: none; }
.culture-report-stat-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #C8A97E;
  line-height: 1;
}
.culture-report-stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.culture-report-flags {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.culture-report-summary {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  position: relative;
}
.culture-report-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}
.culture-report-highlight {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
}
.culture-report-highlight-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.culture-report-highlight-label {
  font-size: 0.65rem;
  color: rgba(200,169,126,0.8);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.culture-report-highlight-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}
.culture-report-rank {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.culture-report-rank-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C8A97E, #E2C99A);
  color: #1A2E4A;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 999px;
  margin-right: 8px;
}
.culture-report-share-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
  position: relative;
}
.culture-report-share-text {
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}
.culture-report-share-btn {
  width: 100%;
  background: linear-gradient(135deg, #C8A97E, #A8855A);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.culture-report-share-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.culture-report-footer {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  position: relative;
}
