.dev-info
{
    position: absolute;
    top:10px;
    right: 10px;
    z-index: 1000000;
}
.dev-info button img {
    -webkit-user-drag: none;
}

/* Bouton */
.dev-info button {
  position: relative;
  background: linear-gradient(135deg, rgba(0,255,255,0.2), rgba(0,255,255,0.05));
  border: 1px solid rgba(0,255,255,0.5);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 28px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.3s;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0,255,255,0.4);
}

.dev-info button:hover {
  transform: scale(1.01);
  box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff inset;
}

.dev-info button::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -30%;
    width: 60%;
    height: 200%;
    font-size: 1.1em;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.7) 50%,
        transparent 100%
    );
    transform: rotate(25deg);
    animation: shine 6s infinite;
    pointer-events: none;
}

.dev-info button span {
    display: block;
    font-size: 0.9em;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.dev-info
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
}

/* Animation du reflet */
@keyframes shine {
    0%   { transform: translateX(-150%) rotate(25deg); opacity: 0; }
    10%  { opacity: 1; }
    20%  { transform: translateX(250%) rotate(25deg); opacity: 0; }
    100% { opacity: 0; }
    }

/* Overlay sombre */
.modal {
    display: none; /* caché par défaut */
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    z-index: 1002;
}

/* Contenu modale */
.modal-content {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px;
    max-width: 60vw;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,255,255,0.6);
    animation: popup 0.4s ease;
}

/* Animation */
@keyframes popup {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* Bouton fermer (croix) */
.close {
    position: absolute;
    top: 12px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 0;
    line-height: 1;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0,255,255,0.3);
    animation: closePulse 2.5s infinite;
    z-index: 10;
}
/* Effet hover */
.close:hover {
    background: rgba(0,255,255,0.15);
    border-color: rgba(0,255,255,0.5);
    color: #0ff;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 12px #00f0ff, 0 0 25px rgba(0,255,255,0.6);
}

.modal .close::before,
.modal .close::after {
    content: "";
    position: absolute;
    width: 56%;
    height: 5px;
    background: currentColor; /* ou #0ff */
    left: 50%;
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal .close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* Animation "pulse" légère pour attirer l'œil */
@keyframes closePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0,255,255,0.3); }
  50%      { box-shadow: 0 0 16px rgba(0,255,255,0.6); }
}

.modal-content p {
  margin-bottom: 1em;
  line-height: 1.5;
}

/* Titre de la modale */
.modal-content h2 {
  margin: 0 0 15px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0ff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 10px;

  /* Effet de lumière interne */
  text-shadow: 
    0 0 5px rgba(0,255,255,0.6),
    0 0 10px rgba(0,255,255,0.6),
    0 0 20px rgba(0,255,255,0.4);
}

/* Ligne décorative en dessous du titre */
.modal-content h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0ff, transparent);
  box-shadow: 0 0 8px #0ff;
}

/* Animation légère de "scintillement" */
@keyframes glowTitle {
  0%, 100% { text-shadow: 0 0 5px rgba(0,255,255,0.5), 0 0 15px rgba(0,255,255,0.6); }
  50%      { text-shadow: 0 0 10px rgba(0,255,255,0.9), 0 0 25px rgba(0,255,255,0.8); }
}

.modal-content h2 {
  animation: glowTitle 3s infinite;
}
/* Encart soutien */
.support-box {
    margin-top: 20px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    text-align: center;
}

.support-box h3 {
  margin: 10px 0;
  color: #0ff;
  font-size: 1.7em;
}

.support-box button {
  background: rgba(0,255,255,0.15);
  border: 1px solid rgba(0,255,255,0.4);
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 16px;
  color: #fff;
  cursor: not-allowed; /* désactivé pour l’instant */
  transition: all 0.3s;
}

.support-box button:hover {
  box-shadow: 0 0 10px #00f0ff;
}

.modal a
{
    color:white;
}

.coffee-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #8b4513, #d2691e);
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(210,105,30,0.6);
  transition: transform 0.2s, box-shadow 0.3s;
    -webkit-user-drag: none;
}

.coffee-button:hover {
  transform: scale(1.07);
  box-shadow: 0 0 18px #ffb347, 0 0 36px #d2691e;
}

/* Tasse de café animée */
.coffee-cup {
  position: relative;
  font-size: 24px;
  display: inline-block;
}
/* Vapeur */
.steam {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 6px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 70%);
  opacity: 0;
  animation: rise 3s infinite;
}

/* Décaler les fumées */
.steam:nth-child(2) { 
  animation-delay: 1s; 
  left: 40%; 
}
.steam:nth-child(3) { 
  animation-delay: 2s; 
  left: 60%; 
}

/* Animation vapeur */
@keyframes rise {
  0%   { transform: translateY(0) scaleX(0.5); opacity: 0; }
  20%  { opacity: 0.6; }
  50%  { transform: translateY(-15px) scaleX(1); opacity: 0.4; }
  100% { transform: translateY(-30px) scaleX(0.8); opacity: 0; }
}