@charset "UTF-8";
body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: #2d1b69;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body.theme-dark {
  background: linear-gradient(135deg, #0f0a1a 0%, #1a0d2e 100%);
  color: #e2e8f0;
}

section {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: transparent;
  margin-bottom: 3rem;
  box-shadow: none;
}
section#groupe {
  margin-top: -3rem;
  padding-top: 6rem;
}
section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #7B2BE0;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #E625C4;
  padding-bottom: 0.5rem;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(123, 43, 224, 0.1);
}
section#defi {
  padding: 3rem 2rem;
  border-radius: 1rem;
  border: 2px solid #8478E3;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
section#defi p {
  font-size: 1.1rem;
  line-height: 1.8;
}
section#defi p strong {
  color: #7B2BE0;
  display: block;
  margin-top: 1rem;
  font-weight: 700;
}
section ul {
  list-style-type: disc;
  margin-left: 0;
  padding-left: 1.5rem;
}
section ul#groupe {
  list-style-type: none;
  font-size: 1.1rem;
  padding-left: 0;
}
section ul#groupe li {
  margin-bottom: 0.5rem;
}
section#ressources ul, section#idees ul, section#pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
section#ressources ul li, section#idees ul li, section#pages ul li {
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 5px solid #E625C4;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
section#ressources ul li:hover, section#idees ul li:hover, section#pages ul li:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.15);
  border-left-color: #7B2BE0;
}
section a {
  color: #7B2BE0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}
section a:hover {
  color: #E625C4;
  text-shadow: 0 0 8px rgba(230, 37, 196, 0.3);
}

main {
  min-height: calc(100vh - 200px);
  background: transparent;
}

body.theme-dark section h2 {
  color: #a855f7;
  border-bottom-color: #f472b6;
  text-shadow: 0 2px 4px rgba(168, 85, 247, 0.2);
}
body.theme-dark section a {
  color: #a855f7;
}
body.theme-dark section a:hover {
  color: #f472b6;
  text-shadow: 0 0 12px rgba(244, 114, 182, 0.4);
}
body.theme-dark section#defi {
  border-color: #a855f7;
}
body.theme-dark section#defi p strong {
  color: #a855f7;
}
body.theme-dark section#ressources ul li, body.theme-dark section#idees ul li, body.theme-dark section#pages ul li {
  border-left-color: #f472b6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
body.theme-dark section#ressources ul li:hover, body.theme-dark section#idees ul li:hover, body.theme-dark section#pages ul li:hover {
  border-left-color: #a855f7;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

header {
  background: linear-gradient(135deg, #8478E3 0%, #7B2BE0 100%);
  color: white;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(123, 43, 224, 0.3);
}
header .branding, header nav {
  z-index: 20;
}
header {
  /* --- LOGO ET SOUS-TITRE --- */
}
header .branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}
header .branding img {
  width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
header .branding img:hover {
  transform: scale(1.05);
}
header .branding p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  margin: 0;
  color: #2d1b69;
}
header {
  /* --- BOUTON BURGER --- */
}
header .menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
  display: none;
  min-width: 44px;
  min-height: 44px;
}
header .menu-toggle .burger-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  position: relative;
  transition: background-color 0.3s;
}
header .menu-toggle .burger-icon::before, header .menu-toggle .burger-icon::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  position: absolute;
  transition: transform 0.3s;
}
header .menu-toggle .burger-icon::before {
  top: -8px;
}
header .menu-toggle .burger-icon::after {
  top: 8px;
}
header .menu-toggle.is-active .burger-icon {
  background-color: transparent;
}
header .menu-toggle.is-active .burger-icon::before {
  transform: translateY(8px) rotate(45deg);
}
header .menu-toggle.is-active .burger-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}
header {
  /* --- BOUTON THÈME CERCLE --- */
}
header .theme-toggle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  margin-left: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
header .theme-toggle .theme-icon {
  font-size: 1.4rem;
  transition: all 0.3s ease;
  color: white;
}
header .theme-toggle:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
header .theme-toggle:active {
  transform: translateY(-1px) scale(0.98);
}
header {
  /* --- NAVIGATION --- */
}
header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header nav ul li a {
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
header {
  /* --- DESKTOP --- */
}
@media (min-width: 901px) {
  header nav {
    display: flex;
    margin-left: auto;
    flex-grow: 1;
    justify-content: flex-end;
  }
  header nav ul {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
  }
  header nav ul li a {
    color: white;
    font-size: 0.95rem;
  }
  header nav ul li a:hover {
    background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 37, 196, 0.3);
  }
  header .menu-toggle {
    display: none;
  }
  header .branding img {
    width: 140px;
  }
}
header {
  /* --- MOBILE --- */
}
@media (max-width: 900px) {
  header {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  header .branding {
    margin-right: auto; /* Pousse les boutons à droite */
  }
  header .theme-toggle {
    display: inline-flex;
    order: 1;
  }
  header .menu-toggle {
    display: block;
    order: 2;
    margin-left: 0.5rem;
  }
  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #7B2BE0 0%, rgb(98.6666666667, 27.5555555556, 188.4444444444) 100%);
    box-shadow: 0 4px 20px rgba(123, 43, 224, 0.3);
  }
  header nav.is-active {
    display: block;
  }
  header nav ul {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
  }
  header nav ul li a {
    color: white;
    display: block;
    padding: 0.6rem 0;
  }
  header nav ul li a:hover {
    background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
    color: white;
    transform: translateX(5px);
  }
  header .branding img {
    width: 100px;
  }
}

