/* LYVRE Design System - Site statique
Couleurs basées sur la charte: #113759, #fdd200, #e36100, #16223c
Toutes les couleurs en HSL pour cohérence et accessibilité
*/

/* Variables CSS */
:root {
  /* Couleurs principales LYVRE */
  --background: hsl(220, 45%, 8%);
  --foreground: hsl(48, 100%, 96%);

  --card: hsl(221, 39%, 11%);
  --card-foreground: hsl(48, 100%, 96%);

  --popover: hsl(221, 39%, 11%);
  --popover-foreground: hsl(48, 100%, 96%);

  /* Bleu nuit principal (#113759) */
  --primary: hsl(221, 66%, 21%);
  --primary-foreground: hsl(48, 100%, 96%);
  --primary-glow: hsl(221, 66%, 35%);

  /* Jaune doré (#fdd200) */
  --accent: hsl(48, 100%, 50%);
  --accent-foreground: hsl(221, 66%, 21%);
  --accent-glow: hsl(48, 100%, 65%);

  /* Orange immersion (#e36100) */
  --secondary: hsl(25, 100%, 45%);
  --secondary-foreground: hsl(48, 100%, 96%);
  --secondary-glow: hsl(25, 100%, 60%);

  /* Bleu marine profond (#16223c) */
  --muted: hsl(221, 45%, 16%);
  --muted-foreground: hsl(217, 20%, 65%);

  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(48, 100%, 96%);

  --border: hsl(221, 39%, 18%);
  --input: hsl(221, 39%, 18%);
  --ring: hsl(48, 100%, 50%);

  /* Gradients immersifs */
  --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--muted) 50%, var(--primary-glow) 100%);
  --gradient-accent: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);
  --gradient-depth: linear-gradient(180deg, transparent 0%, hsla(221, 66%, 21%, 0.4) 50%, var(--muted) 100%);
  
  /* Ombres et effets */
  --shadow-glow: 0 0 40px hsla(48, 100%, 50%, 0.3);
  --shadow-immersive: 0 25px 50px -12px hsla(221, 66%, 21%, 0.5);
  --shadow-depth: 0 10px 30px -5px hsla(221, 45%, 16%, 0.8);

  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  --radius: 0.75rem;
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Utilitaires généraux */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hidden {
  display: none !important;
}

/* Skip to content pour accessibilité */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  z-index: 1000;
  transition: top 0.3s;
}

.skip-to-content:focus {
  top: 1rem;
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid hsla(48, 100%, 50%, 0.3);
}

.btn-outline:hover {
  background: hsla(48, 100%, 50%, 0.1);
}

.btn-outline.border-accent {
  border-color: hsla(48, 100%, 50%, 0.3);
  color: var(--accent);
}

.btn-outline.border-accent:hover {
  background: hsla(48, 100%, 50%, 0.1);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--muted-foreground);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--accent);
}

