.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .container-main {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  padding: 0.5rem 1rem;
}

@media (min-width: 640px) {
  .site-header .container-main {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header .container-main {
    padding: 0 2rem;
  }
}

.site-header-row {
  display: flex;
  height: 3.5rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .site-header-row {
    height: 5rem;
  }
}

.site-header-logo img {
  height: 2rem;
  width: auto;
}

@media (min-width: 640px) {
  .site-header-logo img {
    height: 2.5rem;
  }
}

.site-header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-header-nav {
    display: flex;
  }
}

.site-header-nav > .nav-item {
  position: relative;
}

.site-header-nav > .nav-item > a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.site-header-nav > .nav-item > a:hover {
  color: #f0c040;
}

.site-header-dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 50;
  margin-top: 0.75rem;
  width: min(22rem, calc(100vw - 2rem));
  max-width: 22rem;
  transform: translateX(-50%);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 34, 61, 0.95);
  padding: 0.625rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: opacity 0.15s, visibility 0.15s;
}

.site-header-nav > .nav-item:hover .site-header-dropdown {
  visibility: visible;
  opacity: 1;
}

.site-header-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header-dropdown li + li {
  margin-top: 0.125rem;
}

.site-header-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  border-radius: 0.5rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.site-header-dropdown a:hover {
  background: rgba(240, 192, 64, 0.1);
  color: #f0c040;
}

.site-header-dropdown a span:first-child {
  margin-top: 0.35em;
  flex-shrink: 0;
  color: rgba(240, 192, 64, 0.9);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .site-header-actions {
    gap: 0.75rem;
  }
}

.site-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #00c8ff;
  background: #00c8ff;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a1628;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

@media (min-width: 640px) {
  .site-btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

.site-btn-primary:hover {
  transform: translateY(-2px);
  background: #53dcff;
}

.site-menu-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(240, 192, 64, 0.5);
  background: rgba(240, 192, 64, 0.1);
  color: #f0c040;
  cursor: pointer;
}

@media (min-width: 768px) {
  .site-menu-btn {
    display: none;
  }
}

.site-mobile-nav {
  display: none;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
}

.site-mobile-nav.is-open {
  display: grid;
}

.site-mobile-nav > .nav-block > a {
  display: block;
  border-radius: 0.75rem;
  border: 1px solid rgba(240, 192, 64, 0.3);
  background: rgba(240, 192, 64, 0.1);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.site-mobile-nav ul {
  list-style: none;
  margin: 0.375rem 0 0;
  padding: 0 0 0 0.75rem;
  border-left: 2px solid rgba(240, 192, 64, 0.35);
}

.site-mobile-nav ul li + li {
  margin-top: 0.25rem;
}

.site-mobile-nav ul a {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(16, 31, 56, 0.9);
  padding: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-mobile-nav ul a span:first-child {
  margin-top: 0.3em;
  flex-shrink: 0;
  color: #f0c040;
}

.site-header-spacer {
  height: 3.5rem;
}

@media (min-width: 640px) {
  .site-header-spacer {
    height: 5rem;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a1628;
  padding: 1.5rem 0;
}

.site-footer .container-main {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
  .site-footer .container-main {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .site-footer .container-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 2rem;
  }
}

.site-footer-copy {
  white-space: nowrap;
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .site-footer-copy {
    text-align: left;
  }
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 1.5rem;
}

@media (min-width: 768px) {
  .site-footer-links {
    flex: 1;
    justify-content: center;
  }
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer-links a:hover {
  color: #f0c040;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer-social a {
  display: inline-flex;
  height: 4.5rem;
  width: 4.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}

.site-footer-social a:hover {
  opacity: 0.8;
}

.site-footer-social img {
  height: 4.5rem;
  width: 4.5rem;
  object-fit: contain;
  object-position: center;
}

#tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert {
  display: block !important;
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0.75rem 1rem 0.5rem;
  box-sizing: border-box;
  white-space: normal !important;
  overflow: visible !important;
  max-height: none !important;
  text-align: center;
  line-height: 1.5;
}

#tarteaucitronRoot #tarteaucitronAlertBig a {
  color: #0a1628 !important;
  text-decoration: underline !important;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