body.theme-dark header {
  background: linear-gradient(135deg, rgb(75.3703703704, 21.049382716, 143.950617284) 0%, rgb(52.0740740741, 14.5432098765, 99.4567901235) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
body.theme-dark header .branding p {
  color: #a78bfa;
}
body.theme-dark header nav ul li a:hover {
  background: linear-gradient(135deg, #f472b6 0%, #E3748D 100%);
  color: white;
}
@media (max-width: 900px) {
  body.theme-dark header nav {
    background: linear-gradient(135deg, rgb(63.7222222222, 17.7962962963, 121.7037037037) 0%, rgb(40.4259259259, 11.2901234568, 77.2098765432) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  }
  body.theme-dark header nav ul li a:hover {
    background: linear-gradient(135deg, #f472b6 0%, #E3748D 100%);
  }
}
body.theme-dark header .theme-toggle {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.25) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
body.theme-dark header .theme-toggle .theme-icon {
  color: #fff;
}
body.theme-dark header .theme-toggle:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

footer {
  background: linear-gradient(135deg, #7B2BE0 0%, rgb(87.0185185185, 24.3024691358, 166.1975308642) 100%);
  color: white;
  text-align: center;
  padding: 2rem 0;
  font-family: "Inter", sans-serif;
  margin-top: 3rem;
  font-size: 0.9rem;
  box-shadow: 0 -4px 20px rgba(123, 43, 224, 0.2);
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-content p {
  margin: 0;
  font-size: 0.9rem;
}
footer .footer-content .source-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
footer .footer-content .source-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
footer .footer-content .source-btn:active {
  transform: translateY(0);
}
footer .footer-content .source-btn span:first-child {
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(230, 37, 196, 0.3);
  transition: all 0.3s ease;
}
footer .footer-content .source-btn:hover span:first-child {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(230, 37, 196, 0.4);
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  footer .footer-content .source-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

body.theme-dark footer {
  background: linear-gradient(135deg, rgb(52.0740740741, 14.5432098765, 99.4567901235) 0%, rgb(28.7777777778, 8.037037037, 54.962962963) 100%);
  color: #e2e8f0;
  border-top: 2px solid rgba(123, 43, 224, 0.3);
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.6);
}
body.theme-dark footer .footer-content p {
  color: #a78bfa;
}
body.theme-dark footer .footer-content .source-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
}
body.theme-dark footer .footer-content .source-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
body.theme-dark footer .footer-content .source-btn span:first-child {
  background: linear-gradient(135deg, #E625C4 0%, #CB74E5 100%);
  box-shadow: 0 3px 12px rgba(230, 37, 196, 0.4);
}
body.theme-dark footer .footer-content .source-btn:hover span:first-child {
  background: linear-gradient(135deg, #E3748D 0%, #E625C4 100%);
  box-shadow: 0 5px 15px rgba(230, 37, 196, 0.5);
  transform: scale(1.15) rotate(5deg);
}

#carte-france {
  margin-bottom: 3rem;
}
#carte-france h2 {
  color: #7B2BE0;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}
#carte-france p {
  color: #2d1b69;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.map-chart-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
.map-chart-container .chart-container {
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}
.map-chart-container.chart-visible .chart-container {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 1024px) {
  .map-chart-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .map-chart-container .chart-container {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
}

.map-container {
  position: relative;
}
.map-container #map {
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 2px solid #8478E3;
  background: transparent;
}

.chart-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid rgba(123, 43, 224, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.chart-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.15);
}
.chart-container h3 {
  color: #7B2BE0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}
.chart-container #chart {
  width: 100%;
  height: 500px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 1rem;
}

.reset-zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 37, 196, 0.3);
  z-index: 100;
}
.reset-zoom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 37, 196, 0.4);
  background: linear-gradient(135deg, #E3748D 0%, #CB74E5 100%);
}
.reset-zoom-btn:active {
  transform: translateY(0);
}

.map-tooltip {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  pointer-events: none;
  z-index: 1000;
}

#destination-info {
  font-family: "Inter", sans-serif;
  box-shadow: 0 8px 32px rgba(123, 43, 224, 0.3);
  backdrop-filter: blur(10px);
}
#destination-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}
#destination-info button {
  transition: all 0.2s ease;
}
#destination-info button:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-1px);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.destination-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 5px solid #E625C4;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.destination-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.15);
  border-left-color: #7B2BE0;
}
.destination-card h3 {
  color: #7B2BE0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.destination-card .price {
  display: inline-block;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}

body.theme-dark #carte-france h2 {
  color: #a855f7;
}
body.theme-dark #carte-france p {
  color: #e2e8f0;
}
body.theme-dark .map-container #map {
  border-color: #a855f7;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
