/* ===============================
   POPUP INTERDICTION PÊCHE - SÉCHERESSE
============================== */
.secheresse-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(4, 10, 18, 0.6);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.secheresse-modal {
  background: linear-gradient(180deg, #0c1f33, #081524);
  border: 1px solid rgba(0, 234, 255, 0.25);
  border-radius: 22px;
  max-width: 480px;
  width: 100%;
  padding: 28px 26px 24px;
  color: #eaf6fb;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 40px rgba(0,188,212,0.12);
  text-align: center;
  animation: secheresse-pop .35s ease;
}

@keyframes secheresse-pop {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.secheresse-badge {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0c1f33, #081524);
  border: 3px solid #00eaff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0,234,255,.45);
  padding: 10px;
}

.secheresse-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.secheresse-badge .badge-ban {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #e63946;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 3px solid #081524;
}

.secheresse-modal h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: #fff;
}

.secheresse-subtitle {
  margin: 0 0 16px;
  font-size: .82rem;
  color: #7fd8ea;
  font-weight: 600;
}

.secheresse-scroll {
  max-height: 240px;
  overflow-y: auto;
  text-align: left;
  padding-right: 10px;
  margin-bottom: 10px;
  font-size: .92rem;
  line-height: 1.5;
  color: #d5e9f2;
}

.secheresse-scroll p { margin: 0 0 12px; }

.secheresse-scroll .secheresse-source {
  font-size: .78rem;
  color: #8fb4c4;
}

.secheresse-scroll .secheresse-source a {
  color: #00eaff;
}

.secheresse-scroll::-webkit-scrollbar { width: 6px; }
.secheresse-scroll::-webkit-scrollbar-thumb {
  background: rgba(0,234,255,.35);
  border-radius: 10px;
}

.secheresse-scroll-hint {
  font-size: .78rem;
  color: #ffb020;
  margin: 0 0 12px;
  animation: secheresse-bounce 1.4s infinite;
}

.secheresse-scroll-hint.hidden { display: none; }

@keyframes secheresse-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.secheresse-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  font-size: .85rem;
  color: #cfe7f0;
  margin-bottom: 16px;
  cursor: pointer;
}

.secheresse-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #00bcd4;
  cursor: pointer;
  flex-shrink: 0;
}

.secheresse-check input:disabled { cursor: not-allowed; opacity: .5; }

.secheresse-btn {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #00eaff, #00bcd4);
  color: #003344;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: .25s;
}

.secheresse-btn:disabled {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
  cursor: not-allowed;
}

.secheresse-btn:not(:disabled):hover {
  box-shadow: 0 0 18px rgba(0,234,255,.6);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .secheresse-modal { padding: 22px 18px 20px; }
  .secheresse-scroll { max-height: 45vh; }
}
