/* LemonAI Main Styles */

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

/* Breadcrumb Styles */
.breadcrumb {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 8px 0;
  margin-top: 80px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  color: rgba(45, 55, 72, 0.5);
}

.breadcrumb-link {
  color: rgba(45, 55, 72, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: rgb(255, 215, 0);
}

.breadcrumb-current {
  color: rgb(255, 215, 0);
  font-weight: 600;
}

/* Lazy loading placeholder */
.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-image.loaded {
  opacity: 1;
}

/* Language Selector Styles */
.nav-right .language-selector {
  position: relative;
  display: flex;
  align-items: center;
}

/* Desktop Language Selector - Show on larger screens */
@media (min-width: 769px) {
  .nav-right .language-selector {
    display: flex !important;
  }
}

.nav-right .language-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-right .language-btn:hover {
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.1);
  color: #1a202c;
  transform: translateY(-1px);
}

.nav-right .language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  z-index: 10001;
  width: max-content;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  margin-top: 8px;
}

.nav-right .language-dropdown.show {
  display: block;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 14px;
  color: #2d3748;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(255, 215, 0, 0.1);
}

.language-option.active {
  background: rgba(255, 215, 0, 0.15);
  color: rgb(22, 163, 74);
  font-weight: 600;
}

.language-checkmark {
  color: rgb(22, 163, 74);
  font-weight: 700;
  font-size: 16px;
  margin-left: 8px;
}

.language-flag {
  font-size: 16px;
}

/* Mobile Language Selector */
.mobile-language-selector {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  margin-top: 10px;
}

.mobile-language-btn {
  width: 100%;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.mobile-language-dropdown {
  top: 100%;
  right: 0;
  left: 0;
  margin-top: 8px;
  position: relative;
  width: 100%;
}

/* RTL Support */
.rtl {
  direction: rtl;
}

.rtl .language-dropdown {
  right: auto;
  left: 0;
}

/* Critical above-the-fold styles only */
body {
  margin: 0;
  padding: 0;
  overscroll-behavior-y: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(22, 163, 74, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              linear-gradient(135deg, #fefce8 0%, #ecfdf5 50%, #f7fee7 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Critical navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 32px;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: none;
}

.nav-left-section{
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-left {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(45deg, rgb(255, 215, 0), #ffd700, rgb(255, 215, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
  to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8)); }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-center{
    display: flex;
    gap: 2rem;
}

.nav-center a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, rgb(255, 215, 0), rgb(22, 163, 74));
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-center a:hover {
  color: #1a202c;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-1px);
}

.nav-center a:hover::after {
  width: 70%;
}

.nav-right a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 8px;
}

.nav-right a:hover {
  color: #1a202c;
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-1px);
}

.nav-right .get-started {
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  color: rgb(22, 163, 74);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  border: none;
}

.nav-right .get-started:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
  background: linear-gradient(135deg, #ffd700, rgb(255, 215, 0));
}

/* 用户信息样式 */
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-name {
  color: #2d3748;
  font-weight: 600;
  font-size: 15px;
}

.logout-btn {
  background: rgba(45, 55, 72, 0.1);
  color: #2d3748;
  border: 2px solid rgba(45, 55, 72, 0.2);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.logout-btn:hover {
  background: rgba(45, 55, 72, 0.8);
  color: white;
  border-color: rgba(45, 55, 72, 0.8);
  transform: translateY(-1px);
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 5;
  height: 100vh;
  justify-content: center;
}

.main h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: #2d3748;
  line-height: 1.1;
}

.main h1 span {
  color: #2d3748;
}

@keyframes sparkle {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5) saturate(1.5); }
}

.main p {
  margin-top: 20px;
  font-size: 1.4rem;
  color: #1c1c1ca6;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.6;
}

.input-container {
  margin-top: 40px;
  position: relative;
}