body.theme-dark .chart-container {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.9) 0%, rgba(123, 43, 224, 0.05) 100%);
  border-color: rgba(168, 85, 247, 0.3);
}
body.theme-dark .chart-container h3 {
  color: #a855f7;
}
body.theme-dark .chart-container #chart {
  background: rgba(26, 13, 46, 0.5);
}
body.theme-dark .reset-zoom-btn {
  background: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
body.theme-dark .reset-zoom-btn:hover {
  background: linear-gradient(135deg, #f472b6 0%, #E3748D 100%);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}
body.theme-dark .destination-card {
  border-color: #a855f7;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
body.theme-dark .destination-card:hover {
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}
body.theme-dark .destination-card h3 {
  color: #a855f7;
}
body.theme-dark #destination-info {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#about {
  padding: 2rem 0;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.05) 0%, rgba(132, 120, 227, 0.1) 100%);
}
#about .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}
#about h1 {
  color: #7B2BE0;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#about .intro {
  text-align: center;
  color: #2d1b69;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#about .about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
#about .about-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#about .about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7B2BE0 0%, #E625C4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#about .about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.2);
}
#about .about-card:hover::before {
  transform: scaleX(1);
}
#about .about-card h2 {
  color: #7B2BE0;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#about .about-card p {
  color: #2d1b69;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
#about .about-footer {
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.1) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  border: 2px solid rgba(123, 43, 224, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
#about .about-footer h3 {
  color: #7B2BE0;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#about .about-footer p {
  color: #2d1b69;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}
#about .about-footer .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  color: white;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(123, 43, 224, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
#about .about-footer .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.4);
  background: linear-gradient(135deg, #E625C4 0%, #7B2BE0 100%);
}
#about .about-footer .cta-btn:active {
  transform: translateY(-1px);
}
#about .about-footer .cta-btn span:first-child {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
#about .about-footer .cta-btn:hover span:first-child {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  #about {
    padding: 1rem 0;
  }
  #about h1 {
    font-size: 2rem;
  }
  #about .intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #about .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #about .about-card {
    padding: 1.5rem;
  }
  #about .about-card h2 {
    font-size: 1.2rem;
  }
  #about .about-footer {
    padding: 2rem;
  }
  #about .about-footer .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  #about .about-footer .cta-btn span:first-child {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
}

body.theme-dark #about {
  background: linear-gradient(135deg, rgba(15, 10, 26, 0.95) 0%, rgba(26, 13, 46, 0.9) 100%);
}
body.theme-dark #about h1 {
  color: #CB74E5;
}
body.theme-dark #about .intro {
  color: #a78bfa;
}
body.theme-dark #about .about-card {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
body.theme-dark #about .about-card:hover {
  border-color: rgba(123, 43, 224, 0.4);
  box-shadow: 0 12px 40px rgba(123, 43, 224, 0.2);
}
body.theme-dark #about .about-card h2 {
  color: #CB74E5;
  text-shadow: 0 2px 4px rgba(123, 43, 224, 0.3);
}
body.theme-dark #about .about-card p {
  color: #a78bfa;
}
body.theme-dark #about .about-footer {
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.2) 0%, rgba(132, 120, 227, 0.15) 100%);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
body.theme-dark #about .about-footer h3 {
  color: #CB74E5;
}
body.theme-dark #about .about-footer p {
  color: #a78bfa;
}
body.theme-dark #about .about-footer .cta-btn {
  background: linear-gradient(135deg, #E625C4 0%, #CB74E5 100%);
  box-shadow: 0 4px 15px rgba(230, 37, 196, 0.4);
}
body.theme-dark #about .about-footer .cta-btn:hover {
  background: linear-gradient(135deg, #CB74E5 0%, #E625C4 100%);
  box-shadow: 0 8px 25px rgba(230, 37, 196, 0.5);
}
body.theme-dark #about .about-footer .cta-btn span:first-child {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}
body.theme-dark #about .about-footer .cta-btn:hover span:first-child {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

#comparateur {
  padding: 2rem 0;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.05) 0%, rgba(132, 120, 227, 0.1) 100%);
}
#comparateur .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
#comparateur h1 {
  color: #7B2BE0;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#comparateur .intro {
  text-align: center;
  color: #2d1b69;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#comparateur .comparator-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#comparateur .comparator-info {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(123, 43, 224, 0.1);
}
#comparateur .comparator-info h2 {
  color: #7B2BE0;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#comparateur .comparator-info p {
  color: #2d1b69;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}
#comparateur .comparator-info .info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
#comparateur .comparator-info .info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
}
#comparateur .comparator-info .info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.2);
}
#comparateur .comparator-info .info-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
#comparateur .comparator-info .info-card h3 {
  color: #7B2BE0;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#comparateur .comparator-info .info-card p {
  color: #2d1b69;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
#comparateur .co2-visualization {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
}
#comparateur .co2-visualization:hover {
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.2);
}
#comparateur .co2-visualization .visualization-header {
  margin-bottom: 2rem;
}
#comparateur .co2-visualization .visualization-header h3 {
  color: #7B2BE0;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#comparateur .co2-visualization .visualization-header p {
  color: #2d1b69;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