.btn-large {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  height: auto;
  min-height: 60px;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-glow:hover::before {
  transform: translateX(100%);
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: var(--transition-smooth);
}

.navigation.scrolled {
  background: hsla(220, 45%, 8%, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 2rem;
  width: auto;
  max-width: 120px;
  background: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link i {
  width: 1rem;
  height: 1rem;
}

.nav-search {
  display: none;
}

.search-container {
  position: relative;
}

.search-input {
  width: 16rem;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  background: hsla(220, 45%, 8%, 0.5);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  color: var(--foreground);
  transition: var(--transition-smooth);
}

.search-input:focus {
  outline: none;
  border-color: hsla(48, 100%, 50%, 0.5);
  background: hsla(220, 45%, 8%, 0.8);
  backdrop-filter: blur(10px);
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  color: var(--foreground);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
  background: var(--muted);
}

.mobile-menu-btn i {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsla(220, 45%, 8%, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-content {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--accent);
}

.mobile-nav-link i {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
  padding: 5rem 1rem;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Particules mystiques */
.hero-bg-effects::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(253, 210, 0, 0.8), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(253, 210, 0, 0.6), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(253, 210, 0, 0.9), transparent),
    radial-gradient(1px 1px at 60% 10%, rgba(253, 210, 0, 0.7), transparent),
    radial-gradient(2px 2px at 80% 80%, rgba(253, 210, 0, 0.5), transparent),
    radial-gradient(1px 1px at 10% 60%, rgba(253, 210, 0, 0.8), transparent);
  background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 180px 180px, 220px 220px;
  animation: particlesFloat 20s linear infinite;
  opacity: 0.6;
}

.hero-bg-effects::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(3px 3px at 15% 80%, rgba(255, 165, 0, 0.4), transparent),
    radial-gradient(2px 2px at 85% 20%, rgba(255, 165, 0, 0.6), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(255, 165, 0, 0.8), transparent),
    radial-gradient(2px 2px at 25% 25%, rgba(255, 165, 0, 0.5), transparent),
    radial-gradient(1px 1px at 75% 75%, rgba(255, 165, 0, 0.7), transparent);
  background-size: 180px 180px, 240px 240px, 160px 160px, 200px 200px, 280px 280px;
  animation: particlesFloat 25s linear infinite reverse;
  opacity: 0.4;
}

.bg-gradient-animated {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, hsla(48, 100%, 50%, 0.05), transparent, hsla(25, 100%, 45%, 0.05));
  animation: pulse 8s ease-in-out infinite;
}

.light-waves {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

/* Orbes mystiques */
.light-waves::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(253, 210, 0, 0.3) 0%, rgba(253, 210, 0, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: orbFloat1 15s ease-in-out infinite;
  filter: blur(1px);
}

.light-waves::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 165, 0, 0.4) 0%, rgba(255, 165, 0, 0.15) 50%, transparent 80%);
  border-radius: 50%;
  top: 60%;
  right: 15%;
  animation: orbFloat2 18s ease-in-out infinite;
  filter: blur(0.5px);
}

.wave {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, hsla(48, 100%, 50%, 0.1), transparent);
  animation: float 15s ease-in-out infinite;
}

.wave-1 {
  top: 0;
  transform: skew(0deg, -12deg);
  animation-delay: 0s;
  animation-duration: 15s;
}

.wave-2 {
  top: 25%;
  transform: skew(0deg, 6deg);
  background: linear-gradient(90deg, transparent, hsla(25, 100%, 45%, 0.08), transparent);
  animation-delay: 5s;
  animation-duration: 12s;
}

.wave-3 {
  bottom: 0;
  transform: skew(0deg, 3deg);
  background: linear-gradient(90deg, transparent, hsla(221, 66%, 21%, 0.08), transparent);
  animation-delay: 8s;
  animation-duration: 18s;
}

.radial-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, hsla(48, 100%, 50%, 0.03), transparent);
  animation: pulse 10s ease-in-out infinite;
}

/* Étincelles magiques */
.radial-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 30% 20%, rgba(253, 210, 0, 1), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(253, 210, 0, 0.8), transparent),
    radial-gradient(1px 1px at 20% 90%, rgba(255, 165, 0, 1), transparent),
    radial-gradient(1px 1px at 90% 30%, rgba(255, 165, 0, 0.9), transparent),
    radial-gradient(1px 1px at 50% 60%, rgba(253, 210, 0, 0.7), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(255, 165, 0, 0.8), transparent);
  background-size: 100px 100px, 150px 150px, 120px 120px, 180px 180px, 90px 90px, 200px 200px;
  animation: sparklesTwinkle 8s ease-in-out infinite;
  opacity: 0.8;
}

.light-lines {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.light-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(48, 100%, 50%, 0.5), transparent);
  animation: pulse 6s ease-in-out infinite;
}

.line-1 {
  top: 0;
}

.line-2 {
  bottom: 33%;
  background: linear-gradient(90deg, transparent, hsla(25, 100%, 45%, 0.4), transparent);
  animation-delay: 3s;
  animation-duration: 8s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-text {
  margin-bottom: 3rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: titleReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
  position: relative;
}

.hero-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(ellipse at center, rgba(253, 210, 0, 0.05) 0%, transparent 70%);
  opacity: 0;
  animation: subtleGlow 1.5s ease-out 1.5s both;
  pointer-events: none;
  z-index: -1;
}

