}

.yymh-profile-layout {
  background: linear-gradient(135deg, #0f0f23 0%, #16213e 50%, #1a1a2e 100%);
}

.yymh-user-card {
  position: relative;
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.yymh-user-card:hover {
  transform: scale(1.02);
}

.yymh-vip-badge {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  animation: vipGlow 2s ease-in-out infinite alternate;
}

@keyframes vipGlow {
  from {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
  }
}

.yymh-reading-history {
  display: grid;
  gap: 1.5rem;
}

.yymh-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.yymh-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 3px;
  transition: width 0.3s ease;
  width: var(--progress, 0%);
}

.yymh-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.yymh-achievement-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  perspective: 1000px;
}

.yymh-achievement-card:hover {
  transform: scale(1.05) rotateY(5deg);
}

.yymh-stats-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));