#comparateur .co2-visualization .impact-co2-container {
  width: 100%;
  min-height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(123, 43, 224, 0.1);
  background: white;
}
#comparateur .comparator-actions {
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.1) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 2px solid rgba(123, 43, 224, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
#comparateur .comparator-actions h3 {
  color: #7B2BE0;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
#comparateur .comparator-actions .tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
#comparateur .comparator-actions .tip-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#comparateur .comparator-actions .tip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7B2BE0 0%, #E625C4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#comparateur .comparator-actions .tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.2);
}
#comparateur .comparator-actions .tip-card:hover::before {
  transform: scaleX(1);
}
#comparateur .comparator-actions .tip-card .tip-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 15px rgba(230, 37, 196, 0.3);
  transition: all 0.3s ease;
}
#comparateur .comparator-actions .tip-card:hover .tip-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(230, 37, 196, 0.4);
}
#comparateur .comparator-actions .tip-card h4 {
  color: #7B2BE0;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
#comparateur .comparator-actions .tip-card p {
  color: #2d1b69;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  #comparateur {
    padding: 1rem 0;
  }
  #comparateur h1 {
    font-size: 2rem;
  }
  #comparateur .intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #comparateur .comparator-content {
    gap: 2rem;
  }
  #comparateur .comparator-info,
  #comparateur .co2-visualization,
  #comparateur .comparator-actions {
    padding: 1.5rem;
  }
  #comparateur .comparator-info h2, #comparateur .comparator-info h3,
  #comparateur .co2-visualization h2,
  #comparateur .co2-visualization h3,
  #comparateur .comparator-actions h2,
  #comparateur .comparator-actions h3 {
    font-size: 1.3rem;
  }
  #comparateur .info-cards,
  #comparateur .tips-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #comparateur .tip-card .tip-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

body.theme-dark #comparateur {
  background: linear-gradient(135deg, rgba(15, 10, 26, 0.95) 0%, rgba(26, 13, 46, 0.9) 100%);
}
body.theme-dark #comparateur h1 {
  color: #CB74E5;
}
body.theme-dark #comparateur .intro {
  color: #a78bfa;
}
body.theme-dark #comparateur .comparator-info {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
body.theme-dark #comparateur .comparator-info h2 {
  color: #CB74E5;
  text-shadow: 0 2px 4px rgba(123, 43, 224, 0.3);
}
body.theme-dark #comparateur .comparator-info p {
  color: #a78bfa;
}
body.theme-dark #comparateur .comparator-info .info-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(123, 43, 224, 0.05) 100%);
  border-color: rgba(123, 43, 224, 0.2);
}
body.theme-dark #comparateur .comparator-info .info-card:hover {
  border-color: rgba(123, 43, 224, 0.4);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.2);
}
body.theme-dark #comparateur .comparator-info .info-card h3 {
  color: #CB74E5;
}
body.theme-dark #comparateur .comparator-info .info-card p {
  color: #a78bfa;
}
body.theme-dark #comparateur .co2-visualization {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
body.theme-dark #comparateur .co2-visualization:hover {
  border-color: rgba(123, 43, 224, 0.4);
  box-shadow: 0 12px 40px rgba(123, 43, 224, 0.2);
}
body.theme-dark #comparateur .co2-visualization .visualization-header h3 {
  color: #CB74E5;
  text-shadow: 0 2px 4px rgba(123, 43, 224, 0.3);
}
body.theme-dark #comparateur .co2-visualization .visualization-header p {
  color: #a78bfa;
}
body.theme-dark #comparateur .co2-visualization .impact-co2-container {
  background: #1a1a1a;
  box-shadow: 0 4px 15px rgba(123, 43, 224, 0.2);
}
body.theme-dark #comparateur .comparator-actions {
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.2) 0%, rgba(132, 120, 227, 0.15) 100%);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
body.theme-dark #comparateur .comparator-actions h3 {
  color: #CB74E5;
}
body.theme-dark #comparateur .comparator-actions .tip-card {
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(123, 43, 224, 0.2);
}
body.theme-dark #comparateur .comparator-actions .tip-card:hover {
  border-color: rgba(123, 43, 224, 0.4);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.2);
}
body.theme-dark #comparateur .comparator-actions .tip-card .tip-icon {
  background: linear-gradient(135deg, #E625C4 0%, #CB74E5 100%);
  box-shadow: 0 4px 15px rgba(230, 37, 196, 0.4);
}
body.theme-dark #comparateur .comparator-actions .tip-card:hover .tip-icon {
  box-shadow: 0 6px 20px rgba(230, 37, 196, 0.5);
}
body.theme-dark #comparateur .comparator-actions .tip-card h4 {
  color: #CB74E5;
}
body.theme-dark #comparateur .comparator-actions .tip-card p {
  color: #a78bfa;
}

