/* src/client/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Roboto",
    "Oxygen",
    "Ubuntu",
    "Cantarell",
    "Fira Sans",
    "Droid Sans",
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  margin: 0;
  padding: 0;
}
.app {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.language-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}
.language-select {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 140px;
}
.language-select:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.language-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.language-select option {
  padding: 0.5rem;
  background: white;
  color: #4a5568;
}
.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  max-width: 100%;
  width: 100%;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.frame0 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}
.frame0 .card {
  max-width: 500px;
}
.frame1 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}
.frame1 .card {
  max-width: 700px;
}
.frame2 {
  max-width: 1200px;
  width: 100%;
}
.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.emoji {
  font-size: 1.2em;
  margin: 0 0.5rem;
}
.emoji-large {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.hero-text {
  text-align: center;
  margin-bottom: 2.5rem;
}
.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.highlight {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.feature-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.feature-emoji {
  font-size: 1.5rem;
  animation: float 3s ease-in-out infinite;
}
.feature-item span:last-child {
  font-size: 0.9rem;
  color: #718096;
  font-weight: 500;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}
.feeling-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}
.feeling-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  height: 100px;
  border: 3px solid transparent;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.feeling-btn.happy {
  border-color: #3182ce;
  color: #3182ce;
}
.feeling-btn.happy:hover,
.feeling-btn.happy.selected {
  background:
    linear-gradient(
      135deg,
      #3182ce,
      #2c5aa0);
  color: white;
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}
.feeling-btn.unhappy {
  border-color: #e53e3e;
  color: #e53e3e;
}
.feeling-btn.unhappy:hover,
.feeling-btn.unhappy.selected {
  background:
    linear-gradient(
      135deg,
      #e53e3e,
      #c53030);
  color: white;
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}
.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  background:
    linear-gradient(
      135deg,
      #ed8936,
      #dd6b20);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
}
.submit-btn:hover:not(:disabled) {
  background:
    linear-gradient(
      135deg,
      #dd6b20,
      #c05621);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(237, 137, 54, 0.4);
}
.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.peek-btn {
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  padding: 0.5rem 1rem;
  margin-top: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0.7;
  letter-spacing: 0.5px;
}
.peek-btn:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.05);
  opacity: 1;
  transform: translateY(-1px);
}
.peek-btn:active {
  transform: translateY(0);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  width: 100%;
}
.category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  height: 140px;
  border: 3px solid;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.category-btn.physical {
  border-color: #38b2ac;
  color: #38b2ac;
}
.category-btn.physical:hover:not(:disabled) {
  background:
    linear-gradient(
      135deg,
      #38b2ac,
      #319795);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(56, 178, 172, 0.3);
}
.category-btn.social {
  border-color: #805ad5;
  color: #805ad5;
}
.category-btn.social:hover:not(:disabled) {
  background:
    linear-gradient(
      135deg,
      #805ad5,
      #6b46c1);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(128, 90, 213, 0.3);
}
.category-btn.coding {
  border-color: #3182ce;
  color: #3182ce;
}
.category-btn.coding:hover:not(:disabled) {
  background:
    linear-gradient(
      135deg,
      #3182ce,
      #2c5aa0);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(49, 130, 206, 0.3);
}
.category-btn.studying {
  border-color: #38a169;
  color: #38a169;
}
.category-btn.studying:hover:not(:disabled) {
  background:
    linear-gradient(
      135deg,
      #38a169,
      #2f855a);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(56, 161, 105, 0.3);
}
.category-emoji {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}
.category-text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
}
.category-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.selection-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.summary-label {
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
}
.summary-value {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.summary-value.happy {
  color: #38a169;
  border-color: #38a169;
}
.summary-value.unhappy {
  color: #e53e3e;
  border-color: #e53e3e;
}
.feeling-badge {
  background:
    linear-gradient(
      135deg,
      #e8f4fd,
      #d6f1ff);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #2d3748;
}
.error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(254, 226, 226, 0.9);
  border: 1px solid #f56565;
  border-radius: 12px;
  color: #e53e3e;
  font-weight: 500;
  margin-top: 1rem;
}
.error-icon {
  font-size: 1.25rem;
}
.loading {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(237, 242, 247, 0.9);
  border-radius: 12px;
  color: #4a5568;
  font-weight: 500;
  margin-top: 1rem;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.spinner.large {
  width: 40px;
  height: 40px;
  border-width: 4px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.header-card {
  text-align: center;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.filter-select {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}
@media (pointer: coarse) {
  .filter-select {
    -webkit-appearance: listbox !important;
    -moz-appearance: listbox !important;
    appearance: listbox !important;
    background: white !important;
    backdrop-filter: none !important;
    border: 2px solid #667eea !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    min-height: 44px !important;
    padding: 0.75rem 1rem !important;
  }
  .filter-select option {
    font-size: 16px !important;
    padding: 0.75rem !important;
    background: white !important;
    color: #333 !important;
  }
}
.filter-select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.filter-select option {
  padding: 0.75rem;
  background: white;
  color: #4a5568;
  font-size: 1rem;
  font-weight: 500;
}
.loading-card {
  text-align: center;
}
.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.loading-content h3 {
  color: #4a5568;
  font-size: 1.25rem;
  font-weight: 600;
}
.progress-bar {
  width: 300px;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background:
    linear-gradient(
      90deg,
      #667eea,
      #764ba2);
  border-radius: 3px;
  animation: progress 2s ease-in-out infinite;
}
@keyframes progress {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
.globe-card {
  text-align: center;
}
.globe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  aspect-ratio: 1 / 1;
  max-width: 600px;
  margin: 0 auto;
}
.globe-canvas {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.stats-card {
  text-align: left;
}
.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.stats-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}
.stats-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.meta-tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 0.25rem 0.75rem;
  border-radius: 16px;
  font-size: 0.85rem;
  font-weight: 500;
}
.meta-separator {
  color: #a0aec0;
  font-weight: 600;
}
.stats-content {
  display: flex;
  flex-direction: column;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 0.5rem;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.5;
}
.stat-highlight {
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 6px;
}
.stat-highlight.happy {
  background: rgba(56, 161, 105, 0.1);
  color: #38a169;
}
.stat-highlight.unhappy {
  background: rgba(229, 62, 62, 0.1);
  color: #e53e3e;
}
.stat-category {
  font-weight: 600;
  color: #667eea;
}
.stats-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
  text-align: center;
}
.badge {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0.25rem;
}
.badge.large {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.badge.blue {
  background:
    linear-gradient(
      135deg,
      #3182ce,
      #2c5aa0);
  color: white;
}
.badge.teal {
  background:
    linear-gradient(
      135deg,
      #38b2ac,
      #319795);
  color: white;
}
.badge.purple {
  background:
    linear-gradient(
      135deg,
      #805ad5,
      #6b46c1);
  color: white;
}
.badge.green {
  background:
    linear-gradient(
      135deg,
      #48bb78,
      #38a169);
  color: white;
}
.badge.red {
  background:
    linear-gradient(
      135deg,
      #f56565,
      #e53e3e);
  color: white;
}
.badge.orange {
  background:
    linear-gradient(
      135deg,
      #ed8936,
      #dd6b20);
  color: white;
}
.chart-card {
  text-align: center;
  overflow-x: auto;
}
.chart-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.chart-divider {
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      #e2e8f0,
      transparent);
  margin-bottom: 1.5rem;
}
.chart-container {
  margin-top: 1rem;
  width: 100%;
  min-width: 300px;
}
.reset-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background:
    linear-gradient(
      135deg,
      #805ad5,
      #6b46c1);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(128, 90, 213, 0.3);
  margin: 2rem auto 0;
}
.reset-btn:hover {
  background:
    linear-gradient(
      135deg,
      #6b46c1,
      #553c9a);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(128, 90, 213, 0.4);
}
.error-card {
  text-align: center;
  color: #e53e3e;
  background: rgba(254, 226, 226, 0.9);
  border: 1px solid #f56565;
}
.error-card .error-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.error-card p {
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .app {
    padding: 1rem;
  }
  .card {
    padding: 1.5rem;
  }
  .main-title {
    font-size: 2rem;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .filters {
    flex-direction: column;
    gap: 1rem;
  }
  .filter-select {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    -webkit-appearance: listbox;
    -moz-appearance: listbox;
    appearance: listbox;
    background-image: none;
    border: 2px solid #667eea;
    border-radius: 8px;
    min-height: 44px;
  }
  .filter-select option {
    font-size: 1rem;
    padding: 0.75rem;
  }
  .feeling-buttons {
    gap: 1rem;
  }
  .feeling-btn {
    height: 80px;
    font-size: 1rem;
  }
  .category-btn {
    height: 100px;
  }
  .stats-text {
    font-size: 0.9rem;
  }
  .stats-header {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .stats-meta {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .meta-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 1rem;
  }
  .selection-summary {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
  }
  .hero-features {
    gap: 1.5rem;
  }
  .feature-item span:last-child {
    font-size: 0.85rem;
  }
  .language-switcher {
    top: 0.5rem;
    right: 0.5rem;
  }
  .language-select {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    min-width: 120px;
  }
  .frame2 {
    max-width: 100%;
    padding: 0;
  }
  .globe-card {
    padding: 1rem;
  }
  .globe-container {
    padding: 0.5rem;
    overflow: hidden;
    display: flex !important;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    max-width: 100vw;
    max-height: 100vw;
  }
  .globe-canvas {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 350px !important;
    max-height: 350px !important;
    min-width: 250px;
    min-height: 250px;
    object-fit: contain;
  }
  .chart-card {
    padding: 1rem;
  }
  .chart-title {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }
  .chart-container {
    margin-top: 0.5rem;
    width: 100%;
    overflow-x: auto;
    min-height: 250px;
  }
  .stats-card {
    padding: 1rem;
  }
  .header-card {
    padding: 1rem;
  }
  .header-card .main-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .reset-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 1rem auto 0;
    width: fit-content;
  }
  .peek-btn {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    margin-top: 1rem;
  }
}
@media (max-width: 480px) {
  .app {
    padding: 0.5rem;
  }
  .card {
    padding: 1rem;
  }
  .main-title {
    font-size: 1.8rem;
  }
  .feeling-btn {
    height: 80px;
    font-size: 1.1rem;
  }
  .category-btn {
    height: 120px;
  }
  .category-emoji {
    font-size: 2rem;
  }
  .stats-text {
    font-size: 0.85rem;
  }
  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }
  .feature-item {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
  }
  .feature-emoji {
    font-size: 1.3rem;
  }
  .frame2 {
    max-width: 100%;
    padding: 0;
  }
  .globe-card {
    padding: 0.75rem;
  }
  .globe-container {
    padding: 0.25rem;
    aspect-ratio: 1 / 1;
    max-width: 100vw;
    max-height: 100vw;
  }
  .globe-canvas {
    aspect-ratio: 1 / 1 !important;
    max-width: 280px !important;
    max-height: 280px !important;
    min-width: 200px;
    min-height: 200px;
  }
  .chart-card {
    padding: 0.75rem;
  }
  .chart-title {
    font-size: 1rem;
  }
  .chart-container {
    min-height: 200px;
  }
  .stats-card {
    padding: 0.75rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.9rem;
  }
  .header-card {
    padding: 0.75rem;
  }
  .header-card .main-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
  }
  .filters {
    gap: 0.75rem;
  }
  .filter-select {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    -webkit-appearance: listbox;
    -moz-appearance: listbox;
    appearance: listbox;
    background-image: none;
    border: 2px solid #667eea;
    border-radius: 8px;
    min-height: 48px;
    backdrop-filter: none;
    background: white;
  }
  .filter-select option {
    font-size: 0.95rem;
    padding: 0.6rem;
  }
  .reset-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin: 0.75rem auto 0;
  }
  .peek-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .filter-select {
    -webkit-appearance: listbox !important;
    -moz-appearance: listbox !important;
    appearance: listbox !important;
    background: white !important;
    backdrop-filter: none !important;
    border: 2px solid #667eea !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    min-height: 48px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    color: #333 !important;
    width: 100% !important;
    max-width: none !important;
    min-width: auto !important;
  }
  .filter-select:focus {
    outline: 2px solid #667eea !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
  }
  .filter-select option {
    font-size: 16px !important;
    padding: 12px !important;
    background: white !important;
    color: #333 !important;
    min-height: 44px !important;
  }
}
@media (max-width: 320px) {
  .app {
    padding: 0.25rem;
  }
  .card {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }
  .main-title {
    font-size: 1.5rem;
  }
  .globe-container {
    aspect-ratio: 1 / 1;
    max-width: 100vw;
    max-height: 100vw;
  }
  .globe-canvas {
    aspect-ratio: 1 / 1 !important;
    max-width: 220px !important;
    max-height: 220px !important;
    min-width: 150px;
    min-height: 150px;
  }
  .chart-container {
    min-height: 150px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }
  .header-card .main-title {
    font-size: 1.1rem;
  }
  .filter-select {
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
    -webkit-appearance: listbox;
    -moz-appearance: listbox;
    appearance: listbox;
    background-image: none;
    border: 2px solid #667eea;
    border-radius: 6px;
    min-height: 50px;
    backdrop-filter: none;
    background: white;
    width: 100%;
  }
  .filter-select option {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
  .peek-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin-top: 0.5rem;
  }
}
.footer {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding: 2rem 0 1rem;
  border-radius: 24px 24px 0 0;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section {
  text-align: center;
}
.footer-section h4 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7fafc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}
.quirky-text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem !important;
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }
  to {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem 0;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.footer-emoji {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
@media (max-width: 768px) {
  .footer {
    margin-top: 2rem;
    padding: 1.5rem 0 1rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-bottom {
    padding: 1rem 1rem 0;
  }
  .footer-section h4 {
    font-size: 1rem;
  }
  .footer-section p {
    font-size: 0.85rem;
  }
  .footer-links {
    font-size: 0.8rem;
    gap: 0.3rem;
  }
}
@media (max-width: 480px) {
  .footer-content {
    padding: 0 0.5rem;
  }
  .footer-bottom {
    padding: 1rem 0.5rem 0;
  }
  .footer-links {
    justify-content: center;
    text-align: center;
  }
}
/*# sourceMappingURL=index.css.map */
