*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Crimson Text', serif;
  color: #2a2a2a;
  line-height: 1.6;
}

.li-header-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.li-header-banner {
  background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.li-header-logo-container {
  animation: fadeInDown 0.8s ease-out;
}

.li-header-logo {
  height: auto;
  max-width: 200px;
  transition: transform 0.3s ease;
}

.li-header-logo:hover {
  transform: scale(1.05);
}

.li-header-warning {
  background-color: #fff8e6;
  border-top: 3px solid #ffc107;
  border-bottom: 3px solid #ffc107;
  padding: 1.2rem 0;
}

.li-header-warning-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.li-header-warning-icon {
  color: #d4a017;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  animation: pulse 2s infinite;
}

.li-header-warning-title {
  font-family: 'Playfair Display', serif;
  color: #d4a017;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.li-header-warning-text {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #5a4a3a;
  max-width: 800px;
}

.li-header-warning-button {
  font-family: 'Playfair Display', serif;
  background-color: #d4a017;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.li-header-warning-button:hover {
  background-color: #b58a14;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .li-header-warning-content {
      max-width: 900px;
  }
}

@media (max-width: 992px) {
  .li-header-warning-title {
      font-size: 1.6rem;
  }
  .li-header-warning-text {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .li-header-banner {
      padding: 1rem 0;
  }
  .li-header-logo {
      max-width: 180px;
  }
  .li-header-warning {
      padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .li-header-warning-title {
      font-size: 1.4rem;
  }
  .li-header-warning-text {
      font-size: 0.95rem;
  }
  .li-header-warning-button {
      padding: 0.5rem 1.2rem;
      font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .li-header-logo {
      max-width: 150px;
  }
  .li-header-warning-icon {
      font-size: 2rem;
  }
  .li-header-warning-title {
      font-size: 1.2rem;
  }
}

.li-offres-principales {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  animation: fadeIn 1s ease-out;
}

.li-offres-introduction {
  text-align: center;
  margin-bottom: 3rem;
}

.li-offres-titre {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2a2a2a;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.li-offres-titre::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}

.li-offres-soustitre {
  font-size: 1.3rem;
  color: #5a4a3a;
  margin-bottom: 2rem;
  font-style: italic;
}

.li-offres-descriptions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.li-offres-description {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.li-offres-description:hover {
  transform: translateY(-5px);
}

.li-offres-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #4ecdc4, #556270);
}

.li-plateformes-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.li-plateforme-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 2rem;
  position: relative;
}

.li-plateforme-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.li-plateforme-entete {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.li-plateforme-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.li-plateforme-nom {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2a2a2a;
  margin: 0.5rem 0;
}

.li-plateforme-avantages {
  list-style: none;
  margin: 1.5rem 0;
}

.li-plateforme-avantage {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: #4a4a4a;
}

.li-plateforme-avantage .material-icons {
  margin-right: 0.5rem;
  color: #4ecdc4;
  font-size: 1.2rem;
}

.li-plateforme-bonus {
  background: linear-gradient(135deg, #f6f7ff 0%, #e9f0ff 100%);
  padding: 1.2rem;
  border-radius: 10px;
  margin: 1.5rem 0;
  text-align: center;
  border: 1px dashed #a7c4ff;
}

.li-plateforme-bonus-titre {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #3a6bdb;
  margin-bottom: 0.5rem;
}

.li-plateforme-bonus-description {
  font-size: 0.95rem;
  color: #5a6b8c;
}

.li-plateforme-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem 0;
}

.li-plateforme-etoiles {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.li-plateforme-note {
  font-size: 0.9rem;
  color: #6a6a6a;
}

.li-plateforme-bouton {
  display: block;
  width: 100%;
  padding: 0.8rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: linear-gradient(135deg, #4ecdc4 0%, #556270 100%);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(78, 205, 196, 0.3);
}

.li-plateforme-bouton:hover {
  background: linear-gradient(135deg, #3ebbb3 0%, #45505d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(78, 205, 196, 0.4);
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .li-offres-titre {
      font-size: 2.5rem;
  }
  .li-plateforme-card {
      min-width: 280px;
  }
}

@media (max-width: 992px) {
  .li-offres-descriptions {
      gap: 1.5rem;
  }
  .li-plateformes-container {
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .li-offres-titre {
      font-size: 2.2rem;
  }
  .li-offres-soustitre {
      font-size: 1.1rem;
  }
  .li-offres-description {
      min-width: 200px;
  }
  .li-plateforme-card {
      min-width: 250px;
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .li-offres-titre {
      font-size: 1.8rem;
  }
  .li-offres-descriptions {
      flex-direction: column;
      align-items: center;
  }
  .li-offres-description {
      max-width: 100%;
  }
  .li-plateformes-container {
      flex-direction: column;
      align-items: center;
  }
  .li-plateforme-card {
      width: 100%;
      max-width: 100%;
  }
}

@media (max-width: 320px) {
  .li-offres-titre {
      font-size: 1.6rem;
  }
  .li-plateforme-nom {
      font-size: 1.3rem;
  }
  .li-plateforme-avantage {
      font-size: 0.9rem;
  }
}

.li-comparaison-choix {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  animation: slideUp 0.8s ease-out;
}

.li-comparaison-introduction {
  text-align: center;
  margin-bottom: 3rem;
}

.li-comparaison-titre {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1a237e;
  margin-bottom: 1.5rem;
  position: relative;
  line-height: 1.3;
}

.li-comparaison-titre::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff7043, #e53935);
  border-radius: 2px;
}

.li-comparaison-description {
  font-size: 1.2rem;
  color: #424242;
  max-width: 800px;
  margin: 0 auto;
}

.li-comparaison-cartes {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.li-comparaison-carte {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.li-comparaison-carte:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.li-carte-entete {
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #3f51b5, #303f9f);
  color: white;
  position: relative;
}

.li-carte-casino .li-carte-entete {
  background: linear-gradient(135deg, #8e24aa, #6a1b9a);
}

.li-carte-sports .li-carte-entete {
  background: linear-gradient(135deg, #43a047, #2e7d32);
}

.li-carte-icone {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.li-carte-titre {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 0;
}

.li-carte-contenu {
  padding: 1.5rem;
}

.li-carte-soustitre {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #333;
  margin: 1.2rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eee;
}

.li-carte-liste {
  list-style: none;
  margin: 0.8rem 0;
}

.li-carte-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.li-carte-item .material-icons {
  margin-right: 0.6rem;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.li-carte-avantages .material-icons {
  color: #4caf50;
}

.li-carte-inconvenients .material-icons {
  color: #f44336;
}

.li-carte-conseils {
  background-color: #f5f5f5;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.li-carte-texte {
  font-size: 0.95rem;
  color: #424242;
}

.li-comparaison-conclusion {
  text-align: center;
  margin-top: 3rem;
  padding: 0 1.5rem;
}

.li-conclusion-titre {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #d32f2f;
  margin-bottom: 1.2rem;
}

.li-conclusion-texte {
  font-size: 1.1rem;
  color: #424242;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.li-comparaison-avertissement {
  background-color: #fff3e0;
  border-left: 5px solid #ffa000;
  padding: 1.2rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  text-align: left;
  max-width: 800px;
  margin: 2rem auto 0;
  border-radius: 0 8px 8px 0;
}

.li-avertissement-icone {
  color: #ff6f00;
  font-size: 2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.li-avertissement-texte {
  font-size: 0.95rem;
  color: #5d4037;
}

.li-avertissement-lien {
  color: #e65100;
  text-decoration: none;
  font-weight: bold;
}

.li-avertissement-lien:hover {
  text-decoration: underline;
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .li-comparaison-titre {
      font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .li-comparaison-cartes {
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .li-comparaison-titre {
      font-size: 2rem;
  }
  .li-comparaison-description {
      font-size: 1.1rem;
  }
  .li-carte-titre {
      font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .li-comparaison-choix {
      padding: 0 1rem;
  }
  .li-comparaison-titre {
      font-size: 1.7rem;
  }
  .li-comparaison-carte {
      min-width: 100%;
  }
  .li-comparaison-avertissement {
      flex-direction: column;
      text-align: center;
      border-left: none;
      border-top: 5px solid #ffa000;
      border-radius: 0 0 8px 8px;
  }
  .li-avertissement-icone {
      margin-right: 0;
      margin-bottom: 0.5rem;
  }
}

@media (max-width: 320px) {
  .li-comparaison-titre {
      font-size: 1.5rem;
  }
  .li-carte-soustitre {
      font-size: 1.1rem;
  }
  .li-carte-item {
      font-size: 0.9rem;
  }
}

.li-footer-container {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ffffff;
  padding: 2.5rem 1.5rem 1rem;
  font-size: 0.95rem;
  animation: fadeIn 0.8s ease-out;
}

.li-footer-contenu {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.li-footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  min-width: 200px;
}

.li-footer-logo {
  width: 180px;
  height: auto;
  transition: opacity 0.3s ease;
}

.li-footer-logo:hover {
  opacity: 0.9;
}

.li-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.li-footer-lien {
  color: #e6e6e6;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.li-footer-lien:hover {
  color: #4ecdc4;
}

.li-footer-lien::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #4ecdc4;
  transition: width 0.3s ease;
}

.li-footer-lien:hover::after {
  width: 100%;
}

.li-footer-partenaires {
  flex: 2;
  min-width: 300px;
  text-align: center;
}

.li-footer-titre {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: #f8f8f8;
  position: relative;
  display: inline-block;
}

.li-footer-titre::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #4ecdc4, #556270);
}

.li-footer-partenaires-logos {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.li-footer-partenaire-lien {
  display: inline-block;
  transition: transform 0.3s ease;
}

.li-footer-partenaire-lien:hover {
  transform: translateY(-5px);
}

.li-footer-partenaire-logo {
  height: auto;
  border-radius: 4px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.li-footer-partenaire-logo:hover {
  filter: grayscale(0%) brightness(110%);
}

.li-footer-age {
  flex: 1;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.li-footer-age-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ff6b6b;
  transition: transform 0.3s ease;
}

.li-footer-age-logo:hover {
  transform: rotate(15deg);
}

.li-footer-copyright {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.li-footer-copyright-texte {
  color: #a8a8a8;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.li-footer-contact {
  color: #7a7a7a;
  font-size: 0.85rem;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@media (max-width: 1024px) {
  .li-footer-contenu {
      gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .li-footer-logo-section {
      min-width: 100%;
      order: 1;
  }
  .li-footer-partenaires {
      min-width: 60%;
      order: 2;
  }
  .li-footer-age {
      min-width: 30%;
      order: 3;
  }
}

@media (max-width: 768px) {
  .li-footer-partenaires {
      min-width: 100%;
      order: 2;
  }
  .li-footer-age {
      min-width: 100%;
      order: 3;
      margin-top: 1rem;
  }
  .li-footer-legal {
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .li-footer-container {
      padding: 2rem 1rem;
  }
  .li-footer-partenaires-logos {
      gap: 1rem;
  }
  .li-footer-partenaire-logo {
      width: 70px;
  }
}

@media (max-width: 320px) {
  .li-footer-titre {
      font-size: 1.1rem;
  }
  .li-footer-logo {
      width: 150px;
  }
  .li-footer-copyright-texte {
      font-size: 0.8rem;
  }
}

.li-age-verification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.98);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.li-age-verification-content {
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  animation: slideUp 0.4s ease-out forwards;
}

.li-age-verification-header {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: white;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.li-age-verification-header h2 {
  font-family: 'Playfair Display', serif;
  margin: 0.5rem 0 0;
  font-size: 1.8rem;
}

.li-age-verification-header .material-icons {
  font-size: 3rem;
  color: #ffeb3b;
}

.li-age-verification-body {
  padding: 1.5rem;
  font-size: 1.1rem;
  color: #333;
}

.li-age-verification-body p {
  margin-bottom: 1rem;
}

.li-age-verification-footer {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}

.li-age-verification-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.li-age-confirm {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
}

.li-age-deny {
  background: linear-gradient(135deg, #f44336, #c62828);
  color: white;
}

.li-age-verification-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.li-cookie-consent-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
}

.li-cookie-consent-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.li-cookie-consent-icon .material-icons {
  color: white;
  font-size: 28px;
}

.li-cookie-consent-icon:hover {
  transform: scale(1.1);
}

.li-cookie-consent-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.li-cookie-consent-content {
  background-color: white;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}

.li-cookie-consent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  position: relative;
}

.li-cookie-consent-header h2 {
  font-family: 'Playfair Display', serif;
  color: #2e7d32;
  margin: 0;
}

.li-cookie-close {
  cursor: pointer;
  font-size: 24px;
  color: #666;
  transition: color 0.2s ease;
}

.li-cookie-close:hover {
  color: #333;
}

.li-cookie-consent-body {
  padding: 1.5rem;
}

.li-cookie-consent-body p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.li-cookie-faq {
  margin-top: 1.5rem;
}

.li-cookie-faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.li-cookie-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.li-cookie-faq-question:hover {
  background-color: #f0f0f0;
}

.li-cookie-faq-question h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #333;
}

.li-cookie-faq-toggle {
  transition: transform 0.3s ease;
}

.li-cookie-faq-item.active .li-cookie-faq-toggle {
  transform: rotate(180deg);
}

.li-cookie-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.li-cookie-faq-item.active .li-cookie-faq-answer {
  max-height: 300px;
  padding: 1rem;
}

.li-cookie-consent-footer {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #eee;
}

.li-cookie-consent-btn {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.li-cookie-consent-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { 
      opacity: 0;
      transform: translateY(20px);
  }
  to { 
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .li-age-verification-footer {
      flex-direction: column;
      gap: 0.8rem;
  }
  
  .li-age-verification-btn {
      width: 100%;
  }
  
  .li-cookie-consent-content {
      width: 95%;
      max-height: 90vh;
  }
}

@media (max-width: 480px) {
  .li-age-verification-content {
      width: 95%;
  }
  
  .li-age-verification-header h2 {
      font-size: 1.5rem;
  }
  
  .li-age-verification-body {
      font-size: 1rem;
      padding: 1rem;
  }
  
  .li-cookie-consent-icon {
      width: 40px;
      height: 40px;
      bottom: 10px;
      right: 10px;
  }
  
  .li-cookie-consent-icon .material-icons {
      font-size: 22px;
  }
}

.li-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  animation: fadeIn 0.8s ease-out;
}

.li-page-privacy {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.li-page-header-container {
  background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.li-page-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.li-page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.li-page-content-section {
  padding: 2rem;
}

.li-page-policy-point {
  margin-bottom: 3rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 2rem;
}

.li-page-policy-point:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.li-page-point-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.li-page-point-header .material-icons {
  font-size: 2rem;
  margin-right: 1rem;
  color: #8e2de2;
}

.li-page-point-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #333;
  margin: 0;
}

.li-page-point-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-left: 3rem;
}

.li-page-back-container {
  text-align: center;
  margin-top: 4rem;
}

.li-page-back-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #4a00e0;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  background-color: #f5f2ff;
}

.li-page-back-link .material-icons {
  margin-right: 0.5rem;
}

.li-page-back-link:hover {
  background-color: #e9e3ff;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(74, 0, 224, 0.1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1024px) {
  .li-page-main-title {
      font-size: 2.2rem;
  }
  .li-page-point-title {
      font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .li-page-container {
      padding: 1.5rem 1rem;
  }
  .li-page-header-container {
      padding: 2rem 1rem;
  }
  .li-page-main-title {
      font-size: 2rem;
  }
  .li-page-point-content p {
      margin-left: 0;
      font-size: 1rem;
  }
  .li-page-point-header {
      flex-direction: column;
      align-items: flex-start;
  }
  .li-page-point-header .material-icons {
      margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .li-page-main-title {
      font-size: 1.7rem;
  }
  .li-page-subtitle {
      font-size: 1rem;
  }
  .li-page-content-section {
      padding: 1.5rem;
  }
  .li-page-point-title {
      font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .li-page-main-title {
      font-size: 1.5rem;
  }
  .li-page-back-link {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
  }
}

.li-cookie-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  animation: slideFade 0.7s ease-out;
}

.li-cookie-policy {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.li-cookie-header-section {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: white;
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
}

.li-cookie-header-section::after {
  content: '';
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.li-cookie-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.li-cookie-update-info {
  font-size: 1.15rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.li-cookie-content-area {
  padding: 3rem 2.5rem;
}

.li-cookie-article-block {
  margin-bottom: 3.5rem;
  border-left: 4px solid #0072ff;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.li-cookie-article-block:hover {
  border-left-color: #00c6ff;
  transform: translateX(5px);
}

.li-cookie-article-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.li-cookie-article-header .material-icons {
  font-size: 2.3rem;
  margin-right: 1.2rem;
  color: #0072ff;
  background-color: #e6f3ff;
  padding: 0.5rem;
  border-radius: 50%;
}

.li-cookie-article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: #2a2a2a;
  margin: 0;
}

.li-cookie-article-text p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #444;
  margin-left: 4.5rem;
}

.li-cookie-return-section {
  text-align: center;
  margin-top: 4rem;
}

.li-cookie-home-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0072ff;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  background-color: #f0f8ff;
  box-shadow: 0 3px 10px rgba(0, 114, 255, 0.1);
}

.li-cookie-home-link .material-icons {
  margin-right: 0.7rem;
  transition: transform 0.3s ease;
}

.li-cookie-home-link:hover {
  background-color: #e1f0ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 114, 255, 0.15);
}

.li-cookie-home-link:hover .material-icons {
  transform: translateX(-3px);
}

@keyframes slideFade {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .li-cookie-main-heading {
      font-size: 2.4rem;
  }
  .li-cookie-article-title {
      font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .li-cookie-container {
      padding: 1.5rem 1rem;
  }
  .li-cookie-header-section {
      padding: 2.5rem 1.5rem;
  }
  .li-cookie-main-heading {
      font-size: 2.1rem;
  }
  .li-cookie-content-area {
      padding: 2rem 1.5rem;
  }
  .li-cookie-article-text p {
      margin-left: 0;
      font-size: 1rem;
  }
  .li-cookie-article-header {
      flex-direction: column;
      align-items: flex-start;
  }
  .li-cookie-article-header .material-icons {
      margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .li-cookie-main-heading {
      font-size: 1.8rem;
  }
  .li-cookie-update-info {
      font-size: 1rem;
  }
  .li-cookie-article-title {
      font-size: 1.4rem;
  }
  .li-cookie-home-link {
      padding: 0.8rem 1.5rem;
      font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .li-cookie-main-heading {
      font-size: 1.6rem;
  }
  .li-cookie-article-block {
      padding-left: 1rem;
  }
}

.li-responsable-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  animation: fadeSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.li-responsable-section {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.li-responsable-header-block {
  background: linear-gradient(135deg, #d31027 0%, #ea384d 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.li-responsable-header-block::before {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.li-responsable-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.li-responsable-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.li-responsable-content-wrapper {
  padding: 4rem 3rem;
}

.li-responsable-article-card {
  margin-bottom: 3rem;
  background-color: #fef6f7;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
  border-left: 5px solid #ea384d;
}

.li-responsable-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(234, 56, 77, 0.1);
}

.li-responsable-article-head {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.li-responsable-article-head .material-icons {
  font-size: 2.5rem;
  margin-right: 1.5rem;
  color: #d31027;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.8rem;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.li-responsable-article-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2a2a2a;
  margin: 0;
}

.li-responsable-article-body p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin-left: 5.5rem;
}

.li-responsable-footer-actions {
  text-align: center;
  margin-top: 5rem;
}

.li-responsable-home-button {
  display: inline-flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #d31027 0%, #ea384d 100%);
  box-shadow: 0 5px 15px rgba(211, 16, 39, 0.3);
}

.li-responsable-home-button .material-icons {
  margin-right: 0.8rem;
  transition: transform 0.3s ease;
}

.li-responsable-home-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(211, 16, 39, 0.4);
}

.li-responsable-home-button:hover .material-icons {
  transform: translateX(-5px);
}

@keyframes fadeSlide {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .li-responsable-main-title {
      font-size: 2.5rem;
  }
  .li-responsable-article-title {
      font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .li-responsable-container {
      padding: 2rem 1rem;
  }
  .li-responsable-header-block {
      padding: 3rem 1.5rem;
  }
  .li-responsable-main-title {
      font-size: 2.2rem;
  }
  .li-responsable-content-wrapper {
      padding: 3rem 1.5rem;
  }
  .li-responsable-article-body p {
      margin-left: 0;
      font-size: 1.05rem;
  }
  .li-responsable-article-head {
      flex-direction: column;
      align-items: flex-start;
  }
  .li-responsable-article-head .material-icons {
      margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .li-responsable-main-title {
      font-size: 1.9rem;
  }
  .li-responsable-subtitle {
      font-size: 1.1rem;
  }
  .li-responsable-article-card {
      padding: 1.5rem;
  }
  .li-responsable-home-button {
      padding: 1rem 2rem;
      font-size: 1rem;
  }
}

@media (max-width: 320px) {
  .li-responsable-main-title {
      font-size: 1.7rem;
  }
  .li-responsable-article-title {
      font-size: 1.5rem;
  }
  .li-responsable-home-button {
      width: 100%;
      justify-content: center;
  }
}