#contact {
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(123, 43, 224, 0.05) 0%, transparent 70%);
  z-index: -1;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  position: relative;
}
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(132, 120, 227, 0.1) 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(123, 43, 224, 0.2);
  box-shadow: 0 20px 40px rgba(123, 43, 224, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7B2BE0 0%, #E625C4 50%, #E3748D 100%);
}
.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(123, 43, 224, 0.2);
  border-color: rgba(123, 43, 224, 0.4);
}
.contact-info h3 {
  color: #7B2BE0;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info h3::before {
  content: "✨";
  font-size: 1.2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid #7B2BE0;
  transition: all 0.3s ease;
  position: relative;
}
.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.05) 0%, transparent 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.contact-method:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.15);
}
.contact-method:hover::before {
  opacity: 1;
}
.contact-method strong {
  color: #7B2BE0;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.contact-method span {
  color: #2d1b69;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(230, 37, 196, 0.05) 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(230, 37, 196, 0.2);
  box-shadow: 0 20px 40px rgba(230, 37, 196, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E625C4 0%, #E3748D 50%, #CB74E5 100%);
}
.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(230, 37, 196, 0.2);
  border-color: rgba(230, 37, 196, 0.4);
}
.contact-form h3 {
  color: #E625C4;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form h3::before {
  content: "💌";
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #7B2BE0;
  font-weight: 600;
  font-size: 1rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(123, 43, 224, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #7B2BE0;
  box-shadow: 0 0 0 3px rgba(123, 43, 224, 0.1);
  background: rgb(255, 255, 255);
  transform: translateY(-2px);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(45, 27, 105, 0.5);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(230, 37, 196, 0.4);
  background: linear-gradient(135deg, #E3748D 0%, #CB74E5 100%);
}
.submit-btn:hover::before {
  left: 100%;
}
.submit-btn:active {
  transform: translateY(-1px);
}

.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(123, 43, 224, 0.1);
}
.social-links h4 {
  color: #7B2BE0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123, 43, 224, 0.2);
}
.social-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.4);
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
}

select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(123, 43, 224, 0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B2BE0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}
select:focus {
  outline: none;
  border-color: #7B2BE0;
  box-shadow: 0 0 0 3px rgba(123, 43, 224, 0.1);
  background-color: rgb(255, 255, 255);
  transform: translateY(-2px);
}

.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #2d1b69;
  position: relative;
  padding-left: 2.5rem;
}
.checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-label .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(123, 43, 224, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.checkbox-label .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-label input:checked ~ .checkmark {
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  border-color: #7B2BE0;
}
.checkbox-label input:checked ~ .checkmark::after {
  display: block;
}
.checkbox-label:hover .checkmark {
  border-color: #7B2BE0;
  box-shadow: 0 0 0 3px rgba(123, 43, 224, 0.1);
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.submit-btn .btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.submit-btn:hover .btn-icon {
  transform: scale(1.2) rotate(10deg);
}

.faq-section {
  margin-top: 4rem;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 20px;
  border: 2px solid rgba(123, 43, 224, 0.1);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.1);
}
.faq-section h3 {
  color: #7B2BE0;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

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

.faq-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border-left: 4px solid #E625C4;
  transition: all 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 37, 196, 0.15);
  border-left-color: #7B2BE0;
}
.faq-item h4 {
  color: #7B2BE0;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.faq-item p {
  color: #2d1b69;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.form-group.focused label {
  color: #E625C4;
  transform: translateY(-2px);
}
.form-group.focused input, .form-group.focused textarea, .form-group.focused select {
  border-color: #E625C4;
  box-shadow: 0 0 0 3px rgba(230, 37, 196, 0.1);
}

.contact-info, .contact-form {
  animation: slideInUp 0.6s ease-out;
}

.contact-info {
  animation-delay: 0.1s;
}

.contact-form {
  animation-delay: 0.2s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .contact-info, .contact-form {
    padding: 2rem;
  }
  .contact-method {
    padding: 1rem;
  }
  .form-group input, .form-group textarea {
    padding: 0.8rem 1rem;
  }
}
body.theme-dark #contact::before {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}
body.theme-dark .contact-info, body.theme-dark .contact-form {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.9) 0%, rgba(123, 43, 224, 0.1) 100%);
  border-color: rgba(168, 85, 247, 0.3);
}
body.theme-dark .contact-method {
  background: rgba(26, 13, 46, 0.6);
}
body.theme-dark .contact-method strong {
  color: #a855f7;
}
body.theme-dark .contact-method span {
  color: #e2e8f0;
}
body.theme-dark .form-group input, body.theme-dark .form-group textarea, body.theme-dark .form-group select {
  background: rgba(26, 13, 46, 0.8);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}
body.theme-dark .form-group input:focus, body.theme-dark .form-group textarea:focus, body.theme-dark .form-group select:focus {
  border-color: #a855f7;
  background: rgb(26, 13, 46);
}
body.theme-dark .form-group input::placeholder, body.theme-dark .form-group textarea::placeholder, body.theme-dark .form-group select::placeholder {
  color: rgba(226, 232, 240, 0.5);
}
body.theme-dark .social-links {
  border-top-color: rgba(168, 85, 247, 0.2);
}
body.theme-dark .social-links h4 {
  color: #a855f7;
}
body.theme-dark .social-icon {
  background: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}
body.theme-dark .social-icon:hover {
  background: linear-gradient(135deg, #f472b6 0%, #E3748D 100%);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}
body.theme-dark .checkbox-label {
  color: #e2e8f0;
}
body.theme-dark .checkbox-label .checkmark {
  background: rgba(26, 13, 46, 0.8);
  border-color: rgba(168, 85, 247, 0.3);
}
body.theme-dark .checkbox-label:hover .checkmark {
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}
body.theme-dark .faq-section {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.6) 0%, rgba(123, 43, 224, 0.05) 100%);
  border-color: rgba(168, 85, 247, 0.2);
}
body.theme-dark .faq-section h3 {
  color: #a855f7;
}
body.theme-dark .faq-item {
  background: rgba(26, 13, 46, 0.6);
}
body.theme-dark .faq-item h4 {
  color: #a855f7;
}
body.theme-dark .faq-item p {
  color: #e2e8f0;
}

