  /* YaRVerse AI Specific Styles */
.yarverse-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.7)), url('pic/hero.webp');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      padding: 180px 0 150px;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
}

.yarverse-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.yarverse-hero-content {
  position: relative;
  z-index: 2;
}

.yarverse-glow-btn {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.yarverse-glow-btn::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;
}

.yarverse-glow-btn:hover::before {
  left: 100%;
}

.yarverse-glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.yarverse-section {
  padding: 80px 0;
}

.yarverse-gradient-bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  color: #000;
}

.yarverse-card {
  background: white;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.yarverse-card:hover {
  transform: translateY(-10px);
  border-color: #FFD700;
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.yarverse-card-icon {
  font-size: 3rem;
  color: #FFD700;
  margin-bottom: 20px;
}

.yarverse-announcement-box {
  background: white;
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.yarverse-announcement-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: pulse-glow 4s infinite;
}

@keyframes pulse-glow {
  0% { opacity: 0.5; }
  50% { opacity: 0.8; }
  100% { opacity: 0.5; }
}

.yarverse-cta-section {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000;
  padding: 80px 0;
  text-align: center;
}

.yarverse-cta-btn {
  background: #000;
  color: #FFD700;
  border: 2px solid #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.yarverse-cta-btn:hover {
  background: transparent;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.yarverse-badge {
  display: inline-block;
  background: #FFD700;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.yarverse-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.yarverse-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #FFD700;
}

/* New Advanced Styles */
.yarverse-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.yarverse-feature-item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFD700;
  transition: all 0.3s ease;
}

.yarverse-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.yarverse-stats-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: white;
  padding: 80px 0;
}

.yarverse-stat-box {
  text-align: center;
  padding: 30px 20px;
}

.yarverse-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #FFD700;
  display: block;
  margin-bottom: 10px;
}

.yarverse-process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.yarverse-step-number {
  background: #FFD700;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 20px;
  flex-shrink: 0;
}

.yarverse-testimonial {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  border-top: 4px solid #FFD700;
}

.yarverse-testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.yarverse-testimonial-author {
  display: flex;
  align-items: center;
}

.yarverse-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-weight: 700;
  color: #000;
}

.yarverse-timeline {
  position: relative;
  padding-left: 30px;
}

.yarverse-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #FFD700;
}

.yarverse-timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.yarverse-timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFD700;
}

.yarverse-pricing-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.yarverse-pricing-card.featured {
  border-color: #FFD700;
  transform: scale(1.05);
}

.yarverse-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.yarverse-pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: #FFD700;
  margin: 20px 0;
}

.yarverse-faq-item {
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.yarverse-faq-question {
  padding: 20px;
  background: white;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.yarverse-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.yarverse-faq-item.active .yarverse-faq-answer {
  padding: 20px;
  max-height: 500px;
}

.yarverse-faq-item.active .yarverse-faq-question i {
  transform: rotate(180deg);
}

.yarverse-integration-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.yarverse-integration-logo {
  width: 100px;
  height: 60px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  color: #333;
}