/* ═══════════════════════════════════════════════════════════════
   EMIX — Reservation.css
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg-gradient:         linear-gradient(135deg, #000000 0%, #DA3662 55%, #ffffff 100%);
  --crimson:             #7b1e3a;
  --neon-pink:           #ff2d78;
  --neon-pink-soft:      #ff6fa0;
  --neon-glow:           rgba(255, 45, 120, 0.35);
  --neon-glow-sm:        rgba(255, 45, 120, 0.15);
  --text-primary:        #ffffff;
  --text-secondary:      #e8b4c8;
  --text-muted:          #b07090;
  --glass-bg:            rgba(8, 2, 5, 0.75);
  --glass-border:        rgba(255, 45, 120, 0.18);
  --glass-border-strong: rgba(255, 45, 120, 0.38);
  --shadow-card:         0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(255,45,120,0.1);
  --shadow-hover:        0 16px 48px rgba(0,0,0,0.75), 0 4px 16px rgba(255,45,120,0.22);
  --sidebar-w:           252px;
  --topbar-h:            72px;
  --radius-card:         18px;
  --font-display:        'Montserrat', sans-serif;
  --font-body:           'Poppins', sans-serif;
  --transition:          0.26s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  /* KEY FIX: allow body to scroll so footer is reachable */
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}

body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: 0.35;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 4px; }

/* ════════════════════════════════════════════════════════════════
   LAYOUT — signed-in sidebar view
   KEY FIX: No overflow:hidden trapping. Let everything flow
   naturally so the footer renders below the page content.
════════════════════════════════════════════════════════════════ */
.main-content {
  margin-left: var(--sidebar-w);
  padding-top: var(--topbar-h);
  min-height: calc(100vh - var(--topbar-h));
  position: relative;
  z-index: 1;
  /* No overflow:hidden — let content grow and footer follow */
}

.layout-wrapper {
  display: flex;
  min-height: 100%;
}

.center-feed {
  flex: 1;
  overflow-y: visible;
  padding: 28px 40px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
}

/* ════════════════════════════════════════════════════════════════
   RESERVATION CARD — two-column grid
════════════════════════════════════════════════════════════════ */
.res-card {
  width: 100%;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items: start;
}

/* ── Left column ── */
.res-left-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* LEFT TOP: title + CTA */
.res-left {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,45,120,0.14), transparent 46%),
    linear-gradient(145deg, #18050d 0%, #2a0816 52%, #12040b 100%);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 34px 28px;
  display: flex; flex-direction: column; gap: 18px;
}

.res-title {
  font-family: var(--font-display);
  font-size: 34px; font-weight: 900; color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  line-height: 1.1;
}

.res-desc {
  font-size: 14px; color: #e9b7cb;
  line-height: 1.7;
}

.reserve-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, #c4104e 0%, #ff2d78 50%, #ff6fa3 100%);
  background-size: 200% 100%; background-position: 100% 0;
  border-radius: 50px;
  padding: 14px 30px;
  width: 100%;
  color: #fff; font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em;
  transition: background-position 0.4s ease, transform 0.18s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 22px rgba(255,45,120,0.42);
  align-self: stretch;
}

.reserve-btn:hover {
  background-position: 0 0;
  box-shadow: 0 8px 26px rgba(255,45,120,0.52);
  transform: translateY(-2px);
}

/* LEFT BOTTOM: side extras */
.res-side-extras {
  display: flex; flex-direction: column; gap: 14px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,45,120,0.12), transparent 40%),
    linear-gradient(155deg, #14040b 0%, #200712 100%);
  border: 1px solid rgba(255,45,120,0.24);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
}

.right-info-box {
  background: linear-gradient(180deg, rgba(255,45,120,0.16) 0%, rgba(0,0,0,0.36) 100%);
  border: 1px solid rgba(255,45,120,0.26);
  border-radius: 12px;
  padding: 14px 16px;
}

.info-icon {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--neon-pink-soft);
  background: rgba(255,45,120,0.22);
  margin-bottom: 12px;
  box-shadow: 0 0 18px rgba(255,45,120,0.28);
}

