/* ===================================

   HELL OPTIMIZER

=================================== */

:root {

  /* === PALETTE COULEURS === */

  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

  --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);

  --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);

  --glass-gradient: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

  

  /* === COULEURS DE BASE === */

  --accent-color: #00f2fe;

  --background-color: #0a0a0f;

  --bg-item: rgba(255, 255, 255, 0.08);

  --bg-list: rgba(17, 17, 17, 0.3);

  --bg-main: rgba(255, 255, 255, 0.12);

  --blur-amount: 20px;

  --border-color: rgba(255, 255, 255, 0.15);

  --bradius-pill: 50px;

  --card-bg: rgba(255, 255, 255, 0.08);

  --clr-focus-ring: rgba(74, 144, 226, 0.6);

  --clr-neutral-bg: #FBFBFB;

  --clr-primary-end: #764ba2;

  --clr-primary-start: #667eea;

  --clr-shadow-hover: rgba(0, 0, 0, 0.25);

  --clr-shadow-pulse: rgba(0, 0, 0, 0.2);

  --clr-shadow: rgba(0, 0, 0, 0.15);

  --clr-white: #FFFFFF;

  --ff-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  --font-main: 'Inter', 'Segoe UI', 'Roboto', sans-serif;

  --fs-button: 1.1rem;

  --fw-button: 600;

  --gradient-primary: var(--primary-gradient);

  --hover-brightness: 1.1;

  --ls-button: 0.8px;

  --overlay-color: rgba(0, 0, 0, 0.4);

  --primary-color: #00f2fe;

  --text-color: #f8f9fa;

  --transition-default: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --transition-speed: 0.4s;



  /* === EFFETS === */

  --glow-primary: 0 0 30px rgba(0, 242, 254, 0.3);

  --glow-secondary: 0 0 40px rgba(102, 126, 234, 0.4);

  --shadow-elevation-1: 0 4px 20px rgba(0, 0, 0, 0.1);

  --shadow-elevation-2: 0 8px 40px rgba(0, 0, 0, 0.15);

  --shadow-elevation-3: 0 16px 60px rgba(0, 0, 0, 0.2);

  --shadow-glow: 0 0 50px rgba(0, 242, 254, 0.15);

}



/* === BASE STYLES === */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



*::before,

*::after {

  box-sizing: border-box;

}



body {

  font-family: var(--font-main);

  margin: 0;

  padding: 0;

  color: var(--text-color);

  background: var(--dark-gradient);

  line-height: 1.7;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;

  background-attachment: fixed;

  overflow-x: hidden;

  position: relative;

}



/* === EFFETS DE FOND AVANCÉS === */

body::before {

  content: '';

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: 

    radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),

    radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 50%),

    radial-gradient(circle at 40% 80%, rgba(0, 242, 254, 0.06) 0%, transparent 50%);

  z-index: -1;

  animation: ambientFloat 20s ease-in-out infinite;

}



/* === ANIMATIONS PREMIUM === */

@keyframes ambientFloat {

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

  33% { transform: translateY(-10px) rotate(1deg); }

  66% { transform: translateY(5px) rotate(-1deg); }

}



@keyframes pulseGlow {

  0%, 100% { box-shadow: var(--glow-primary); }

  50% { box-shadow: var(--glow-secondary); }

}



@keyframes shimmer {

  0% { transform: translateX(-100%); }

  100% { transform: translateX(100%); }

}



@keyframes floatUp {

  from {

    opacity: 0;

    transform: translateY(30px) scale(0.95);

  }

  to {

    opacity: 1;

    transform: translateY(0) scale(1);

  }

}



/* === BACKGROUNDS SPÉCIFIQUES === */

body.index, body.articles, body.products, body.support {

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center center;

}



body.index {

  background-image: 

    linear-gradient(rgba(10, 10, 15, 0.8), rgba(26, 26, 46, 0.8)),

    url('../images/pixelcut-export.webp');

}



body.articles {

  background-image: 

    linear-gradient(rgba(10, 10, 15, 0.8), rgba(26, 26, 46, 0.8)),

    url('../images/pixelcut-export.webp');

}



body.products {

  background-image: 

    linear-gradient(rgba(10, 10, 15, 0.8), rgba(26, 26, 46, 0.8)),

    url('../images/pixelcut-export.webp');

}



body.support {

  background-image: 

    linear-gradient(rgba(10, 10, 15, 0.8), rgba(26, 26, 46, 0.8)),

    url('../images/pixelcut-export.webp');

}



/* === HEADER PREMIUM === */

header {

  padding: 30px 20px;

  text-align: center;

  background: rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(25px);

  box-shadow: 

    0 8px 32px rgba(0, 0, 0, 0.3),

    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  color: #fff;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  position: relative;

  overflow: hidden;

}



header::before {

  content: '';

  position: absolute;

  top: 0;

  left: -50%;

  width: 200%;

  height: 100%;

  background: linear-gradient(

    90deg,

    transparent 0%,

    rgba(0, 242, 254, 0.03) 50%,

    transparent 100%

  );

  animation: shimmer 3s ease-in-out infinite;

}



/* === LOGO PREMIUM === */

.logo img {

  max-width: 200px;

  height: auto;

  filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.3));

  transition: var(--transition-default);

}



.logo img:hover {

  filter: drop-shadow(0 0 30px rgba(0, 242, 254, 0.5));

  transform: scale(1.05);

}



/* === SEARCH BAR ULTRA PREMIUM === */

