.tarot-popup-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.tarot-popup-box {
  background: #1a1a2e;
  color: #f0e6d2;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  border: 1px solid #c9a96e;
}

.tarot-popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: #f0e6d2;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}

.tarot-popup-message {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.tarot-popup-card {
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  color: #c9a96e;
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.tarot-popup-card:hover {
  background: rgba(201, 169, 110, 0.15);
}

.tarot-popup-img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .tarot-popup-box {
    max-width: 220px;
    padding: 16px;
  }

  .tarot-popup-message {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }

  .tarot-popup-close {
    font-size: 22px;
    top: 4px;
    right: 8px;
  }
}