.hero-highlight {
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: highlightGlow 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both,
             shimmer 3s ease-in-out 2s infinite;
  display: inline-block;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.8s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: var(--transition-smooth);
}

.feature-item.active {
  color: var(--accent);
  background: hsla(48, 100%, 50%, 0.1);
}

.feature-item i {
  width: 1rem;
  height: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 1.2s both;
}

.hero-works {
  margin-bottom: 3rem;
  animation: scaleIn 0.8s ease-out 1.6s both;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.work-card {
  position: relative;
  aspect-ratio: 2/2.5;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.work-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 0 30px rgba(253, 210, 0, 0.3);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  transition: opacity 0.3s ease;
}

.work-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: white;
}

.work-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.work-author {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.work-genre {
  font-size: 0.75rem;
  background: hsla(48, 100%, 50%, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.work-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.work-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.work-rating i {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--accent);
}

.work-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.work-card:hover .work-play {
  opacity: 1;
}

.play-btn {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: auto;
  height: auto;
}

.play-btn:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.5);
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.play-btn i {
  width: 1.5rem;
  height: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 1.8s both;
}

.scroll-indicator {
  position: relative;
  z-index: 30;
  margin-top: 3rem;
  animation: fadeInUp 0.6s ease-out 2.2s both;
}

.scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.scroll-link:hover {
  color: var(--accent);
}

.scroll-link span {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.scroll-arrow {
  width: 1rem;
  height: 1rem;
  animation: bounce 2s infinite;
}

.hero-transition {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 10rem;
  background: linear-gradient(to bottom, transparent, hsla(220, 45%, 8%, 0.2), var(--background));
  pointer-events: none;
}

/* Featured Section */
.featured-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--background), hsla(221, 45%, 16%, 0.1));
  overflow: visible;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
}

.scrolling-works {
  position: relative;
  overflow: hidden;
  padding: 1.25rem 0;
  margin-bottom: 3rem;
}

.works-track {
  display: flex;
  gap: 1.5rem;
  animation: scrollInfinite 40s linear infinite;
}

.featured-work-card {
  min-width: 280px;
  height: 380px;
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-bounce);
  cursor: pointer;
}

.featured-work-card:hover {
  border-color: hsla(48, 100%, 50%, 0.3);
  z-index: 10;
}

.featured-work-cover {
  height: 12rem;
  position: relative;
  overflow: hidden;
}

.featured-work-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-work-cover .cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-work-card:hover .cover-overlay {
  opacity: 1;
}