.search-container {

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  justify-content: center;

  gap: 15px;

  margin: 30px 0;

}



.search-input {

  padding: 18px 24px;

  border: 2px solid transparent;

  border-radius: 25px;

  width: 100%;

  max-width: 320px;

  font-size: 16px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  color: #fff;

  transition: var(--transition-default);

  position: relative;

  background-clip: padding-box;

}



.search-input::before {

  content: '';

  position: absolute;

  inset: 0;

  padding: 2px;

  background: var(--accent-gradient);

  border-radius: inherit;

  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

  mask-composite: xor;

  z-index: -1;

}



.search-input::placeholder {

  color: rgba(255, 255, 255, 0.7);

}



.search-input:focus {

  outline: none;

  border-color: var(--accent-color);

  box-shadow: 

    0 0 0 4px rgba(0, 242, 254, 0.2),

    var(--glow-primary);

  background: rgba(255, 255, 255, 0.12);

}



.search-button {

  padding: 18px 32px;

  background: var(--accent-gradient);

  color: #fff;

  border: none;

  border-radius: 25px;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  transition: var(--transition-default);

  position: relative;

  overflow: hidden;

  text-transform: uppercase;

  letter-spacing: 1px;

}



.search-button::before {

  content: '';

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    90deg,

    transparent 0%,

    rgba(255, 255, 255, 0.2) 50%,

    transparent 100%

  );

  transition: left 0.5s ease;

}



.search-button:hover::before {

  left: 100%;

}



.search-button:hover {

  transform: translateY(-3px);

  box-shadow: var(--shadow-elevation-3);

  filter: brightness(1.1);

}



/* === NAVIGATION ULTRA MODERNE AMÉLIORÉE === */

nav {

  max-width: 1400px;

  margin: 50px auto;

  padding: 24px 40px;

  background: linear-gradient(135deg, 

    rgba(255, 255, 255, 0.12) 0%, 

    rgba(255, 255, 255, 0.06) 50%,

    rgba(255, 255, 255, 0.08) 100%);

  border: 1px solid rgba(255, 255, 255, 0.18);

  backdrop-filter: blur(40px) saturate(1.2);

  border-radius: 36px;

  box-shadow: 

    0 16px 40px rgba(0, 0, 0, 0.15),

    0 8px 24px rgba(0, 0, 0, 0.08),

    inset 0 1px 0 rgba(255, 255, 255, 0.15),

    inset 0 -1px 0 rgba(255, 255, 255, 0.05);

  animation: floatUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;

  position: relative;

  overflow: hidden;

}



/* Effet d'ambiance amélioré avec multiple gradients */

nav::before {

  content: "";

  position: absolute;

  top: -60%;

  left: -60%;

  width: 220%;

  height: 220%;

  background: conic-gradient(

    from 0deg,

    transparent 0deg,

    rgba(102, 126, 234, 0.15) 45deg,

    rgba(118, 75, 162, 0.12) 90deg,

    rgba(0, 242, 254, 0.15) 135deg,

    rgba(255, 107, 107, 0.12) 180deg,

    transparent 225deg

  );

  animation: ambientFloat 30s linear infinite;

  z-index: 0;

  pointer-events: none;

  filter: blur(1px);

}



/* Effet de particules flottantes */

nav::after {

  content: "";

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),

              radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.06) 0%, transparent 50%),

              radial-gradient(circle at 40% 80%, rgba(0, 242, 254, 0.04) 0%, transparent 50%);

  animation: particleFloat 15s ease-in-out infinite alternate;

  z-index: 1;

  pointer-events: none;

}



nav ul {

  list-style: none;

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  gap: 16px;

  margin: 0;

  padding: 0;

  position: relative;

  z-index: 10;

}



nav a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 16px 28px;

  font-size: 1.1rem;

  font-weight: 600;

  color: #ffffff;

  text-decoration: none;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);

  position: relative;

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  overflow: hidden;

  backdrop-filter: blur(10px);

  min-height: 48px;

}



/* Effet de fond gradient au survol */

