body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif;
}

.xxmh-bg-wrapper {
  background: linear-gradient(135deg, #fef7ed 0%, #fef3c7 30%, #fce7f3 70%, #f3e8ff 100%);
}

.xxmh-heart-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(251, 146, 60, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: heartPulse 3s ease-in-out infinite alternate;
}

.xxmh-floating-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.xxmh-floating-bubbles::before,
.xxmh-floating-bubbles::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(251, 146, 60, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: bubbleFloat 15s infinite linear;
}

.xxmh-floating-bubbles::before {
  top: 30%;
  left: 15%;
  animation-delay: 0s;
}

.xxmh-floating-bubbles::after {
  top: 70%;
  right: 15%;
  animation-delay: -7s;
}

@keyframes bubbleFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(20px) rotate(240deg); }
  100% { transform: translateY(0px) rotate(360deg); }
}

.xxmh-light-rays {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.xxmh-light-rays::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.6), transparent);
  animation: rayMove 6s infinite linear;
}

@keyframes rayMove {
  0% { left: -100%; }
  100% { left: 100%; }
}

.xxmh-main-nav {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(251, 146, 60, 0.2);
}

.xxmh-nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.xxmh-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fb923c, #ec4899);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.xxmh-nav-link:hover::after {
  width: 100%;
}

.xxmh-nav-link:hover {
  color: #fb923c;
  transform: translateY(-2px);
}

.xxmh-btn-primary {
  background: linear-gradient(135deg, #fb923c, #ec4899);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.xxmh-btn-primary:hover::before {
  left: 100%;
}

.xxmh-btn-secondary {
  border: 2px solid #fb923c;
  background: transparent;
  color: #fb923c;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.xxmh-btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #fb923c;
  transition: width 0.3s ease;
  z-index: -1;
}

.xxmh-btn-secondary:hover::before {
  width: 100%;
}

.xxmh-btn-secondary:hover {
  color: white;
  transform: scale(1.05);
}

.xxmh-btn-primary:hover,
.xxmh-btn-secondary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
}

@keyframes countUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.xxmh-stat-number {
  animation: countUp 0.8s ease-out forwards;
}

.xxmh-manga-card {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.xxmh-manga-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(251, 146, 60, 0.2);
}

@media (max-width: 768px) {
  .xxmh-nav-menu {
    display: none;
  }
  
  .xxmh-mobile-menu-btn {
    display: block;
  }
  
  .xxmh-hero-title {
    font-size: 2.5rem;
  }
  
  .xxmh-floating-bubbles::before,
  .xxmh-floating-bubbles::after {
    width: 80px;
    height: 80px;
  }
}

@keyframes heartPulse {
  0% { opacity: 0.4; }
  100% { opacity: 0.8; }
}