#evenements {
  padding: 2rem 0;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.05) 0%, rgba(132, 120, 227, 0.1) 100%);
}
#evenements .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
#evenements h2 {
  color: #7B2BE0;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#evenements p {
  text-align: center;
  color: #2d1b69;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#evenements .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
#evenements .event-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#evenements .event-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7B2BE0 0%, #E625C4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#evenements .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.2);
}
#evenements .event-card:hover::before {
  transform: scaleX(1);
}
#evenements .event-card .event-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
#evenements .event-card .event-header h3 {
  color: #7B2BE0;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}
#evenements .event-card .event-header .event-type {
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(230, 37, 196, 0.3);
}
#evenements .event-card .date {
  color: #CB74E5;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}
#evenements .event-card p {
  color: #2d1b69;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: left;
}
#evenements .event-card .event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
#evenements .event-card .event-footer .location {
  color: #6b46c1;
  font-size: 0.9rem;
  font-weight: 500;
}
#evenements .event-card .event-footer .event-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(123, 43, 224, 0.3);
}
#evenements .event-card .event-footer .event-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(123, 43, 224, 0.4);
  background: linear-gradient(135deg, #E625C4 0%, #7B2BE0 100%);
}
#evenements .event-card .event-footer .event-btn:active {
  transform: translateY(0);
}
#evenements .event-card .event-footer .event-btn span:first-child {
  font-size: 1rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
#evenements .event-card .event-footer .event-btn:hover span:first-child {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  #evenements {
    padding: 1rem 0;
  }
  #evenements h2 {
    font-size: 1.8rem;
  }
  #evenements p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #evenements .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #evenements .event-card {
    padding: 1.5rem;
  }
  #evenements .event-card .event-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #evenements .event-card .event-header .event-type {
    align-self: flex-start;
  }
  #evenements .event-card .event-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  #evenements .event-card .event-footer .event-btn {
    align-self: center;
  }
}

body.theme-dark #evenements {
  background: linear-gradient(135deg, rgba(15, 10, 26, 0.95) 0%, rgba(26, 13, 46, 0.9) 100%);
}
body.theme-dark #evenements h2 {
  color: #CB74E5;
}
body.theme-dark #evenements p {
  color: #a78bfa;
}
body.theme-dark #evenements .event-card {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
body.theme-dark #evenements .event-card:hover {
  border-color: rgba(123, 43, 224, 0.4);
  box-shadow: 0 12px 40px rgba(123, 43, 224, 0.2);
}
body.theme-dark #evenements .event-card .event-header h3 {
  color: #CB74E5;
  text-shadow: 0 2px 4px rgba(123, 43, 224, 0.3);
}
body.theme-dark #evenements .event-card .event-header .event-type {
  background: linear-gradient(135deg, #E625C4 0%, #CB74E5 100%);
  box-shadow: 0 3px 10px rgba(230, 37, 196, 0.4);
}
body.theme-dark #evenements .event-card .date {
  color: #CB74E5;
}
body.theme-dark #evenements .event-card p {
  color: #a78bfa;
}
body.theme-dark #evenements .event-card .event-footer .location {
  color: #a78bfa;
}
body.theme-dark #evenements .event-card .event-footer .event-btn {
  background: linear-gradient(135deg, #E625C4 0%, #CB74E5 100%);
  box-shadow: 0 2px 8px rgba(230, 37, 196, 0.4);
}
body.theme-dark #evenements .event-card .event-footer .event-btn:hover {
  background: linear-gradient(135deg, #CB74E5 0%, #E625C4 100%);
  box-shadow: 0 4px 15px rgba(230, 37, 196, 0.5);
}
body.theme-dark #evenements .event-card .event-footer .event-btn span:first-child {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 4px rgba(255, 255, 255, 0.1);
}
body.theme-dark #evenements .event-card .event-footer .event-btn:hover span:first-child {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

#data-explorer {
  position: relative;
  overflow: hidden;
}
#data-explorer::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(123, 43, 224, 0.03) 0%, transparent 70%);
  z-index: -1;
  animation: float 25s ease-in-out infinite;
}

