/* Secret Store Modal Styles - Gold & Black Theme with Josefin Fonts */
.secret-modal-overlay {
  font-family: 'Josefin_Medium', 'Josefin Sans', Arial, sans-serif;
}

#secret-modal input:focus {
  outline: none;
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

/* Remove any blue focus states */
#secret-modal input:active,
#secret-modal input:focus-visible {
  outline: none !important;
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}

/* Remove blue from autofill */
#secret-modal input:-webkit-autofill,
#secret-modal input:-webkit-autofill:hover,
#secret-modal input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #d4af37 !important;
}

#secret-submit:hover {
  background: linear-gradient(135deg, #ffd700 0%, #d4af37 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

#secret-submit:active {
  transform: translateY(0) !important;
}

/* Enhanced Gold & Black Theme */
#secret-modal {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  color: #ffffff !important;
  border: 2px solid #d4af37 !important;
  font-family: 'Josefin_Medium', 'Josefin Sans', Arial, sans-serif !important;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

/* Typography hierarchy using Josefin fonts */
#secret-modal h2 {
  font-family: 'Josefin_Bold', 'Josefin Sans', Arial, sans-serif !important;
}

#secret-modal p {
  font-family: 'Josefin_Light', 'Josefin Sans', Arial, sans-serif !important;
}

#secret-input {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border: 2px solid #444444 !important;
  font-family: 'Josefin_Medium', 'Josefin Sans', Arial, sans-serif !important;
  backdrop-filter: blur(10px);
}

#secret-input::placeholder {
  color: #888888;
  font-family: 'Josefin_Light', 'Josefin Sans', Arial, sans-serif !important;
}

#secret-submit {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%) !important;
  color: #1a1a1a !important;
  font-family: 'Josefin_Bold', 'Josefin Sans', Arial, sans-serif !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  outline: none !important;
  box-shadow: 
    0 4px 15px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Remove any blue from button focus/active states */
#secret-submit:focus,
#secret-submit:active,
#secret-submit:focus-visible {
  outline: none !important;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%) !important;
  color: #1a1a1a !important;
  box-shadow: 
    0 4px 15px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Animation classes */
@keyframes shake {
  0%, 100% { transform: translateX(0) scale(1); }
  25% { transform: translateX(-8px) scale(1.02); }
  50% { transform: translateX(8px) scale(1.02); }
  75% { transform: translateX(-4px) scale(1.01); }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

/* Gold gradient text */
.gold-text {
  background: linear-gradient(45deg, #d4af37, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  #secret-modal {
    padding: 36px 24px !important;
    margin: 20px !important;
    border-radius: 16px !important;
  }
  
  #secret-modal h2 {
    font-size: 1.6rem !important;
  }
  
  #secret-input {
    padding: 16px 20px !important;
    font-size: 16px !important;
  }
  
  #secret-submit {
    padding: 16px 28px !important;
    font-size: 15px !important;
  }
}

/* Enhanced overlay */
#secret-modal-overlay {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(8px) !important;
}