nav a::before {

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(135deg,

    var(--primary-gradient, linear-gradient(135deg, #667eea 0%, #764ba2 100%)));

  opacity: 0;

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  border-radius: inherit;

  z-index: -2;

}



/* Indicateur de navigation active/survol amélioré */

nav a::after {

  content: "";

  position: absolute;

  bottom: 6px;

  left: 50%;

  width: 0%;

  height: 3px;

  background: linear-gradient(90deg,

    var(--gold-gradient, linear-gradient(90deg, #ffd700 0%, #ffed4e 100%)));

  border-radius: 3px;

  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  transform: translateX(-50%);

  box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);

  z-index: -1;

}



/* Effet de brillance qui traverse le lien */

nav a:hover::before,

nav a:focus-visible::before {

  opacity: 0.2;

}



nav a:hover::after,

nav a:focus-visible::after,

nav a.active::after {

  width: 85%;

}



nav a:hover,

nav a:focus-visible {

  transform: translateY(-6px) scale(1.05);

  color: #ffffff;

  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);

  border-color: rgba(255, 255, 255, 0.2);

  box-shadow: 

    0 12px 32px rgba(0, 0, 0, 0.2),

    0 4px 16px rgba(0, 0, 0, 0.1),

    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  outline: none;

}



/* Effet de "clic" */

nav a:active {

  transform: translateY(-2px) scale(1.02);

  transition: all 0.1s ease;

}



/* Indicateur pour lien actif */

nav a.active {

  background: rgba(255, 255, 255, 0.08);

  border-color: rgba(255, 255, 255, 0.15);

  color: #ffffff;

}



/* Animations personnalisées */

@keyframes ambientFloat {

  0% { transform: rotate(0deg) scale(1); }

  25% { transform: rotate(90deg) scale(1.05); }

  50% { transform: rotate(180deg) scale(1); }

  75% { transform: rotate(270deg) scale(1.05); }

  100% { transform: rotate(360deg) scale(1); }

}



@keyframes particleFloat {

  0% { opacity: 0.6; transform: translateY(0px); }

  100% { opacity: 0.3; transform: translateY(-10px); }

}



@keyframes floatUp {

  from {

    opacity: 0;

    transform: translateY(30px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}



/* Design responsive amélioré */

@media (max-width: 1024px) {

  nav {

    max-width: 95%;

    padding: 20px 30px;

    margin: 30px auto;

  }

  

  nav ul {

    gap: 12px;

  }

  

  nav a {

    padding: 14px 22px;

    font-size: 1rem;

  }

}



@media (max-width: 768px) {

  nav {

    padding: 16px 20px;

    border-radius: 28px;

  }

  

  nav ul {

    gap: 8px;

  }

  

  nav a {

    padding: 12px 18px;

    font-size: 0.95rem;

    gap: 8px;

  }

}



@media (max-width: 480px) {

  nav {

    margin: 20px auto;

    padding: 12px 16px;

  }

  

  nav ul {

    flex-direction: column;

    gap: 6px;

  }

  

  nav a {

    width: 100%;

    justify-content: center;

    padding: 14px 20px;

  }

}



/* === NAV1 (FOOTER NAVIGATION) === */

nav1 {

  margin: 20px 0;

  padding: 15px 0;

  background-color: rgba(0, 0, 0, 0.3);

  border-radius: 15px;

  box-shadow: var(--shadow-elevation-1);

  backdrop-filter: blur(10px);

}



nav1 ul {

  list-style: none;

  padding: 0;

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  margin: 0;

  gap: 20px;

}



nav1 a {

  text-decoration: none;

  color: #e0e0e0;

  font-size: 1.125em;

  padding: 8px 16px;

  border-radius: 8px;

  transition: var(--transition-default);

  position: relative;

}



nav1 a:hover,

nav1 a.active {

  color: #ffd700;

  background-color: rgba(255, 215, 0, 0.1);

  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);

}



/* === MAIN CONTENT === */

main {

  text-align: center;

  padding: 40px 20px;

}



/* === TITRES === */

h1 {

  font-size: clamp(2.5rem, 5vw, 4rem);

  font-weight: 800;

  line-height: 1.2;

  margin-bottom: 2rem;

  color: #ffffff;

  letter-spacing: 0.02em;

  font-family: var(--ff-primary);

  position: relative;

  transition: var(--transition-default);



  /* Ombre douce pour lisibilité premium */

  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);

}



h1::after {

  content: '';

  position: absolute;

  bottom: -10px;

  left: 50%;

  width: 100px;

  height: 4px;

  background: var(--gold-gradient); /* Ligne dorée premium */

  border-radius: 2px;

  transform: translateX(-50%);

  box-shadow: var(--glow-primary);

}



h1:hover {

  transform: translateY(-2px);

  filter: brightness(1.1);

}



h2 {

  font-size: clamp(2rem, 4vw, 2.8rem);

  margin-bottom: 20px;

  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  font-weight: 700;

  text-shadow: none;

}



h3 {

color: #ffffff;

}



h4 {

  color: #f0f0f0;

  font-weight: 600;

}



/* === PARAGRAPHES === */

p {

  font-size: 1.1em;

  margin-bottom: 25px;

  line-height: 1.7;

  color: rgba(248, 249, 250, 0.9);

  font-weight: 400;

}



/* === SECTION ABOUT === */

.about-section {

  max-width: 1000px;

  margin: 60px auto;

  padding: 50px 40px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  border-radius: 30px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: var(--shadow-elevation-2);

  position: relative;

  overflow: hidden;

}



.about-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    135deg,

    rgba(102, 126, 234, 0.05) 0%,

    rgba(0, 242, 254, 0.03) 100%

  );

  z-index: -1;

}



.about-section h2 {

  font-size: 2.5rem;

  margin-bottom: 30px;

  background: var(--primary-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



/* === TÉMOIGNAGES PREMIUM === */

.testimonials {

  background: rgba(255, 255, 255, 0.08);

  padding: 40px;

  border-radius: 25px;

  margin: 50px auto;

  max-width: 900px;

  box-shadow: var(--shadow-elevation-2);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.12);

}



.testimonial {

  background: rgba(255, 255, 255, 0.1);

  margin: 20px 0;

  font-style: italic;

  padding: 25px;

  border-radius: 15px;

  box-shadow: var(--shadow-elevation-1);

  transition: var(--transition-default);

  border: 1px solid rgba(255, 255, 255, 0.08);

}



.testimonial:hover {

  transform: translateY(-5px);

  box-shadow: var(--shadow-elevation-3);

  background: rgba(255, 255, 255, 0.15);

}

.reviews-section {
  padding: 4rem 1.5rem;
  background: transparent;
  text-align: center;
}

.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.reviews-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Grille */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Cartes TRANSPARENTES */
.review-card {
  background: rgba(255, 255, 255, 0.06); /* transparence */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

/* Header */
.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-name {
  font-weight: 600;
  color: #ffffff;
}

.review-stars {
  color: #f5c518;
  letter-spacing: 1px;
}

/* Texte */
.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}


/* === ARTICLES PREMIUM === */

.articles-preview {

  font-family: var(--ff-primary);

  font-size: clamp(2rem, 4vw, 2.8rem);

  background: var(--accent-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  text-align: center;

  text-transform: uppercase;

  letter-spacing: 3px;

  margin-top: 80px;

  position: relative;

  font-weight: 800;

}



.articles-preview::after {

  content: '';

  display: block;

  margin: 25px auto 0;

  width: 120px;

  height: 4px;

  background: var(--secondary-gradient);

  border-radius: 4px;

  box-shadow: var(--glow-primary);

}



.articles-container {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 50px;

  margin: 70px auto 100px;

  max-width: 1600px;

  padding: 0 30px;

}



.article-list {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 50px;

  margin-top: 50px;

}



/* === CARTES ARTICLES ULTRA PREMIUM === */

.article-card,

.article-card1 {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 25px;

  backdrop-filter: blur(25px);

  box-shadow: var(--shadow-elevation-2);

  padding: 35px;

  max-width: 450px;

  width: 100%;

  transition: var(--transition-default);

  position: relative;

  overflow: hidden;

  z-index: 1;

}



.article-card::before,

.article-card1::before {

  content: "";

  position: absolute;

  inset: -2px;

  background: var(--primary-gradient);

  border-radius: inherit;

  z-index: -2;

  opacity: 0;

  transition: var(--transition-default);

}



.article-card::after,

.article-card1::after {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(10, 10, 15, 0.8);

  border-radius: inherit;

  z-index: -1;

}



.article-card:hover::before,

.article-card1:hover::before {

  opacity: 1;

}



.article-card:hover,

.article-card1:hover {

  transform: translateY(-10px) scale(1.02);

  box-shadow: var(--shadow-elevation-3);

}



.article-card1 {

  max-width: 1000px;

}



.article-card img {

  width: 100%;

  height: auto;

  border-radius: 20px;

  margin-bottom: 25px;

  transition: var(--transition-default);

  filter: brightness(1.05) contrast(1.05);

}



.article-card img:hover {

  transform: scale(1.05);

  filter: brightness(1.1) contrast(1.1);

}



.article-card h3 {

  font-size: 1.6rem;

  color: #ffffff;

  margin: 0 0 15px;

  line-height: 1.4;

  font-weight: 700;

  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);

}



.article-card p {

  font-size: 1rem;

  color: rgba(248, 249, 250, 0.85);

  line-height: 1.6;

}



/* === FEATURES SECTION PREMIUM === */

.features-section {

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(25px);

  padding: 60px 40px;

  border-radius: 30px;

  box-shadow: var(--shadow-elevation-2);

  margin: 60px auto;

  max-width: 1200px;

  text-align: center;

  transition: var(--transition-default);

  border: 1px solid rgba(255, 255, 255, 0.12);

  position: relative;

  overflow: hidden;

}



.features-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    45deg,

    rgba(102, 126, 234, 0.03) 0%,

    rgba(0, 242, 254, 0.03) 50%,

    rgba(240, 147, 251, 0.03) 100%

  );

  z-index: -1;

}



.features-section:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-elevation-3);

}