.info-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 7px; }
.info-desc  { font-size: 13px; color: #dca0b8; line-height: 1.65; }

.perks-list { display: flex; flex-direction: column; gap: 7px; }

.perk-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; font-weight: 600; color: #f1c4d7;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 12px 15px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.perk-item:hover {
  transform: translateX(3px);
  border-color: rgba(255,45,120,0.3);
  background: rgba(255,45,120,0.1);
}
.perk-item i { font-size: 16px; color: #7ef0b8; flex-shrink: 0; }

.need-help { font-size: 12px; color: var(--text-muted); }
.res-side-extras .need-help {
  border-top: 1px dashed rgba(255,255,255,0.14);
  padding-top: 10px;
}
.need-help a {
  margin-top: 5px;
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--neon-pink-soft); font-weight: 700; font-size: 12.5px;
  transition: color var(--transition);
}
.need-help a:hover { color: var(--neon-pink); }

/* ════════════════════════════════════════════════════════════════
   RIGHT PANEL — AVAILABILITY CALENDAR
════════════════════════════════════════════════════════════════ */
.res-right {
  background:
    radial-gradient(circle at 86% 8%, rgba(255,45,120,0.16), transparent 36%),
    linear-gradient(145deg, #1b0610 0%, #2f0b1b 55%, #16050d 100%);
  border: 1px solid var(--glass-border-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 26px 24px;
  display: flex; flex-direction: column; gap: 16px;
  width: 100%;
}

.calendar-wrap { display: flex; flex-direction: column; gap: 14px; }

/* Calendar header */
.cal-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2px;
}
.cal-title { font-size: 13.5px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }
.cal-header-right { display: flex; align-items: center; gap: 10px; }
.cal-month-label {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 900; color: #fff; letter-spacing: -0.02em;
}

.cal-icon-btn {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,45,120,0.12);
  border: 1px solid rgba(255,45,120,0.25);
  color: var(--neon-pink-soft); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cal-icon-btn:hover { background: rgba(255,45,120,0.25); color: #fff; box-shadow: 0 0 10px var(--neon-glow-sm); }

/* Year / Month picker */
.year-picker {
  background: rgba(15,4,10,0.97);
  border: 1px solid var(--glass-border-strong);
  border-radius: 14px; padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
  animation: fadeDown 0.15s ease;
}
@keyframes fadeDown {
  from { opacity:0; transform:translateY(-6px); }
  to   { opacity:1; transform:translateY(0); }
}
.year-picker-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.year-picker-label { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: #fff; }

.year-dec, .year-inc {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.year-dec:hover, .year-inc:hover { background: rgba(255,45,120,0.15); color: var(--neon-pink-soft); }

.year-month-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }

.yp-month-btn {
  padding: 8px 4px; border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text-secondary); font-size: 12px; font-weight: 600;
  text-align: center; transition: all var(--transition);
}
.yp-month-btn:hover { background: rgba(255,45,120,0.15); color: #fff; border-color: rgba(255,45,120,0.3); }
.yp-month-btn.yp-active { background: var(--neon-pink); color: #fff; border-color: var(--neon-pink); box-shadow: 0 0 10px var(--neon-glow-sm); }

/* ── Calendar Grid ── */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day-label {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 800; color: var(--text-muted);
  text-align: center; padding: 8px 0 10px;
  letter-spacing: 0.07em; text-transform: uppercase;
}

.cal-cell {
  height: 68px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 16px; font-weight: 600;
  transition: all var(--transition);
  cursor: default;
}

.cal-blank  { background: transparent; }

.cal-avail {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #dcdcdc;
  cursor: pointer;
}
.cal-avail:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,255,255,0.16);
}

.cal-past {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.18);
  cursor: not-allowed;
}

.cal-unavail {
  background: rgba(212,20,46,0.25);
  border: 1px solid rgba(212,20,46,0.4);
  color: #ff6b7a; cursor: not-allowed; font-weight: 700;
}

.cal-today-outline {
  border: 2px solid #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3);
}

/* Calendar footer: legend + nav */
.cal-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cal-legend { display: flex; gap: 18px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-secondary); font-weight: 700; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-unavail { background: #d4142e; box-shadow: 0 0 6px rgba(212,20,46,0.6); }
.dot-avail   { background: rgba(255,255,255,0.3); }
.dot-today {
  background: transparent;
  border: 2px solid #ffffff;
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.cal-nav-btns { display: flex; align-items: center; gap: 10px; }
.cal-nav-label { font-size: 14px; font-weight: 700; color: var(--text-secondary); min-width: 120px; text-align: center; }

.cal-nav-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.cal-nav-btn:hover { background: rgba(255,45,120,0.15); color: var(--neon-pink-soft); border-color: rgba(255,45,120,0.3); }

/* ════════════════════════════════════════════════════════════════
   MODAL OVERLAY
════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}

.modal-box {
  background: #1a0810;
  border: 1px solid rgba(255,45,120,0.25);
  border-radius: 18px; padding: 32px 36px;
  width: 100%; max-width: 580px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,45,120,0.12);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(16px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

.modal-box.modal-confirm { max-width: 400px; padding: 44px 36px; text-align: center; }
.modal-box.modal-payment { max-width: 640px; }

.modal-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; color: #fff;
  margin-bottom: 22px; line-height: 1.3;
}
.modal-title span { color: var(--neon-pink-soft); font-weight: 600; }

.prefill-hint {
  margin: -8px 0 14px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  border: 1px solid rgba(255,45,120,0.24);
  background: rgba(255,45,120,0.1);
  color: #ffd3e4;
}

.prefill-hint.success {
  border-color: rgba(57, 214, 139, 0.35);
  background: rgba(57, 214, 139, 0.14);
  color: #cbffe2;
}

/* Form grid */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group.full { grid-column: 1 / -1; }
.form-group.half { grid-column: span 1; }

.form-group label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px; letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 11px 14px;
  color: #fff; font-size: 13.5px;
  outline: none; resize: vertical;
  transition: all var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(255,45,120,0.45);
  background: rgba(255,45,120,0.06);
  box-shadow: 0 0 0 3px rgba(255,45,120,0.1);
}

fieldset { border: 0; }

.time-range { display: flex; align-items: center; gap: 8px; }
.time-range input { flex: 1; }
.time-range span  { font-size: 13px; color: var(--text-muted); flex-shrink: 0; }

/* Modal footer */
.modal-footer { display: flex; justify-content: flex-end; margin-top: 24px; }
.step2-footer  { justify-content: space-between; align-items: center; }

.btn-next, .btn-submit {
  background: var(--neon-pink); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 12px 32px; border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255,45,120,0.4);
}
.btn-next:hover, .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,45,120,0.6); }