.data-controls {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(132, 120, 227, 0.1) 100%);
  border-radius: 15px;
  border: 2px solid rgba(123, 43, 224, 0.2);
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .data-controls {
    flex-direction: column;
    gap: 1rem;
  }
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}
.control-group label {
  font-weight: 600;
  color: #7B2BE0;
  font-size: 0.9rem;
}
.control-group select {
  padding: 0.8rem 1rem;
  border: 2px solid rgba(123, 43, 224, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.control-group select:focus {
  outline: none;
  border-color: #7B2BE0;
  box-shadow: 0 0 0 3px rgba(123, 43, 224, 0.1);
}

.data-dashboard {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
@media (max-width: 1024px) {
  .data-dashboard {
    grid-template-columns: 1fr;
  }
}

.data-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(123, 43, 224, 0.2);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.data-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7B2BE0 0%, #E625C4 50%, #E3748D 100%);
}
.data-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(123, 43, 224, 0.2);
  border-color: rgba(123, 43, 224, 0.4);
}
.data-card h3 {
  color: #7B2BE0;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.data-card h4 {
  color: #E625C4;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.main-chart {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}

.chart-container {
  width: 100%;
  height: 400px;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 1rem;
}

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

.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(230, 37, 196, 0.05) 100%);
  border-radius: 15px;
  padding: 1.5rem;
  border: 2px solid rgba(230, 37, 196, 0.2);
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 37, 196, 0.15);
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(123, 43, 224, 0.1);
}
.stat-item:last-child {
  border-bottom: none;
}
.stat-item .rank {
  font-weight: 700;
  color: #7B2BE0;
  font-size: 1.1rem;
  min-width: 30px;
}
.stat-item .line-name {
  flex: 1;
  margin: 0 1rem;
  color: #2d1b69;
  font-size: 0.9rem;
}
.stat-item .value {
  font-weight: 600;
  color: #E625C4;
  font-size: 0.9rem;
}
.stat-item .label {
  color: #2d1b69;
  font-size: 0.9rem;
}
.stat-item .big-number {
  font-size: 2rem;
  font-weight: 700;
  color: #7B2BE0;
  text-align: center;
  margin-bottom: 0.5rem;
}
.stat-item .big-number.positive {
  color: #22c55e;
}
.stat-item .big-number.negative {
  color: #ef4444;
}
.stat-item .big-number.stable {
  color: #f59e0b;
}
.stat-item .label {
  text-align: center;
  color: #2d1b69;
  font-size: 0.9rem;
}

.evolution {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}
.evolution.positive {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}
.evolution.negative {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.evolution.stable {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .table-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

#search-lines {
  padding: 0.8rem 1rem;
  border: 2px solid rgba(123, 43, 224, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  flex: 1;
  max-width: 300px;
}
#search-lines:focus {
  outline: none;
  border-color: #7B2BE0;
  box-shadow: 0 0 0 3px rgba(123, 43, 224, 0.1);
}
#search-lines::placeholder {
  color: rgba(45, 27, 105, 0.5);
}

.export-btn {
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.export-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 37, 196, 0.3);
}

.table-container {
  overflow-x: auto;
  border-radius: 10px;
  border: 2px solid rgba(123, 43, 224, 0.2);
}

#data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
}
#data-table th {
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
}
#data-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(123, 43, 224, 0.1);
  font-size: 0.9rem;
}
#data-table tbody tr {
  transition: all 0.3s ease;
}
#data-table tbody tr:hover {
  background: rgba(123, 43, 224, 0.05);
}

.btn-small {
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-small:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 43, 224, 0.3);
}

.chart-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px;
  border-radius: 8px;
  pointer-events: none;
  z-index: 1000;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #ef4444;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 10px;
  border: 2px solid rgba(239, 68, 68, 0.3);
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(-30px, 30px) rotate(120deg);
  }
  66% {
    transform: translate(20px, -20px) rotate(240deg);
  }
}
@media (max-width: 768px) {
  .data-controls {
    padding: 1rem;
  }
  .data-card {
    padding: 1.5rem;
  }
  .chart-container {
    height: 300px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .table-container {
    font-size: 0.8rem;
  }
  #data-table th,
  #data-table td {
    padding: 0.8rem 0.5rem;
  }
}
body.theme-dark #data-explorer::before {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}
body.theme-dark .data-controls {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.8) 0%, rgba(123, 43, 224, 0.1) 100%);
  border-color: rgba(168, 85, 247, 0.3);
}
body.theme-dark .control-group select {
  background: rgba(26, 13, 46, 0.8);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}
body.theme-dark .control-group select:focus {
  border-color: #a855f7;
}
body.theme-dark .data-card {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.9) 0%, rgba(123, 43, 224, 0.05) 100%);
  border-color: rgba(168, 85, 247, 0.3);
}
body.theme-dark .data-card h3 {
  color: #a855f7;
}
body.theme-dark .data-card h4 {
  color: #f472b6;
}
body.theme-dark .stat-card {
  background: linear-gradient(135deg, rgba(26, 13, 46, 0.8) 0%, rgba(230, 37, 196, 0.05) 100%);
  border-color: rgba(230, 37, 196, 0.3);
}
body.theme-dark .stat-item .line-name, body.theme-dark .stat-item .label {
  color: #e2e8f0;
}
body.theme-dark .stat-item .big-number {
  color: #a855f7;
}
body.theme-dark .stat-item .big-number.positive {
  color: #22c55e;
}
body.theme-dark .stat-item .big-number.negative {
  color: #ef4444;
}
body.theme-dark .stat-item .big-number.stable {
  color: #f59e0b;
}
body.theme-dark #search-lines {
  background: rgba(26, 13, 46, 0.8);
  border-color: rgba(168, 85, 247, 0.3);
  color: #e2e8f0;
}
body.theme-dark #search-lines:focus {
  border-color: #a855f7;
}
body.theme-dark #search-lines::placeholder {
  color: rgba(226, 232, 240, 0.5);
}
body.theme-dark #data-table {
  background: rgba(26, 13, 46, 0.9);
}
body.theme-dark #data-table th {
  background: linear-gradient(135deg, #a855f7 0%, #f472b6 100%);
}
body.theme-dark #data-table td {
  color: #e2e8f0;
  border-bottom-color: rgba(168, 85, 247, 0.2);
}
body.theme-dark #data-table tbody tr:hover {
  background: rgba(168, 85, 247, 0.1);
}