.features-section h2 {

  font-size: 3rem;

  margin-bottom: 25px;

  background: var(--primary-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.features-list {

  background: rgba(17, 17, 17, 0.2);

  border-radius: 25px;

  list-style: none;

  padding: 30px;

  margin: 40px 0;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

  gap: 25px;

}



.feature-item {

  position: relative;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 30px;

  margin: 0;

  font-size: 1.1em;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(10px);

  border-radius: 20px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  opacity: 0;

  transform: translateY(30px);

  animation: floatUp 0.6s forwards;

  transition: var(--transition-default);

  overflow: hidden;

}



.feature-item::before {

  content: '';

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    90deg,

    transparent 0%,

    rgba(0, 242, 254, 0.1) 50%,

    transparent 100%

  );

  transition: left 0.8s ease;

}



.feature-item:hover::before {

  left: 100%;

}



.feature-item:nth-child(1) { animation-delay: 0.1s; }

.feature-item:nth-child(2) { animation-delay: 0.2s; }

.feature-item:nth-child(3) { animation-delay: 0.3s; }

.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:nth-child(5) { animation-delay: 0.5s; }

.feature-item:nth-child(6) { animation-delay: 0.6s; }

.feature-item:nth-child(7) { animation-delay: 0.7s; }



.feature-item h2 {

  margin-bottom: 15px;

  font-size: 2.5rem;

  background: var(--accent-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.feature-item:hover {

  transform: translateY(-8px);

  box-shadow: var(--shadow-elevation-2);

  background: rgba(255, 255, 255, 0.1);

}



/* === PRICING SECTION PREMIUM === */

.pricing-section {

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(25px);

  padding: 60px 40px;

  border-radius: 30px;

  box-shadow: var(--shadow-elevation-2);

  margin: 60px auto;

  max-width: 1200px;

  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.12);

  position: relative;

  overflow: hidden;

}



.pricing-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    45deg,

    rgba(102, 126, 234, 0.05) 0%,

    rgba(0, 242, 254, 0.05) 50%,

    rgba(240, 147, 251, 0.05) 100%

  );

  z-index: -1;

}



