/* ==================== SPOTLIGHT POPUP STYLES ==================== */

/* Popup Modal Container */
.spotlight-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.spotlight-modal.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Content */
.spotlight-modal-content {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  padding: 40px;
  animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

@keyframes popupSlideIn {
  from {
    transform: translateY(40px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: url('../assets/cursor1.svg') 2 2, auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  padding: 0;
}

.close-btn:hover {
  background: #f0f0f0;
  color: #F26A8D;
  transform: rotate(90deg);
}

.close-btn:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Spotlight Header */
.spotlight-header {
  text-align: center;
  margin-bottom: 28px;
}

.spotlight-title {
  font-size: 26px;
  font-weight: 700;
  color: #F26A8D;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.spotlight-subtitle {
  font-size: 12px;
  color: #999;
  margin: 0;
  font-style: italic;
  text-align: justify;
}

/* Spotlight List */
.spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotlight-item {
  background: #f9f9f9; /* light background to group items */
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: background 0.2s ease, transform 0.2s ease;
  user-select: none;
  text-align: center;
}

.spotlight-item:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* Spotlight Footer */
.spotlight-footer {
  text-align: center;
}

.spotlight-message {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
  font-style: italic;
}

/* Dismiss Button */
.dismiss-btn {
  width: 100%;
  background: linear-gradient(135deg, #f6c9d2 0%, #F26A8D 100%);
  color: white;
  border: none;
  padding: 12px 36px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: url('../assets/cursor1.svg') 2 2, auto;
  transition: all 0.2s ease;
}

.dismiss-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(234, 102, 192, 0.3);
}

.dismiss-btn:active {
  transform: translateY(0);
}

.dismiss-btn:focus {
  outline: 2px solid #764ba2;
  outline-offset: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .spotlight-modal-content {
    padding: 28px;
    width: 95%;
  }

  .spotlight-title {
    font-size: 22px;
  }

  .spotlight-item {
    font-size: 14px;
    padding: 12px 16px;
  }

  .dismiss-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}