.input-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px;
  width: 700px;
  height: 120px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2), 
              0 0 0 1px rgba(255, 215, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.input-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(255, 215, 0, 0.3), 
              0 0 0 1px rgba(255, 215, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(22, 163, 74, 0.2);
}

.input-box textarea {
  width: 100%;
  height: calc(100% - 20px);
  padding: 0;
  font-size: 1.1rem;
  border: none;
  outline: none;
  background: transparent;
  color: #333;
  border-radius: 15px;
  font-weight: 500;
  resize: none;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.5;
}

.input-box textarea::placeholder {
  color: #666;
}

.input-box button {
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700, rgb(255, 215, 0));
  border: none;
  padding: 12px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  color: rgb(22, 163, 74);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: absolute;
  bottom: 20px;
  right: 20px;
  min-width: 80px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.input-box button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.input-box button:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ffd700, rgb(255, 215, 0), #ffd700);
}

.input-box button:hover::before {
  left: 100%;
}

.input-box button:active {
  transform: scale(0.98);
}

/* 装饰性元素 */
.decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(22, 163, 74, 0.1));
  animation: float 15s ease-in-out infinite;
}

.decoration:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.decoration:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.decoration:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 25%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
  }
}

/* Community Data Styles */
.community-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 100px 40px;
  position: relative;
  z-index: 5;
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
}

.community-header {
  text-align: center;
  margin-bottom: 60px;
}

.community-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2d3748, #1a202c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
}

.community-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, rgb(255, 215, 0), rgb(22, 163, 74));
  border-radius: 2px;
}

.community-subtitle {
  font-size: 1.1rem;
  color: rgba(45, 55, 72, 0.7);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.community-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.sort-dropdown {
  position: relative;
}

.sort-select {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.2);
  padding: 14px 40px 14px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  outline: none;
}

.sort-select:hover,
.sort-select:focus {
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.sort-dropdown::after {
  content: '▼';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: rgba(255, 215, 0, 0.8);
  pointer-events: none;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.2);
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.6s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  color: rgb(22, 163, 74);
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 100%;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.community-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 0;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  min-width: 0;
  max-width: 100%;
  cursor: pointer;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, rgb(255, 215, 0), rgb(22, 163, 74));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.community-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(22, 163, 74, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.community-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.community-card:hover::before,
.community-card:hover::after {
  opacity: 1;
}

.community-card:hover .card-overlay {
  opacity: 1;
  visibility: visible;
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(22, 163, 74, 0.1));
  border-radius: 24px 24px 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  min-width: 0;
  max-width: 100%;
}

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