.pricing-section h2 {

  font-size: 3rem;

  margin-bottom: 25px;

  background: var(--gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.pricing-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;

  margin-top: 40px;

}



.pricing-card {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 25px;

  padding: 40px 30px;

  backdrop-filter: blur(20px);

  box-shadow: var(--shadow-elevation-2);

  transition: var(--transition-default);

  display: flex;

  flex-direction: column;

  align-items: center;

}



.pricing-card:hover {

  transform: translateY(-10px) scale(1.02);

  box-shadow: var(--shadow-elevation-3);

  background: rgba(255, 255, 255, 0.1);

}



.pricing-card h3 {

  font-size: 1.8rem;

  font-weight: 700;

  margin-bottom: 15px;

  background: var(--accent-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.pricing-card .price {

  font-size: 2rem;

  font-weight: 800;

  margin: 15px 0 25px;

  background: var(--primary-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.pricing-card ul {

  list-style: none;

  padding: 0;

  margin: 0 0 30px;

  text-align: left;

  width: 100%;

}



.pricing-card ul li {

  padding: 10px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.9);

  font-size: 1rem;

}



.pricing-card ul li:last-child {

  border-bottom: none;

}



.pricing-card .cta-button {

  margin-top: auto;

  width: 100%;

  font-size: 1rem;

}



.pricing-card.featured {

  background: rgba(255, 215, 0, 0.12);

  border: 2px solid rgba(255, 215, 0, 0.3);

  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), var(--shadow-elevation-2);

  transform: scale(1.05);

}



.pricing-card.featured h3 {

  background: var(--gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



@media (max-width: 768px) {

  .pricing-card {

    padding: 30px 20px;

  }



  .pricing-card h3 {

    font-size: 1.5rem;

  }



  .pricing-card .price {

    font-size: 1.6rem;

  }

}



/* === FAQ SECTION === */

.faq-section {

  max-width: 1000px;

  margin: 60px auto;

  padding: 50px 30px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(25px);

  border-radius: 25px;

  box-shadow: var(--shadow-elevation-2);

  border: 1px solid rgba(255, 255, 255, 0.12);

  font-family: var(--ff-primary);

  color: var(--text-color);

  text-align: center;

}



.faq-section h2 {

  font-size: 2.5rem;

  margin-bottom: 40px;

  background: var(--accent-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.faq-list {

  text-align: left;

  max-width: 800px;

  margin: 0 auto;

}



.faq-item {

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(10px);

  border-radius: 15px;

  margin-bottom: 20px;

  padding: 25px;

  cursor: pointer;

  position: relative;

  transition: var(--transition-default);

  border: 1px solid rgba(255, 255, 255, 0.08);

}



.faq-item:hover {

  background: rgba(255, 255, 255, 0.1);

  transform: translateX(5px);

}



.faq-question {

  font-weight: 700;

  font-size: 1.2rem;

  color: #ffffff;

}



.faq-answer {

  margin-top: 15px;

  font-size: 1rem;

  line-height: 1.6;

  color: rgba(248, 249, 250, 0.85);

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.5s ease, opacity 0.3s ease;

  opacity: 0;

}



.faq-item.active .faq-answer {

  max-height: 500px;

  opacity: 1;

}



/* === SPECIAL OFFER PREMIUM === */

.special-offer {

  width: 900px;

  max-width: 95vw;

  margin: 0 auto 80px auto;

  padding: 50px 40px;

  background: var(--secondary-gradient);

  border-radius: 40px;

  box-shadow: 

    var(--shadow-elevation-3),

    0 0 60px rgba(240, 147, 251, 0.4);

  color: #fff;

  text-align: center;

  font-weight: 600;

  font-size: 1.3em;

  letter-spacing: 0.08em;

  line-height: 1.6em;

  box-sizing: border-box;

  user-select: none;

  transition: var(--transition-default);

  position: relative;

  overflow: hidden;

  animation: pulseGlow 4s ease-in-out infinite;

}



.special-offer::before {

  content: '';

  position: absolute;

  top: 0;

  left: -50%;

  width: 200%;

  height: 100%;

  background: linear-gradient(

    90deg,

    transparent 0%,

    rgba(255, 255, 255, 0.1) 50%,

    transparent 100%

  );

  animation: shimmer 3s ease-in-out infinite;

}



.special-offer:hover {

  transform: translateY(-8px) scale(1.02);

  box-shadow: 

    var(--shadow-elevation-3),

    0 0 80px rgba(240, 147, 251, 0.6);

}



.special-offer h2 {

  font-weight: 800;

  font-size: 2rem;

  margin-bottom: 20px;

  color: #ffffff;

  letter-spacing: 0.1em;

  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);

}



.special-offer p {

  font-size: 1.2rem;

  line-height: 1.5;

  margin: 0;

  font-weight: 500;

  color: rgba(255, 255, 255, 0.95);

}



/* === FOOTER PREMIUM === */

footer {

  background: rgba(0, 0, 0, 0.4);

  backdrop-filter: blur(25px);

  color: #fff;

  text-align: center;

  padding: 50px 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 

    0 -8px 32px rgba(0, 0, 0, 0.3),

    inset 0 1px 0 rgba(255, 255, 255, 0.05);

  position: relative;

}



footer::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    135deg,

    rgba(102, 126, 234, 0.05) 0%,

    rgba(0, 242, 254, 0.05) 100%

  );

  z-index: -1;

}



/* === BOUTONS CTA ULTRA PREMIUM === */

.cta-button,

.cta1-button,

.cta2-button,

.cta3-button,

.cta4-button {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 0.6rem;

  padding: 16px 36px;

  background: #26474E; /* Bleu foncé */

  color: #FFFFFF; /* Texte blanc */

  font-family: var(--ff-primary);

  font-size: var(--fs-button);

  font-weight: var(--fw-button);

  letter-spacing: var(--ls-button);

  text-decoration: none;

  border: none;

  border-radius: var(--bradius-pill);

  cursor: pointer;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);

  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;

  margin: 15px;

  box-sizing: border-box;

  touch-action: manipulation;

  position: relative;

  overflow: hidden;

  text-transform: uppercase;

}



/* === Hover / Focus === */

.cta-button:hover,

.cta1-button:hover,

.cta2-button:hover,

.cta3-button:hover,

.cta4-button:hover {

  transform: translateY(-3px);

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);

  filter: brightness(1.08);

  background: #F27438; /* Orange */

}



.cta-button:focus-visible,

.cta1-button:focus-visible,

.cta2-button:focus-visible,

.cta3-button:focus-visible,

.cta4-button:focus-visible {

  outline: 3px solid #9AC8EB; /* Bleu clair */

  outline-offset: 4px;

  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);

}



/* === Responsive Design === */

@media (max-width: 768px) {

  .cta-button,

  .cta1-button,

  .cta2-button,

  .cta3-button,

  .cta4-button {

    padding: 12px 24px;

    font-size: 0.9rem;

  }

}





/* === CONTACT FORM PREMIUM === */

#contact-form-section {

  max-width: 800px;

  margin: 80px auto;

  padding: 60px 40px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(25px);

  border-radius: 30px;

  box-shadow: var(--shadow-elevation-2);

  font-family: var(--ff-primary);

  color: var(--text-color);

  border: 1px solid rgba(255, 255, 255, 0.12);

  position: relative;

  overflow: hidden;

}



