/* Floating Search Header */

.poster-info {
  bottom: 60px !important;
}

.poster-card {
  min-height: 480px !important;
}

/* Professional Hero Section */


/* Professional Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.08;
  animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
  top: -20%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #9ca3af, #d1d5db);
  animation-delay: -4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Professional Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #d1d5db, #9ca3af, #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

/* Professional Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
}

.feature-card:hover .feature-icon {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.08);
  color: #d1d5db;
}

/* Professional CTA Section */
.cta-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(8px);
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
}

/* Additional Professional Styles */

/* Professional Gradient Text */
.professional-gradient-text {
  background: linear-gradient(135deg, #ffffff, #d1d5db, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Professional Button Styles */
.cta-button {
  background: #ffffff;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Professional Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #9ca3af;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Professional Card Variants */
.highlight-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

/* Professional List Styles */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #d1d5db;
}

.feature-list-item:last-child {
  border-bottom: none;
}

.feature-list-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  color: #9ca3af;
  flex-shrink: 0;
}

/* Professional Spacing Utilities */
.section-spacing {
  padding: 4rem 0;
}

.large-spacing {
  padding: 6rem 0;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Professional Animation Enhancements */
.fade-in {
  animation: fadeInProfessional 0.6s ease-out;
}

.slide-up {
  animation: slideUpProfessional 0.6s ease-out;
}

@keyframes fadeInProfessional {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUpProfessional {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Professional Responsive Enhancements */
@media (max-width: 768px) {

  .poster-card {
    min-height: 300px !important;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .floating-element:nth-child(1) {
    width: 200px;
    height: 200px;
  }

  .floating-element:nth-child(2) {
    width: 250px;
    height: 250px;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem;
    margin: 2rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .section-spacing {
    padding: 2rem 0;
  }

  .large-spacing {
    padding: 3rem 0;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .cta-section {
    padding: 1.5rem;
  }
}

/* Professional Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
  .hero-section {
    background: radial-gradient(ellipse at top,
        rgba(156, 163, 175, 0.02) 0%,
        transparent 50%),
      radial-gradient(ellipse at bottom right,
        rgba(107, 114, 128, 0.015) 0%,
        transparent 50%),
      radial-gradient(ellipse at bottom left,
        rgba(75, 85, 99, 0.015) 0%,
        transparent 50%);
  }

  .floating-element {
    opacity: 0.05;
  }
}

/* Professional Print Styles */
@media print {
  .floating-element {
    display: none;
  }

  .hero-section {
    background: none;
  }

  .feature-card,
  .stat-item,
  .cta-section {
    background: transparent;
    border: 1px solid #000000;
    backdrop-filter: none;
  }

  .section-title,
  .stat-number {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
  }
}