/* World-Class UI Design System */

/* Remove icons and numbers from content sections */
.feature-card .feature-icon,
.step-card .step-number {
  display: none !important;
}

.feature-card,
.step-card {
  padding: 2rem !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #DC143C, #FFD700, #DC143C);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover::before,
.step-card:hover::before {
  opacity: 1;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Floating Action Button - Premium Style */
.floating-share-button,
.fab,
.float-button {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #DC143C, #8B0000) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4) !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.floating-share-button:hover,
.fab:hover,
.float-button:hover {
  transform: scale(1.1) rotate(360deg) !important;
  box-shadow: 0 15px 50px rgba(220, 20, 60, 0.6) !important;
  border-color: #FFD700 !important;
}

.floating-share-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Generator Pages - World Class Design */
.generator-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.generator-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
  /* animation: rotate-slow 30s linear infinite; Removed rotation animation */
}

/* Removed rotation animation
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
*/

.generator-main {
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  min-height: 100vh;
  padding: 4rem 0;
}

.generator-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  padding: 3rem;
  margin: 2rem auto;
  max-width: 1200px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.generator-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #DC143C, #FFD700, #DC143C);
  border-radius: 2rem;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.generator-card:hover::before {
  opacity: 0.3;
}

/* Premium Input Design */
.input-premium {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.input-premium:focus {
  outline: none;
  border-color: #DC143C;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
  transform: translateY(-2px);
}

/* Premium Button Design */
.btn-generate {
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #DC143C, #8B0000);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-generate::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-generate:hover::before {
  width: 400px;
  height: 400px;
}

.btn-generate:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

/* Output Display - Premium Style */
.output-display {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin: 2rem 0;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.output-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.output-item:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 215, 0, 0.05));
  border-color: rgba(220, 20, 60, 0.3);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.output-item::after {
  content: 'Click to copy';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #DC143C, #8B0000);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.output-item:hover::after {
  opacity: 1;
}

/* Blog Cards - Premium Design */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.blog-card:hover::before {
  opacity: 1;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(220, 20, 60, 0.3);
  border-color: rgba(220, 20, 60, 0.3);
}

.blog-card-header {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 215, 0, 0.05));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(220, 20, 60, 0.3));
}

.blog-card-body {
  padding: 2rem;
}

.blog-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-card-excerpt {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Blog Article Page - Premium Design */
.article-hero {
  min-height: 60vh;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(220, 20, 60, 0.15) 0%, transparent 60%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.article-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.article-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  animation: slide 3s infinite;
}

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

.article-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #DC143C, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 1.5rem;
}

.article-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #DC143C, #FFD700);
  border-radius: 3px;
}

.article-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Feature Cards Grid */
.features-grid,
.steps-grid,
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Icon Integration with Lucide */
[data-lucide] {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .generator-card {
    padding: 2rem;
    margin: 1rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .article-title {
    font-size: 2rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .floating-share-button,
  .fab,
  .float-button {
    width: 50px !important;
    height: 50px !important;
    bottom: 1rem !important;
    right: 1rem !important;
  }
}