/* Start custom CSS for page-settings *//* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

#app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 60px;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Grille des ebooks */
.ebooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Carte ebook */
.ebook-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e1e8ed;
}

.ebook-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ebook-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image de l'ebook */
.ebook-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.ebook-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ebook-card:hover .ebook-image img {
  transform: scale(1.1);
}

/* Contenu de l'ebook */
.ebook-content {
  padding: 25px;
}

.ebook-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
}

.ebook-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e74c3c;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  #app {
    padding: 20px 15px;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.1rem;
  }
  
  .ebooks-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ebook-image {
    height: 200px;
  }
  
  .ebook-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  
  .ebook-image {
    height: 180px;
  }
  
  .ebook-content {
    padding: 15px;
  }
  
  .ebook-title {
    font-size: 1.1rem;
  }
  
  .ebook-price {
    font-size: 1.3rem;
  }
}/* End custom CSS */