/* --- MENU STICKY --- */
html, body {
    overflow-x: hidden;
}
.nav-sticky {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 9999;
}

.nav-sticky .menu-toggle {
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: 2px solid #e91e63;
    border-radius: 8px;
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: 0.2s;
}

.nav-sticky .menu-toggle:hover {
    background: rgba(233,30,99,0.85);
}

/* --- Panneau du menu --- */
.nav-sticky .menu-panel {
    list-style: none;
    margin: 0;
    padding: 1rem 1.5rem;
    position: absolute;
    top: 55px;
    right: 0;
    background: rgba(0,0,0,0.85);
    border: 2px solid #e91e63;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    width: 240px;
    display: none;
    flex-direction: column;
    gap: .4rem;
}

.nav-sticky .menu-panel.show {
    display: flex;
}

.nav-sticky .menu-panel a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}

.nav-sticky .menu-panel a:hover {
    color: #e91e63;
    text-decoration: underline;
}

.testbutton {
	background-color: #e91e63 !important;
    color: white !important;
    transition: background-color 0.3s 
ease, color 0.3s 
ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    margin: 0 0.5rem;
    width: 150px;
    text-align: center;
    margin-top: 10px;
}

.testbutton2 {
	background-color: #333333 !important;
    color: white !important;
    transition: background-color 0.3s 
ease, color 0.3s 
ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    margin: 0 0.5rem;
    width: 150px;
    text-align: center;
    margin-top: 10px;
}

.nav-premium {
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

/* soulignement léger rose premium */
.nav-premium::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #ff66a6;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(3px);
    transition: 0.25s ease;
}

/* effet hover premium */
.nav-premium:hover {
    color: #ff66a6 !important;
    text-shadow: 0 0 6px rgba(255,102,166,0.6);
}

.nav-premium:hover::after {
    opacity: 1;
    transform: translateY(0);
}




























/* ================================
   SECTION TESTS DE COUPLE – PRO
================================ */

/* GRID */
.dj-tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* CARD */
.dj-test-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(233,30,99,0.45);
  box-shadow: 0 0 12px rgba(233,30,99,0.2);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover synchronisé */
.dj-test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(233,30,99,0.35);
}

/* Header */
.dj-test-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}

/* Icône test */
.dj-test-icon {
  font-size: 1.25rem;
  opacity: .85;
}

/* Badge animé (7 jours) */
.dj-badge-new {
  background: linear-gradient(90deg, #ff2d7a, #ff7ab6);
  color: #fff;
  font-size: .75rem;
  padding: .3rem .55rem;
  border-radius: 6px;
  animation: pulseBadge 1.6s infinite;
}

@keyframes pulseBadge {
  0%   { box-shadow: 0 0 0 0 rgba(255,102,166,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,102,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,102,166,0); }
}

/* Titre */
.dj-test-card h2 {
  font-size: 1.45rem;
  color: #fff;
  min-height: 3.2rem; /* égalisation titres */
}

/* Description */
.dj-test-desc {
  color: #ddd;
  font-size: 1rem;