#sources {
  padding: 2rem 0;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.05) 0%, rgba(132, 120, 227, 0.1) 100%);
}
#sources .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
#sources h1 {
  color: #7B2BE0;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #7B2BE0 0%, #E625C4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#sources .intro {
  text-align: center;
  color: #2d1b69;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#sources .sources-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#sources .source-category {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
}
#sources .source-category:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.2);
}
#sources .source-category h2 {
  color: #7B2BE0;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#sources .source-category .source-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
#sources .source-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
#sources .source-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7B2BE0 0%, #E625C4 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#sources .source-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.2);
}
#sources .source-card:hover::before {
  transform: scaleX(1);
}
#sources .source-card .source-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
#sources .source-card .source-header h3 {
  color: #7B2BE0;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}
#sources .source-card .source-header .source-type {
  background: linear-gradient(135deg, #E625C4 0%, #E3748D 100%);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(230, 37, 196, 0.3);
}
#sources .source-card p {
  color: #2d1b69;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-size: 0.95rem;
}
#sources .source-card .source-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #7B2BE0;
  font-weight: 500;
  padding: 0.8rem 1rem;
  background: rgba(123, 43, 224, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(123, 43, 224, 0.1);
  transition: all 0.3s ease;
}
#sources .source-card .source-link:hover {
  background: rgba(123, 43, 224, 0.1);
  border-color: rgba(123, 43, 224, 0.2);
  transform: translateX(2px);
}
#sources .source-card .source-link:hover .external-icon {
  transform: translateX(2px) translateY(-2px);
}
#sources .source-card .source-link span:first-child {
  flex: 1;
  font-size: 0.9rem;
}
#sources .source-card .source-link .external-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  margin-left: 0.5rem;
}
#sources .source-footer {
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.1) 0%, rgba(132, 120, 227, 0.05) 100%);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
  border: 2px solid rgba(123, 43, 224, 0.1);
  text-align: center;
}
#sources .source-footer h3 {
  color: #7B2BE0;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#sources .source-footer p {
  color: #2d1b69;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  #sources {
    padding: 1rem 0;
  }
  #sources h1 {
    font-size: 2rem;
  }
  #sources .intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  #sources .source-category {
    padding: 1.5rem;
  }
  #sources .source-category h2 {
    font-size: 1.3rem;
  }
  #sources .source-category .source-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #sources .source-card {
    padding: 1rem;
  }
  #sources .source-card .source-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sources .source-card .source-header .source-type {
    align-self: flex-start;
  }
}

body.theme-dark #sources {
  background: linear-gradient(135deg, rgba(15, 10, 26, 0.95) 0%, rgba(26, 13, 46, 0.9) 100%);
}
body.theme-dark #sources h1 {
  color: #CB74E5;
}
body.theme-dark #sources .intro {
  color: #a78bfa;
}
body.theme-dark #sources .source-category {
  background: rgba(20, 20, 20, 0.95);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
body.theme-dark #sources .source-category:hover {
  border-color: rgba(123, 43, 224, 0.4);
  box-shadow: 0 12px 40px rgba(123, 43, 224, 0.2);
}
body.theme-dark #sources .source-category h2 {
  color: #CB74E5;
  text-shadow: 0 2px 4px rgba(123, 43, 224, 0.3);
}
body.theme-dark #sources .source-card {
  background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(123, 43, 224, 0.08) 100%);
  border-color: rgba(123, 43, 224, 0.2);
}
body.theme-dark #sources .source-card:hover {
  border-color: rgba(123, 43, 224, 0.4);
  box-shadow: 0 10px 30px rgba(123, 43, 224, 0.2);
}
body.theme-dark #sources .source-card .source-header h3 {
  color: #CB74E5;
}
body.theme-dark #sources .source-card .source-header .source-type {
  background: linear-gradient(135deg, #E625C4 0%, #CB74E5 100%);
  box-shadow: 0 3px 10px rgba(230, 37, 196, 0.4);
}
body.theme-dark #sources .source-card p {
  color: #a78bfa;
}
body.theme-dark #sources .source-card .source-link {
  background: rgba(123, 43, 224, 0.15);
  border-color: rgba(123, 43, 224, 0.25);
  color: #CB74E5;
}
body.theme-dark #sources .source-card .source-link:hover {
  background: rgba(123, 43, 224, 0.25);
  border-color: rgba(123, 43, 224, 0.4);
  color: white;
  transform: translateX(3px);
}
body.theme-dark #sources .source-footer {
  background: linear-gradient(135deg, rgba(123, 43, 224, 0.2) 0%, rgba(132, 120, 227, 0.15) 100%);
  border-color: rgba(123, 43, 224, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
body.theme-dark #sources .source-footer h3 {
  color: #CB74E5;
}
body.theme-dark #sources .source-footer p {
  color: #a78bfa;
}

/*# sourceMappingURL=style.css.map */