.featured-work-cover .play-btn-round {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-work-cover .play-btn-round:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.work-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.work-badge {
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
}

.badge-new {
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-popular {
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-work-content {
  padding: 1.5rem;
  height: calc(100% - 12rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.work-genre-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.work-info h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.featured-work-card:hover .work-info h3 {
  color: var(--accent);
}

.work-info p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.work-rating-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.work-rating-meta i {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.work-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
}

.work-duration i {
  width: 1rem;
  height: 1rem;
}

.work-listeners {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.work-listeners i {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
}

/* Styles améliorés pour les statistiques Featured Works */
.work-rating-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.work-rating-meta i {
  color: #fbbf24 !important;
  fill: #fbbf24 !important;
}

.work-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
}

.work-listeners {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.section-cta {
  text-align: center;
}

/* Discover Section */
.discover-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--background), hsla(221, 45%, 16%, 0.2));
}

.genre-selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.genre-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: hsla(221, 45%, 16%, 0.5);
  color: var(--muted-foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.genre-btn.active {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.genre-btn:hover:not(.active) {
  background: var(--muted);
  color: var(--foreground);
}

.genre-content {
  margin-bottom: 4rem;
}

.genre-header {
  text-align: center;
  margin-bottom: 2rem;
}

.genre-header-badge {
  display: inline-block;
  padding: 1px;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.genre-header-inner {
  background: var(--background);
  border-radius: calc(1rem - 1px);
  padding: 0.75rem 1.5rem;
}

.genre-header h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.genre-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.genre-badge {
  display: inline-block;
  padding: 1px;
  border-radius: 1rem;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  margin-bottom: 1rem;
}

.genre-badge .genre-name {
  background: var(--background);
  padding: 0.75rem 1.5rem;
  border-radius: calc(1rem - 1px);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.genre-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.story-card {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition-bounce);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.story-card .story-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.story-card .story-info {
  flex: 1;
}

.story-card .story-play-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.story-card:hover .story-play-btn {
  opacity: 1;
}

.story-card .story-play-btn:hover {
  background: hsla(48, 100%, 50%, 0.2);
  color: var(--accent);
}

.story-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-immersive);
  border-color: hsla(48, 100%, 50%, 0.3);
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.story-info h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.story-card:hover .story-info h4 {
  color: var(--accent);
}

.story-info p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.story-play-btn {
  opacity: 0;
  transition: var(--transition-smooth);
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
}

.story-card:hover .story-play-btn {
  opacity: 1;
  color: var(--accent);
}

.story-play-btn:hover {
  background: hsla(48, 100%, 50%, 0.2);
}

.story-play-btn i {
  width: 1rem;
  height: 1rem;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.story-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.story-rating i {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.story-listeners {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.story-listeners i {
  width: 1rem;
  height: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  background: hsla(221, 45%, 16%, 0.3);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  background: hsla(221, 45%, 16%, 0.5);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Immersion Section */
.immersion-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, hsla(221, 45%, 16%, 0.2), var(--background));
  position: relative;
  overflow: hidden;
}

.immersion-bg-effects {
  position: absolute;
  inset: 0;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  blur: 3rem;
}

.circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: hsla(48, 100%, 50%, 0.1);
  animation: pulse 8s ease-in-out infinite;
}

.circle-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: hsla(25, 100%, 45%, 0.1);
  animation: pulse 8s ease-in-out infinite;
  animation-delay: 1s;
}

.reading-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, hsla(221, 66%, 35%, 0.05), transparent, hsla(221, 66%, 21%, 0.05));
  animation: pulse 4s ease-in-out infinite;
}

.immersion-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 140px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-smooth);
  justify-content: center;
}

.tab-btn.active {
  background: var(--gradient-accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.tab-btn:hover:not(.active) {
  border-color: var(--accent);
  color: var(--accent);
}

.tab-btn i {
  width: 1rem;
  height: 1rem;
}

.tab-content {
  position: relative;
  z-index: 10;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.reader-demo {
  max-width: 1000px;
  margin: 0 auto;
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition-bounce);
}

.reader-demo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-immersive);
}

.reader-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.reader-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.reading-area {
  padding: 1.5rem;
  border: 1px solid hsla(221, 39%, 18%, 0.3);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
  background: hsla(221, 45%, 16%, 0.2);
}

.reading-area.active {
  background: linear-gradient(135deg, hsla(221, 66%, 35%, 0.05), hsla(221, 66%, 21%, 0.05));
  border-color: hsla(48, 100%, 50%, 0.3);
  box-shadow: var(--shadow-glow);
}

.reading-text {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.reading-text .word {
  transition: var(--transition-smooth);
}

.reading-text .word.highlighted {
  color: var(--accent);
  font-weight: 500;
  background: hsla(48, 100%, 50%, 0.1);
  padding: 0 0.25rem;
  border-radius: 0.25rem;
}

.reading-progress {
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 0.5rem;
  background: hsla(221, 45%, 16%, 0.3);
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: 0.25rem;
  transition: width 0.3s ease;
  width: 0%;
}

.current-effect {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--accent);
  animation: fadeIn 0.5s ease-in-out;
}

.current-effect i {
  width: 1rem;
  height: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.immersion-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.control-item {
  padding: 1rem;
  border: 1px solid hsla(221, 39%, 18%, 0.3);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition-smooth);
  background: hsla(221, 45%, 16%, 0.1);
}

.control-item.active {
  border-color: hsla(48, 100%, 50%, 0.3);
  background: hsla(48, 100%, 50%, 0.05);
  animation: pulse 2s ease-in-out infinite;
}

.control-icon {
  display: inline-flex;
  padding: 0.5rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.control-icon i {
  width: 1rem;
  height: 1rem;
  color: white;
}

.control-item .control-title {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.control-status {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 0.25rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition-bounce);
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-immersive);
  border-color: hsla(48, 100%, 50%, 0.3);
}

.feature-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.feature-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.feature-demo {
  font-size: 0.875rem;
  color: var(--accent);
  font-style: italic;
}

.stats-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.impact-stats {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-bounce);
}

.impact-stats:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-immersive);
}