.card-description-area {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.card-description-text {
  color: rgba(45, 55, 72, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-content {
  padding: 18px;
  position: relative;
  z-index: 2;
}

.card-header {
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: calc(1.1rem * 1.3 * 2);
  min-height: calc(1.1rem * 1.3 * 2);
}

.card-author {
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.card-recommend {
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  color: rgb(22, 163, 74);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.card-recommend::before {
  content: '⭐';
  margin-right: 6px;
}

.card-date {
  font-size: 0.7rem;
  color: rgba(45, 55, 72, 0.4);
  font-weight: 400;
}

.card-date-bottom {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
}

/* 卡片悬浮蒙层 */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  padding: 0 20px 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 24px;
  z-index: 10;
}

.overlay-btn {
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  min-width: 100px;
}

.overlay-btn.remix {
  background: #2d3748;
  color: white;
  border: 2px solid #2d3748;
}

.overlay-btn.remix:hover {
  background: #1a202c;
  border-color: #1a202c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 55, 72, 0.3);
}

.overlay-btn.replay {
  background: white;
  color: #2d3748;
  border: 2px solid white;
}

.overlay-btn.replay:hover {
  background: #f7fafc;
  border-color: #f7fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.card-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(45, 55, 72, 0.6);
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

.stat-number {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(45, 55, 72, 0.9);
}

.stat-remixes .stat-number {
  color: #3b82f6;
}

.stat-experience .stat-number {
  color: #10b981;
}

.stat-evolving .stat-number {
  color: #f59e0b;
}

.loading-skeleton {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.skeleton-card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  height: 380px;
  position: relative;
  overflow: hidden;
  animation: skeleton-pulse 1.5s ease-in-out infinite alternate;
  padding: 0;
  border: 2px solid transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(25px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
  max-width: none;
}

@keyframes skeleton-pulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.skeleton-loading {
  animation: skeleton-pulse 1.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.skeleton-loading .card-image {
  background: rgba(0, 0, 0, 0.05) !important;
}

.skeleton-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 24px 24px 0 0;
}

.skeleton-card::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 18px;
  right: 18px;
  height: 30px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.skeleton-content {
  padding: 18px;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.skeleton-title {
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  margin-bottom: 8px;
  width: 85%;
}

.skeleton-date {
  height: 14px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  width: 40%;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* Show More 按钮样式 */
.show-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.show-more-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 150px;
}

.show-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.6s ease;
}

.show-more-btn:hover {
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  color: rgb(22, 163, 74);
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.show-more-btn:hover::before {
  left: 100%;
}

.show-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.show-more-btn:disabled:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  color: #2d3748;
  border-color: rgba(255, 215, 0, 0.3);
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pricing Section Styles */
.pricing-section {
  max-width: 1400px;
  margin: 120px auto 100px auto;
  padding: 0 40px;
  position: relative;
  z-index: 5;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #2d3748, #1a202c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.1;
}

.pricing-subtitle {
  font-size: 1.3rem;
  color: rgba(45, 55, 72, 0.7);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Toggle Switch */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.toggle-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(45, 55, 72, 0.6);
  transition: all 0.3s ease;
  cursor: pointer;
}

.toggle-label.active {
  color: rgb(255, 215, 0);
}

.toggle-switch {
  width: 60px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.toggle-slider {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  border-radius: 50%;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.toggle-switch.yearly .toggle-slider {
  transform: translateX(30px);
}

.save-badge {
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  color: rgb(22, 163, 74);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 8px;
}

/* Pricing Cards */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(25px);
  border-radius: 24px;
  padding: 30px 24px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.3);
}

.pricing-card.popular {
  border-color: rgb(255, 215, 0);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  color: rgb(22, 163, 74);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.card-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.price-number {
  display: inline-block;
  transition: all 0.3s ease;
}

.price-period {
  font-size: 1.1rem;
  color: rgba(45, 55, 72, 0.6);
  font-weight: 500;
}

.yearly-total {
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(45, 55, 72, 0.6);
  transition: all 0.3s ease;
  overflow: hidden;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.plan-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(45, 55, 72, 0.8);
  position: relative;
  padding-left: 24px;
  line-height: 1.4;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgb(22, 163, 74);
  font-weight: bold;
  font-size: 1rem;
}

.plan-button {
  width: 100%;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.free-btn {
  background: rgba(255, 215, 0, 0.1);
  color: #2d3748;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.free-btn:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-2px);
}

.pro-btn {
  background: linear-gradient(135deg, rgb(255, 215, 0), #ffd700);
  color: rgb(22, 163, 74);
  border: 2px solid transparent;
}

.pro-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.business-btn {
  background: #2d3748;
  color: white;
  border: 2px solid #2d3748;
}

.business-btn:hover {
  background: #1a202c;
  border-color: #1a202c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 55, 72, 0.3);
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  padding: 50px 0 0 0;
  margin-top: 80px;
  position: relative;
  overflow: visible;
  width: 100%;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  padding: 0 40px 30px 40px;
}

/* Footer Language Selector positioning */
.footer-language-selector {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10002;
}

/* In footer context, adjust button styling */
.footer .language-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.footer .language-btn:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-logo .lemon {
  color: rgb(255, 215, 0);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-logo .ai {
  color: rgb(22, 163, 74);
  text-shadow: 0 0 20px rgba(22, 163, 74, 0.3);
}

.footer-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1rem;
}

.footer-slogan {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  font-size: 0.85rem;
}

.footer-social-link:hover {
  color: white;
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.footer-social-link:hover .footer-social-icon {
  transform: scale(1.1);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), rgba(22, 163, 74, 0.3), transparent);
  margin: 10px 0;
}

.footer .footer-copyright {
  font-size: 11px !important;
  color: rgba(255, 215, 0, 0.8) !important;
  text-align: center;
  font-weight: 400;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  gap: 4px;
  z-index: 1001;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-nav-toggle:hover {
  background: rgba(255, 215, 0, 0.1);
}

.mobile-nav-toggle span {
  width: 22px;
  height: 3px;
  background: #2d3748;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-nav-toggle.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:last-child {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  z-index: 999;
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav-menu.show {
  transform: translateY(0);
}

.mobile-nav-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-menu a:last-child {
  border-bottom: none;
}

.mobile-nav-menu a:hover {
  color: rgb(255, 215, 0);
  padding-left: 10px;
}

/* Mobile Logo Styles */
.mobile-logo {
  display: none;
}

/* 响应式设计 - Community Grid */
@media (max-width: 1200px) {
  .community-grid,
  .loading-skeleton {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .community-grid,
  .loading-skeleton {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .community-section {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .community-grid,
  .loading-skeleton {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .community-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  
  .community-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .community-filters {
    gap: 15px;
    flex-direction: column;
    align-items: stretch;
  }
  
  .sort-dropdown {
    width: 100%;
  }
  
  .sort-select {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .filter-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
  
  .community-card {
    margin: 0 auto;
    max-width: 100%;
  }
  
  .card-image {
    height: 140px;
  }
  
  .card-title {
    font-size: 0.9rem;
    line-height: 1.2;
    height: auto;
    min-height: auto;
    -webkit-line-clamp: 2;
  }
  
  .card-content {
    padding: 12px;
  }
  
  .card-stats {
    flex-direction: row;
    gap: 6px;
    justify-content: space-around;
  }
  
  .stat-item {
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
  }
  
  .stat-label {
    font-size: 0.6rem;
  }
  
  .stat-number {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
  
  .skeleton-card {
    height: 260px;
  }
  
  .show-more-btn {
    width: 100%;
    max-width: none;
    padding: 16px;
    font-size: 0.95rem;
  }
}

/* Extra Small Mobile - Community */
@media (max-width: 480px) {
  .community-section {
    padding: 40px 12px 60px 12px;
  }
  
  .community-title {
    font-size: 1.8rem;
  }
  
  .community-subtitle {
    font-size: 0.9rem;
  }
  
  .sort-select {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  
  .community-grid,
  .loading-skeleton {
    gap: 12px;
  }
  
  .card-image {
    height: 120px;
  }
  
  .card-content {
    padding: 10px;
  }
  
  .card-title {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }
  
  .stat-label {
    font-size: 0.55rem;
  }
  
  .stat-number {
    font-size: 0.75rem;
  }
  
  .skeleton-card {
    height: 240px;
  }
  
  .overlay-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
    min-width: 60px;
  }
}

/* Pricing Responsive Design */
@media (max-width: 1000px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 0 16px;
    margin: 80px auto 80px auto;
  }
  
  .pricing-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  
  .pricing-subtitle {
    font-size: 1.1rem;
    padding: 0 10px;
  }
  
  .pricing-toggle {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .toggle-label {
    font-size: 0.95rem;
  }
  
  .save-badge {
    margin-left: 4px;
    padding: 3px 6px;
    font-size: 0.75rem;
  }
  
  .pricing-card {
    padding: 24px 18px;
  }
  
  .plan-name {
    font-size: 1.4rem;
  }
  
  .price-amount {
    font-size: 2.2rem;
  }
  
  .plan-features li {
    font-size: 0.85rem;
    padding: 6px 0;
  }
  
  .plan-button {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  .mobile-logo {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .mobile-logo img {
    width: 140px;
    height: auto;
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 0 12px;
    margin: 60px auto 60px auto;
  }
  
  .pricing-title {
    font-size: 1.8rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-toggle {
    gap: 10px;
    margin-top: 30px;
  }
  
  .toggle-label {
    font-size: 0.9rem;
  }
  
  .toggle-switch {
    width: 50px;
    height: 26px;
  }
  
  .toggle-slider {
    width: 20px;
    height: 20px;
  }
  
  .toggle-switch.yearly .toggle-slider {
    transform: translateX(24px);
  }
  
  .pricing-card {
    padding: 20px 16px;
  }
  
  .plan-name {
    font-size: 1.3rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .price-period {
    font-size: 1rem;
  }
  
  .plan-features li {
    font-size: 0.8rem;
    padding: 5px 0;
    padding-left: 20px;
  }
  
  .plan-button {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  
  .popular-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .mobile-logo img {
    width: 120px;
    max-width: 120px;
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .navbar {
    padding: 8px 16px;
    flex-wrap: nowrap;
    height: auto;
    min-height: 60px;
    position: relative;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-left-section {
    display: none;
  }
  
  .nav-center {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex !important;
    order: -1;
    margin-right: 0;
  }
  
  .nav-right {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }
  
  .nav-right .language-selector {
    display: none; /* Hide desktop language selector on mobile */
  }
  
  .nav-right a {
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-right .get-started {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }
  
  .user-name {
    font-size: 14px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  .logout-btn {
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 8px;
  }

  /* Main Section Responsive */
  .main {
    min-height: calc(100vh - 100px);
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .main h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .main p {
    font-size: 1.1rem;
    margin-top: 16px;
    padding: 0 10px;
  }
  
  .input-container {
    margin-top: 30px;
  }
  
  .input-box {
    width: calc(100vw - 32px);
    max-width: 100%;
    height: 120px;
    padding: 16px;
  }
  
  .input-box textarea {
    height: calc(100% - 16px);
    font-size: 1rem;
  }
  
  .input-box button {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px;
    font-size: 0.9rem;
    height: 40px;
    min-width: 70px;
  }
  
  .community-section {
    padding: 60px 16px 80px 16px;
  }

  /* 移动端防止水平滚动 */
  body {
    overflow-x: hidden;
  }

  /* Responsive Footer */
  .footer {
    padding: 40px 0 0 0;
  }
  
  .footer-container {
    gap: 24px;
    padding: 0 20px 24px 20px;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .footer-social-link {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
  .main h1 {
    font-size: 1.8rem;
  }
  
  .main p {
    font-size: 1rem;
  }
  
  .input-box {
    width: calc(100vw - 24px);
    height: 110px;
    padding: 12px;
  }
  
  .input-box button {
    bottom: 12px;
    right: 12px;
    padding: 8px 12px;
    font-size: 0.85rem;
    height: 36px;
    min-width: 60px;
  }
  
  .navbar {
    padding: 6px 12px;
    min-height: 56px;
  }
  
  .nav-right {
    gap: 8px;
  }
  
  .nav-right a {
    font-size: 13px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-right .get-started {
    padding: 8px 14px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .user-name {
    font-size: 12px;
    max-width: 80px;
  }
  
  .logout-btn {
    padding: 6px 10px;
    font-size: 12px;
  }
}

/* Touch Optimization for Mobile */
@media (max-width: 768px) {
  button,
  .nav-right a,
  .overlay-btn,
  .plan-button,
  .show-more-btn {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
  }
  
  .input-box button {
    min-height: 40px;
    min-width: 60px;
  }
  
  .nav-center a {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .community-card {
    touch-action: manipulation;
    cursor: pointer;
  }
  
  /* Better touch targets for small elements */
  .sort-select {
    min-height: 44px;
  }
  
  .toggle-switch {
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
  }
  
  .footer-social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
  }
}