/**
 * VIP 기능 안내 리본
 */

.vip-notice-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vip-notice-overlay.active {
  display: flex;
}

.vip-notice {
  background: white;
  border-radius: 16px;
  padding: 24px;
  max-width: 340px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: vipNoticeSlideIn 0.3s ease-out;
}

@keyframes vipNoticeSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vip-notice-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 12px;
}

.vip-notice-message {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}

.vip-notice-button {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.vip-notice-button:active {
  background: var(--primary-dark);
  transform: scale(0.98);
}

/* 고해상도 모드 */
body.compact-mode .vip-notice {
  padding: 20px;
  max-width: 300px;
}

body.compact-mode .vip-notice-title {
  font-size: 16px;
  margin-bottom: 10px;
}

body.compact-mode .vip-notice-message {
  font-size: 13px;
  margin-bottom: 16px;
}

body.compact-mode .vip-notice-button {
  padding: 12px;
  font-size: 15px;
}
