.notice-layer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.notice-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  padding: 12px;
}

.notice-img-wrap {
  position: relative;
}

.notice-img-wrap img {
  display: block;
  max-width: 420px;
  width: 100%;
  border-radius: 6px;
}

/* 버튼 영역 */
.notice-actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 6px;
}

.notice-actions button {
  border: none;
  border-radius: 14px;
  padding: 6px 10px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

/* 7일 스킵 */
.btn-skip {
  background: rgba(0,0,0,.65);
  color: #fff;
}

/* 닫기 */
.btn-close {
  background: rgba(255,255,255,.9);
  color: #333;
}

.btn-skip:hover {
  background: rgba(0,0,0,.8);
}

.btn-close:hover {
  background: #fff;
}