.impact-stats h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.impact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.impact-value {
  font-size: 2.5rem;
  font-weight: bold;
}

.impact-value:nth-child(1) { color: var(--accent); }
.impact-value:nth-child(2) { color: var(--secondary); }
.impact-value:nth-child(3) { color: var(--accent); }

.impact-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.tech-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tech-section, .benefits-section {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition-bounce);
}

.tech-section:hover, .benefits-section:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-immersive);
}

.tech-section h4, .benefits-section h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.tech-list, .benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tech-list li, .benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.tech-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefits-list li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}


.cta-card {
  background: linear-gradient(90deg, hsla(221, 66%, 21%, 0.1), hsla(25, 100%, 45%, 0.1), hsla(48, 100%, 50%, 0.1));
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition-bounce);
}

.cta-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-immersive);
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
}

.cta-bg-circle {
  position: absolute;
  border-radius: 50%;
  blur: 2rem;
}

.cta-bg-circle:first-child {
  top: 0;
  left: 25%;
  width: 8rem;
  height: 8rem;
  background: hsla(48, 100%, 50%, 0.1);
}

.cta-bg-circle:last-child {
  bottom: 0;
  right: 25%;
  width: 10rem;
  height: 10rem;
  background: hsla(25, 100%, 45%, 0.1);
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}

.cta-icon {
  display: inline-flex;
  padding: 1rem;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.cta-icon i {
  width: 3rem;
  height: 3rem;
  color: white;
}

.cta-content h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
}

.feature-dot.secondary {
  background: var(--secondary);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, hsl(220, 45%, 8%) 0%, hsl(220, 45%, 4%) 100%);
  color: hsl(210, 20%, 80%);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid hsl(220, 40%, 15%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  /* Styles des sections du footer */
}

.footer-title {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: hsl(210, 20%, 65%);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-links.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-section {
  padding: 3rem 0;
  border-bottom: 1px solid hsla(221, 39%, 18%, 0.3);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: var(--transition-smooth);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px hsla(48, 100%, 50%, 0.2);
}

/* Styles pour liens et sections */

.link-section a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.link-section a:hover {
  color: var(--accent);
}

.link-section a i {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: 1px solid hsla(221, 39%, 18%, 0.3);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 2.5rem;
  height: 2.5rem;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: bold;
  background: var(--gradient-accent);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(221, 45%, 16%, 0.5);
  border-radius: var(--radius);
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: hsla(48, 100%, 50%, 0.2);
  color: var(--accent);
  transform: scale(1.1);
}

.social-link i {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(221, 39%, 18%, 0.3);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.copyright {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.heart-icon {
  width: 1rem;
  height: 1rem;
  color: #ef4444;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.legal-links a:hover {
  color: var(--accent);
}

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(1deg); 
  }
  50% { 
    transform: translateY(15px) translateX(-15px) rotate(-0.5deg); 
  }
  75% { 
    transform: translateY(-10px) translateX(5px) rotate(0.8deg); 
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    filter: blur(10px);
  }
  50% {
    opacity: 0.7;
    transform: translateY(20px) scale(0.9);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

@keyframes highlightGlow {
  0% {
    opacity: 0;
    transform: scale(0.8);
    text-shadow: 0 0 0 transparent;
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
    text-shadow: 0 0 15px rgba(253, 210, 0, 0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    text-shadow: 0 0 20px rgba(253, 210, 0, 0.2);
  }
}

@keyframes subtleGlow {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.15;
    transform: scale(1);
  }
}

/* Animations mystiques */
@keyframes particlesFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
  }
  75% {
    transform: translateY(-30px) translateX(15px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

@keyframes orbFloat1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-40px) translateX(20px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) translateX(-30px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-60px) translateX(10px) scale(1.1);
    opacity: 0.7;
  }
}

@keyframes orbFloat2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.4;
  }
  30% {
    transform: translateY(30px) translateX(-25px) scale(1.3);
    opacity: 0.8;
  }
  60% {
    transform: translateY(-15px) translateX(35px) scale(0.9);
    opacity: 0.5;
  }
  90% {
    transform: translateY(45px) translateX(-10px) scale(1.1);
    opacity: 0.6;
  }
}