.btn-back {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-secondary); font-size: 13.5px; font-weight: 600;
  padding: 11px 22px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-back:hover { background: rgba(255,45,120,0.1); color: var(--neon-pink-soft); }

/* Step 3: Confirm */
.confirm-step { text-align: center; }
.confirm-text { font-family: var(--font-display); font-size: 21px; font-weight: 800; color: #fff; margin-bottom: 28px; }
.confirm-btns { display: flex; justify-content: center; gap: 16px; }

.btn-yes {
  background: var(--neon-pink); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 12px 38px; border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255,45,120,0.4);
}
.btn-yes:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,45,120,0.6); }

.btn-no {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 38px; border-radius: 50px;
  transition: all var(--transition);
}
.btn-no:hover { background: rgba(255,255,255,0.12); }

/* Step 4: Payment */
.payment-title { text-align: center; font-size: 20px; margin-bottom: 14px; }
.payment-intro { font-size: 13.5px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 20px; }
.payment-intro strong { color: #fff; }

.payment-body { display: grid; grid-template-columns: 180px 1fr; gap: 20px; margin-bottom: 18px; align-items: start; }
.qr-box {
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-size: 11.5px; font-weight: 600;
  color: var(--text-muted); line-height: 1.5; padding: 14px;
}
.payment-steps { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.payment-steps li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.payment-steps li::before { content: '●'; color: var(--neon-pink); flex-shrink: 0; font-size: 10px; margin-top: 4px; }
.payment-balance { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.payment-balance strong { color: #fff; }
.payment-contact {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 14px 18px;
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px;
}
.payment-contact p { font-size: 13px; color: var(--text-secondary); }
.payment-contact strong { color: #fff; }
.payment-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 12px 16px;
  font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 22px;
}
.btn-submit-final {
  display: block; width: 100%;
  background: var(--neon-pink); color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 14px; border-radius: 50px;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(255,45,120,0.4); text-align: center;
}
.btn-submit-final:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,45,120,0.6); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — SIGNED-IN SIDEBAR LAYOUT
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .res-card { grid-template-columns: 300px 1fr; }
  .cal-cell { height: 58px; font-size: 15px; }
}
@media (max-width: 1024px) {
  :root { --sidebar-w: 68px; }
}
@media (max-width: 860px) {
  .res-card { grid-template-columns: 1fr; }
  .res-title { font-size: 24px; }
}
@media (max-width: 768px) {
  :root { --sidebar-w: 65px; --topbar-h: 60px; }
  .center-feed { padding: 16px 14px 28px; align-items: stretch; }
  .modal-box { padding: 24px 20px; }
  .payment-body { grid-template-columns: 1fr; }
  .qr-box { aspect-ratio: auto; height: 120px; }
  .cal-cell { height: 48px; font-size: 14px; }
}
@media (max-width: 520px) {
  :root { --sidebar-w: 65px; --topbar-h: 56px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.half { grid-column: 1 / -1; }
  .modal-box { padding: 20px 16px; }
  .confirm-btns { flex-direction: column; align-items: center; }
  .btn-yes, .btn-no { width: 100%; text-align: center; }
  .cal-cell { height: 42px; font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════
   GUEST NAV OVERRIDES
════════════════════════════════════════════════════════════════ */
body.guest-nav-active {
  overflow-y: auto; overflow-x: hidden;
}
body.guest-nav-active .main-content {
  margin-left: 0;
  margin-top: 0;
  padding-top: var(--guest-nav-h, 88px);
  min-height: calc(100vh - var(--guest-nav-h, 88px));
}
body.guest-nav-active .layout-wrapper {
  display: flex; min-height: 100%;
}
body.guest-nav-active .center-feed {
  margin-right: 0;
  padding: 32px 40px 60px;
  overflow-y: visible;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
body.guest-nav-active .res-card { width: 100%; grid-template-columns: 340px 1fr; }

@media (max-width: 1024px) {
  body.guest-nav-active .res-card { grid-template-columns: 300px 1fr; }
  body.guest-nav-active .center-feed { padding: 28px 28px 48px; }
}
@media (max-width: 820px) {
  body.guest-nav-active .res-card { grid-template-columns: 1fr; }
  body.guest-nav-active .center-feed { padding: 20px 18px 40px; align-items: stretch; }
}
@media (max-width: 480px) {
  body.guest-nav-active .center-feed { padding: 14px 12px 32px; }
}

/* ════════════════════════════════════════════════════════════════
   INQUIRY-FIRST NOTICE MODAL
════════════════════════════════════════════════════════════════ */
.inquiry-notice-box {
  max-width: 520px;
  text-align: center;
}

.notice-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,45,120,0.12);
  border: 2px solid rgba(255,45,120,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.notice-icon i {
  font-size: 30px;
  color: #ff6fa0;
}

.notice-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.notice-body {
  font-size: 14px;
  line-height: 1.7;
  color: #e8b4c8;
  margin-bottom: 22px;
}

.notice-body strong { color: #fff; }

.notice-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 20px;
}

.notice-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: #e8b4c8;
  line-height: 1.55;
}

.notice-step strong { color: #fff; }

.notice-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4104e, #ff2d78);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(255,45,120,0.4);
}

.notice-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.notice-go-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.notice-close-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #b07090;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.notice-close-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

@media (max-width: 480px) {
  .notice-actions { flex-direction: column; }
  .notice-go-btn, .notice-close-btn { width: 100%; }
}