#contact-form-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    135deg,

    rgba(102, 126, 234, 0.03) 0%,

    rgba(0, 242, 254, 0.03) 100%

  );

  z-index: -1;

}



#contact-form-section h1#contact-form {

  text-align: center;

  font-size: 3rem;

  margin-bottom: 40px;

  background: var(--accent-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  font-weight: 800;

}



.contact-form {

  display: flex;

  flex-direction: column;

  gap: 30px;

}



.form-group,

.form-group1 {

  display: flex;

  flex-direction: column;

}



.form-group label,

.form-group1 label {

  font-weight: 700;

  margin-bottom: 12px;

  font-size: 1.2rem;

  color: #ffffff;

  user-select: none;

}



.contact-form input[type="text"],

.contact-form input[type="email"],

.contact-form input[type="date"],

.contact-form input[type="time"],

.contact-form textarea {

  padding: 18px 20px;

  font-size: 1.1rem;

  border: 2px solid transparent;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);

  color: #fff;

  box-shadow: var(--shadow-elevation-1);

  transition: var(--transition-default);

  resize: vertical;

  font-family: inherit;

  min-height: 50px;

}



.contact-form textarea {

  min-height: 150px;

}



.contact-form input::placeholder,

.contact-form textarea::placeholder {

  color: rgba(255, 255, 255, 0.6);

  font-style: italic;

}



.contact-form input:focus,

.contact-form textarea:focus {

  outline: none;

  border-color: var(--accent-color);

  background: rgba(255, 255, 255, 0.12);

  box-shadow: 

    0 0 0 4px rgba(0, 242, 254, 0.2),

    var(--glow-primary);

}







/* === SOCIAL SECTION PREMIUM === */

.social-section {

  padding: 60px 30px;

  text-align: center;

  background: rgba(255, 255, 255, 0.05);

  backdrop-filter: blur(20px);

  border-radius: 25px;

  box-shadow: var(--shadow-elevation-2);

  color: #fff;

  font-family: var(--ff-primary);

  user-select: none;

  margin: 60px auto;

  max-width: 1000px;

  border: 1px solid rgba(255, 255, 255, 0.1);

}