@keyframes sparklesTwinkle {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  25% {
    opacity: 1;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  75% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-search {
    display: block;
  }

  .nav-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-legal {
    flex-direction: row;
    justify-content: space-between;
  }

}

@media (min-width: 1024px) {
  .nav-content {
    height: 5rem;
  }

  .logo-img {
    height: 2.5rem;
    width: auto;
    max-width: 140px;
    padding: 0.75rem;
    border-radius: 0.75rem;
  }
}

/* Respect des préférences d'animation */
@media (prefers-reduced-motion: reduce) {
  .hero-title {
    animation: none !important;
  }
  
  .hero-title::before {
    animation: none !important;
    opacity: 0 !important;
  }
  
  .hero-highlight {
    animation: none !important;
  }
  
  .hero-bg-effects::before,
  .hero-bg-effects::after,
  .light-waves::before,
  .light-waves::after,
  .radial-overlay::before {
    animation: none !important;
    opacity: 0.2 !important;
  }
}

/* Focus states pour accessibilité */
*:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent), 0 0 0 4px hsla(48, 100%, 50%, 0.2);
  border-radius: var(--radius);
}

/* Animations manquantes pour les éléments interactifs */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bounce-custom {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Classes d'animation manquantes */
.animate-shimmer {
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}

.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-bounce {
  animation: bounce-custom 1s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Styles pour les nouveaux éléments Hero */
.work-visual-effect {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--accent);
  z-index: 10;
}

.work-preview {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.work-card:hover .work-preview {
  transform: translateY(0);
}

.preview-text {
  font-size: 0.75rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  border-left: 2px solid var(--accent);
  padding-left: 0.5rem;
  color: rgba(255,255,255,0.9);
}

.immersion-indicators {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sound-waves {
  display: flex;
  gap: 0.25rem;
  align-items: end;
}

.sound-bar {
  width: 0.25rem;
  background: var(--accent);
  border-radius: 0.125rem;
}

.sound-bar:nth-child(1) { height: 0.75rem; }
.sound-bar:nth-child(2) { height: 0.5rem; }
.sound-bar:nth-child(3) { height: 1rem; }

.work-stats-inline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}

.work-stats-inline span {
  margin-right: 0.5rem;
}

.work-play button span {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

/* Améliorations des cartes d'œuvres */
.work-card {
  position: relative;
  overflow: hidden;
}

.work-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
  pointer-events: none;
}

.work-card:hover::before {
  transform: translateX(100%);
}

/* Effets de profondeur pour les sections */
.hero-section {
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, hsla(48, 100%, 50%, 0.05), transparent 50%),
              radial-gradient(circle at 70% 30%, hsla(25, 100%, 45%, 0.05), transparent 50%);
  pointer-events: none;
}

/* Styles pour les gradients de couvertures */
.cover-gradient {
  position: absolute;
  inset: 0;
  mix-blend-mode: overlay;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.featured-work-card:hover .cover-gradient {
  opacity: 0.5;
}

/* Gradients de couleur pour les couvertures */
.from-purple-600.to-pink-600 {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.from-red-600.to-orange-600 {
  background: linear-gradient(135deg, #dc2626, #ea580c);
}

.from-pink-600.to-rose-600 {
  background: linear-gradient(135deg, #db2777, #e11d48);
}

.from-indigo-600.to-purple-600 {
  background: linear-gradient(135deg, #4f46e5, #9333ea);
}

.from-gray-600.to-slate-600 {
  background: linear-gradient(135deg, #4b5563, #475569);
}

.from-rose-600.to-pink-600 {
  background: linear-gradient(135deg, #e11d48, #db2777);
}

.from-emerald-600.to-teal-600 {
  background: linear-gradient(135deg, #059669, #0d9488);
}

.from-orange-600.to-red-600 {
  background: linear-gradient(135deg, #ea580c, #dc2626);
}

/* Pattern décoratif pour les couvertures */
.cover-pattern {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(1rem);
  opacity: 0.2;
}

/* Styles pour les étoiles de notation - SUPPRIMÉ (doublon) */


/* Styles pour le lecteur de démonstration immersif */
.word {
  transition: all 0.3s ease;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

.word.highlighted {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  transform: scale(1.05);
}

.reading-area.active {
  background: linear-gradient(135deg, 
    rgba(17, 55, 89, 0.1), 
    rgba(253, 210, 0, 0.05)
  );
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(253, 210, 0, 0.2);
}

.reading-progress {
  margin-top: 1rem;
}

.progress-bar {
  width: 100%;
  height: 0.5rem;
  background: var(--muted);
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 0.25rem;
  transition: width 0.3s ease;
  width: 0%;
}

.current-effect {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--accent);
  animation: fadeIn 0.5s ease;
}

.current-effect i {
  animation: pulse 2s infinite;
}

.control-item.active {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(253, 210, 0, 0.3);
}

.control-status {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.8;
}

.reading-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, 
    rgba(253, 210, 0, 0.1) 0%, 
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.reading-overlay:not(.hidden) {
  opacity: 1;
}

/* Section Fonctionnalités Immersion */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: scale(1.05);
  border-color: hsla(48, 100%, 50%, 0.3);
  box-shadow: var(--shadow-immersive);
}

.feature-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature-demo {
  font-size: 0.875rem;
  color: var(--accent);
  font-style: italic;
}

/* Section Impact */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .impact-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.impact-stat {
  padding: 1rem;
}

.impact-value {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.impact-value.accent {
  color: var(--accent);
}

.impact-value.secondary {
  color: var(--secondary);
}

.impact-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.tech-benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .tech-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tech-card, .benefits-card {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.tech-list, .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-item, .benefits-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.tech-item:last-child, .benefits-item:last-child {
  margin-bottom: 0;
}

.tech-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.benefits-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Améliorations responsive pour les nouveaux éléments */
@media (max-width: 768px) {
  .work-preview {
    padding: 0.75rem;
  }
  
  .preview-text {
    font-size: 0.625rem;
    margin-bottom: 0.5rem;
  }
  
  .sound-waves {
    gap: 0.125rem;
  }
  
  .sound-bar {
    width: 0.125rem;
  }
  
  .work-stats-inline {
    font-size: 0.625rem;
  }
  
  .cover-pattern {
    width: 4rem;
    height: 4rem;
  }
  
  .word.highlighted {
    transform: scale(1.02);
  }
  
  .current-effect {
    font-size: 0.75rem;
  }
}

/* Préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-arrow {
    animation: none;
  }
  
  .works-track {
    animation: none;
  }
  
  .animate-shimmer,
  .animate-ping,
  .animate-bounce,
  .animate-pulse,
  .animate-float {
    animation: none;
  }
}

/* Styles manquants pour la section Discover */
.story-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.story-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.story-stats i {
  width: 1rem;
  height: 1rem;
}

.story-stats .star-filled {
  color: #fbbf24;
  fill: #fbbf24;
}

/* Section statistiques Discover */
.discover-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .discover-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background: hsla(221, 45%, 16%, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: hsla(221, 45%, 16%, 0.5);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

/* Mode sombre par défaut - pas besoin de media query car c'est notre thème principal */
.keyboard-navigation *:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Authors Section */
.authors-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--background), hsla(221, 45%, 16%, 0.1));
  position: relative;
}

/* Authors Tabs - Similaire à Immersion */
.authors-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.authors-tabs .tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  color: var(--muted-foreground);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.authors-tabs .tab-btn:hover {
  border-color: hsla(48, 100%, 50%, 0.3);
  color: var(--foreground);
}

.authors-tabs .tab-btn.active {
  background: var(--gradient-accent);
  border-color: var(--accent);
  color: var(--background);
}

.authors-tabs .tab-btn i {
  width: 1.25rem;
  height: 1.25rem;
}

/* Tools Showcase */
.tools-showcase {
  margin: 3rem 0;
}

.tools-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-header h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.tools-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.tool-card {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  border-color: hsla(48, 100%, 50%, 0.3);
  box-shadow: var(--shadow-immersive);
}

.tool-preview {
  height: 200px;
  background: hsla(221, 39%, 8%, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.preview-screen {
  width: 90%;
  height: 80%;
  background: var(--background);
  border-radius: 0.5rem;
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: relative;
}

.preview-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typing-effect {
  font-family: 'Georgia', serif;
  font-size: 0.875rem;
  color: var(--foreground);
  position: relative;
}

.typing-effect::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--accent);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.preview-effects {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
}

.effect-indicator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: hsla(48, 100%, 50%, 0.1);
  border: 1px solid var(--accent);
  border-radius: 1rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: var(--accent);
}

.effect-indicator i {
  width: 0.875rem;
  height: 0.875rem;
}

.sound-library {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  height: 100%;
}

.sound-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: hsla(221, 39%, 11%, 0.3);
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.sound-item.active {
  background: hsla(48, 100%, 50%, 0.1);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.sound-item i {
  width: 1rem;
  height: 1rem;
}

.analytics-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 1rem;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric .value {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--accent);
}

.metric .label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.chart-mini {
  height: 40px;
  background: linear-gradient(90deg, 
    var(--accent) 0%, 
    var(--accent) 60%, 
    hsla(48, 100%, 50%, 0.3) 100%
  );
  border-radius: 0.25rem;
  position: relative;
  overflow: hidden;
}

.chart-mini::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 30%, 
    hsla(255, 255, 255, 0.1) 50%, 
    transparent 70%
  );
  animation: shimmer 2s infinite;
}

.tool-info {
  padding: 1.5rem;
}

.tool-info h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.tool-info p {
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Success Stories */
.success-stories {
  margin: 3rem 0;
}

.featured-author {
  margin-bottom: 3rem;
}

.author-card {
  display: flex;
  gap: 2rem;
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.author-card:hover {
  border-color: hsla(48, 100%, 50%, 0.3);
  box-shadow: var(--shadow-immersive);
}

.author-avatar.large {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
}

.author-details h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-genre {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.author-details blockquote {
  font-style: italic;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.author-achievements {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.achievement {
  text-align: center;
}

.achievement .number {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.achievement.highlight .number {
  color: var(--accent);
}

.achievement .label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.other-authors {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.author-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: hsla(221, 39%, 11%, 0.3);
  border: 1px solid hsla(221, 39%, 18%, 0.3);
  border-radius: var(--radius);
  padding: 1rem;
  transition: all 0.3s ease;
}

.author-mini:hover {
  border-color: hsla(48, 100%, 50%, 0.3);
  transform: translateY(-2px);
}

.author-mini .author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-mini .author-info h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-mini .author-info p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Monetization */
.monetization-info {
  margin: 3rem 0;
}

.revenue-model {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
}

.model-visual {
  margin-bottom: 2rem;
}

.revenue-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.step-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon i {
  width: 1.5rem;
  height: 1.5rem;
}

.flow-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
}

.model-explanation h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.model-explanation p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.revenue-example {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.example-metric {
  text-align: center;
  padding: 1rem;
  background: hsla(221, 39%, 8%, 0.5);
  border-radius: var(--radius);
  border: 1px solid hsla(221, 39%, 18%, 0.3);
}

.example-metric.highlight {
  border-color: var(--accent);
  background: hsla(48, 100%, 50%, 0.05);
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--foreground);
}

.example-metric.highlight .metric-value {
  color: var(--accent);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.equals {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: bold;
}

/* Section CTA - Similaire aux autres sections */
.section-cta {
  margin: 4rem 0 0 0;
}

.cta-card {
  background: hsla(221, 39%, 11%, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(221, 39%, 18%, 0.5);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, hsla(48, 100%, 50%, 0.03), transparent 70%);
  pointer-events: none;
}

.cta-card h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.cta-card p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
  position: relative;
  z-index: 10;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* Responsive Design pour Authors */
@media (max-width: 768px) {
  .authors-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
  }
  
  .author-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .author-achievements {
    justify-content: center;
  }
  
  .other-authors {
    flex-direction: column;
    align-items: center;
  }
  
  .revenue-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .revenue-example {
    flex-direction: column;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