.social-section h3 {

  font-size: 2.5rem;

  margin-bottom: 40px;

  font-weight: 800;

  background: var(--gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  text-shadow: none;

}



.social-links {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 32px;

  flex-wrap: wrap;

  padding: 20px;

}



.social-links a {

  color: #ffffff;

  font-size: 2.8rem;

  text-decoration: none;

  position: relative;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 80px;

  height: 80px;

  border-radius: 24px;

  background: linear-gradient(135deg, 

    rgba(255, 255, 255, 0.08) 0%, 

    rgba(255, 255, 255, 0.02) 100%);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  overflow: hidden;

}



/* Effet de brillance animé */

.social-links a::before {

  content: '';

  position: absolute;

  inset: 0;

  border-radius: inherit;

  background: linear-gradient(135deg, 

    var(--accent-gradient, linear-gradient(135deg, #667eea 0%, #764ba2 100%)));

  opacity: 0;

  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  z-index: -1;

}



/* Effet de reflet lumineux */

.social-links a::after {

  content: '';

  position: absolute;

  top: -50%;

  left: -50%;

  width: 200%;

  height: 200%;

  background: linear-gradient(45deg, 

    transparent 30%, 

    rgba(255, 255, 255, 0.2) 50%, 

    transparent 70%);

  transform: translateX(-100%) translateY(-100%) rotate(45deg);

  transition: transform 0.6s ease;

  pointer-events: none;

}



.social-links a:hover::before,

.social-links a:focus::before {

  opacity: 0.3;

}



/* Animation du reflet au survol */

.social-links a:hover::after {

  transform: translateX(100%) translateY(100%) rotate(45deg);

}



.social-links a:hover,

.social-links a:focus {

  color: #ffffff;

  transform: translateY(-12px) scale(1.15) rotate(2deg);

  outline: none;

  text-shadow: 0 0 25px rgba(255, 255, 255, 0.9);

  box-shadow: 

    0 20px 40px rgba(0, 0, 0, 0.3),

    0 8px 16px rgba(0, 0, 0, 0.2),

    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  border-color: rgba(255, 255, 255, 0.3);

}



/* Animation de pulsation subtile */

.social-links a:hover {

  animation: pulse-glow 2s infinite alternate;

}



@keyframes pulse-glow {

  0% {

    box-shadow: 

      0 20px 40px rgba(0, 0, 0, 0.3),

      0 8px 16px rgba(0, 0, 0, 0.2),

      inset 0 1px 0 rgba(255, 255, 255, 0.2);

  }

  100% {

    box-shadow: 

      0 25px 50px rgba(0, 0, 0, 0.4),

      0 12px 24px rgba(0, 0, 0, 0.3),

      inset 0 1px 0 rgba(255, 255, 255, 0.3),

      0 0 30px rgba(255, 255, 255, 0.1);

  }

}



/* État actif avec effet de "clic" */

.social-links a:active {

  transform: translateY(-8px) scale(1.08);

  transition: all 0.1s ease;

}



/* Responsive design */

@media (max-width: 768px) {

  .social-links {

    gap: 24px;

  }

  

  .social-links a {

    width: 70px;

    height: 70px;

    font-size: 2.4rem;

  }

}



@media (max-width: 480px) {

  .social-links {

    gap: 20px;

  }

  

  .social-links a {

    width: 60px;

    height: 60px;

    font-size: 2rem;

  }

}



/* === BACK TO TOP BUTTON === */

.back-to-top {

  position: fixed;

  bottom: 40px;

  right: 40px;

  display: none;

  background: var(--primary-gradient);

  box-shadow: var(--shadow-elevation-2);

  border: 2px solid rgba(255, 255, 255, 0.2);

  color: #ffffff;

  border-radius: 50%;

  width: 70px;

  height: 70px;

  font-size: 28px;

  cursor: pointer;

  transition: var(--transition-default);

  z-index: 1000;

  animation: pulseGlow 3s infinite ease-in-out;

}



.back-to-top:hover {

  transform: scale(1.15) rotate(15deg);

  box-shadow: var(--shadow-elevation-3);

}



.back-to-top:focus {

  outline: 3px solid var(--clr-focus-ring);

  outline-offset: 3px;

}



/* === NEWSLETTER FORM === */

.newsletter-form {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 20px;

  max-width: 600px;

  margin: 30px auto;

  flex-wrap: wrap;

}



.newsletter-form .search-input {

  flex: 1;

  min-width: 250px;

}



/* === LATEST POSTS SECTION === */

.latest-posts {

  padding: 50px 40px;

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(25px);

  border-radius: 25px;

  box-shadow: var(--shadow-elevation-2);

  max-width: 1000px;

  margin: 60px auto;

  font-family: var(--ff-primary);

  border: 1px solid rgba(255, 255, 255, 0.12);

  position: relative;

  overflow: hidden;

}



.latest-posts::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    135deg,

    rgba(102, 126, 234, 0.03) 0%,

    rgba(0, 242, 254, 0.03) 100%

  );

  z-index: -1;

}



.latest-posts .section-title {

  font-size: 2.2rem;

  font-weight: 800;

  background: var(--accent-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  margin-bottom: 25px;

  border-left: 6px solid var(--accent-color);

  padding-left: 20px;

  text-shadow: none;

}



.latest-posts p {

  font-size: 1.1rem;

  color: rgba(248, 249, 250, 0.9);

  line-height: 1.7;

}

.donate-button {
    position: fixed;
    bottom: 24px;
    left: 24px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;

    color: #fff;
    background: linear-gradient(135deg, #ff5f6d, #ffc371);
    border: none;
    border-radius: 999px;

    cursor: pointer;
    z-index: 1000;

    box-shadow:
        0 10px 30px rgba(255, 95, 109, 0.35),
        inset 0 -2px 6px rgba(255, 255, 255, 0.2);

    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}

/* Animation flottante douce */
.donate-button {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Hover */
.donate-button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 14px 40px rgba(255, 95, 109, 0.45),
        inset 0 -2px 8px rgba(255, 255, 255, 0.25);
}

/* Clic */
.donate-button:active {
    transform: scale(0.97);
}

/* Mobile friendly */
@media (max-width: 600px) {
    .donate-button {
        bottom: 16px;
        left: 16px;
        padding: 12px 18px;
        font-size: 14px;
    }
}


/* === COOKIE BANNER ULTRA PREMIUM === */

#cookie-banner.cookie-banner {

  position: fixed;

  bottom: 30px;

  left: 30px;

  right: 30px;

  transform: none;

  width: auto;

  max-width: 700px;

  margin: 0 auto;

  min-width: auto;

  padding: 40px 50px;

  border-radius: 25px;

  background: rgba(10, 10, 15, 0.95);

  backdrop-filter: blur(30px);

  border: 2px solid transparent;

  background-image:

    linear-gradient(rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.95)),

    var(--accent-gradient);

  background-clip: padding-box, border-box;

  background-origin: padding-box, border-box;

  box-shadow: 

    var(--shadow-elevation-3),

    var(--glow-primary);

  animation: floatUp 1s ease-out forwards, pulseGlow 6s infinite ease-in-out;

  z-index: 9999;

  overflow: hidden;

  touch-action: manipulation;

}



#cookie-banner::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: 

    radial-gradient(var(--accent-color) 1px, transparent 1px),

    radial-gradient(var(--accent-color) 1px, transparent 1px);

  background-size: 30px 30px;

  background-position: 0 0, 15px 15px;

  opacity: 0.03;

  animation: ambientFloat 45s linear infinite;

  z-index: 0;

  pointer-events: none;

}



#cookie-banner p {

  font-size: 1.1rem;

  line-height: 1.6;

  margin-bottom: 30px;

  position: relative;

  z-index: 2;

  word-wrap: break-word;

  hyphens: auto;

  color: rgba(248, 249, 250, 0.95);

}



#cookie-banner a {

  color: var(--accent-color);

  text-decoration: none;

  border-bottom: 2px dashed var(--accent-color);

  transition: var(--transition-default);

  word-break: break-word;

}



#cookie-banner a:hover,

#cookie-banner a:focus {

  color: #ffffff;

  border-color: #ffffff;

  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);

  outline: none;

}



.cookie-buttons {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;

  justify-content: flex-end;

  z-index: 2;

  position: relative;

}



.cookie-buttons button {

  position: relative;

  overflow: hidden;

  padding: 16px 32px;

  min-height: 55px;

  min-width: 160px;

  border: none;

  border-radius: 15px;

  background: var(--accent-gradient);

  color: #000;

  font-weight: 700;

  font-size: 1rem;

  text-transform: uppercase;

  letter-spacing: 1px;

  cursor: pointer;

  box-shadow: var(--shadow-elevation-2);

  transition: var(--transition-default);

  -webkit-tap-highlight-color: transparent;

  touch-action: manipulation;

}



.cookie-buttons button::before {

  content: '';

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: linear-gradient(

    90deg,

    transparent 0%,

    rgba(255, 255, 255, 0.3) 50%,

    transparent 100%

  );

  transition: left 0.6s ease;

}



.cookie-buttons button:hover::before,

.cookie-buttons button:focus::before {

  left: 100%;

}



.cookie-buttons button:hover,

.cookie-buttons button:focus {

  background: var(--gold-gradient);

  transform: translateY(-4px) scale(1.05);

  box-shadow: 

    var(--shadow-elevation-3),

    0 0 30px rgba(255, 215, 0, 0.4);

  outline: none;

}



.cookie-buttons button:active {

  transform: translateY(-2px) scale(1.02);

}



/* === RESPONSIVE DESIGN === */

@media (max-width: 1200px) {

  nav {

    margin: 40px 20px;

    padding: 15px 25px;

  }

  

  .features-list {

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 20px;

  }

}



@media (max-width: 768px) {

  nav ul {

    gap: 15px;

  }

  

  nav a {

    padding: 12px 20px;

    font-size: 1rem;

  }

  

  .article-card, .article-card1 {

    padding: 25px;

    margin: 0 15px;

  }

  

  .features-list {

    grid-template-columns: 1fr;

    gap: 15px;

  }

  

  .feature-item {

    padding: 25px;

  }

  

  .social-links {

    gap: 25px;

  }

  

  .social-links a {

    font-size: 2.5rem;

    padding: 15px;

  }

  

  #cookie-banner {

    bottom: 15px;

    left: 15px;

    right: 15px;

    padding: 30px 25px;

  }

  

  .cookie-buttons {

    justify-content: center;

    gap: 15px;

  }

}



@media (max-width: 480px) {

  nav {

    padding: 10px 15px;

    border-radius: 20px;

  }

  

  nav ul {

    flex-direction: column;

    gap: 10px;

  }

  

  nav a {

    width: 100%;

    justify-content: center;

    padding: 15px;

  }

  

  .article-card, .article-card1 {

    padding: 20px;

    margin: 0 10px;

  }

  

  .features-section {

    padding: 40px 20px;

  }

  

  .feature-item {

    padding: 20px;

  }

  

  .special-offer {

    padding: 30px 20px;

  }

  

  .cookie-buttons {

    flex-direction: column;

    align-items: stretch;

  }

  

  .cookie-buttons button {

    width: 100%;

    min-width: auto;

  }

}



/* === ACCESSIBILITY === */

@media (prefers-reduced-motion: reduce) {

  *,

  *::before,

  *::after {

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;

  }

}



@media (prefers-color-scheme: light) {

  :root {

    --background-color: #f8f9fa;

    --text-color: #1a1a2e;

  }

}



/* === PRINT STYLES === */

@media print {

  #cookie-banner,

  .back-to-top,

  .social-section {

    display: none !important;

  }

  

  body {

    background: white !important;

    color: black !important;

  }

}



/* === HIGH DPI SUPPORT === */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {

  .logo img {

    image-rendering: -webkit-optimize-contrast;

  }

}



/* === FOCUS VISIBLE SUPPORT === */

@supports selector(:focus-visible) {

  button:focus,

  input:focus,

  textarea:focus {

    outline: none;

  }

  

  button:focus-visible,

  input:focus-visible,

  textarea:focus-visible {

    outline: 3px solid var(--clr-focus-ring);

    outline-offset: 2px;

  }

}