/* ===================== assets/landing-notice.css =====================
   Shared "Landing Notice" modal shell — used identically by:
     1) the public homepage (index.html)
     2) the admin "Preview Notice" button (admin/content/index.html)
   Visual language matches Geppetto's existing overlay pattern
   (see .tmsDWWarnOverlay / .tmsDWWarnCard in assets/style.css):
   dark navy translucent card, Columbia-blue accents, rounded corners.
   ======================================================================= */

.tms-ln-backdrop{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 10, 20, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.tms-ln-lock{ overflow: hidden; }

.tms-ln-modal{
  position: relative;
  width: min(92vw, 620px);
  max-width: 640px;
  min-width: 0;
  max-height: 85vh;
  overflow: auto;
  box-sizing: border-box;
  border-radius: 18px;
  padding: 26px 24px 22px;
  background: linear-gradient(180deg, rgba(0,35,70,0.96), rgba(0,20,40,0.96));
  border: 2px solid rgba(196,216,245,0.55);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  color: #fff;
  outline: none;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}

.tms-ln-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.tms-ln-close:hover{ background: rgba(255,255,255,.16); }
.tms-ln-close:focus-visible{ outline: 3px solid rgba(196,216,245,0.85); outline-offset: 2px; }

.tms-ln-title{
  margin: 0 34px 10px 0;
  font-size: 22px;
  font-weight: 1000;
  color: rgba(196,216,245,0.98);
  word-break: break-word;
}

.tms-ln-message{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  white-space: pre-wrap;
  word-break: break-word;
}

.tms-ln-confirm-area{ margin-top: 2px; }
.tms-ln-confirm-text{
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin: 0;
  line-height: 1.5;
}

.tms-ln-phrase-area{ margin-top: 18px; display: grid; gap: 8px; }
.tms-ln-phrase-area label{ font-size: 13px; font-weight: 800; color: rgba(196,216,245,0.95); }
.tms-ln-phrase-input{
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.28);
  color: #fff;
  font-size: 16px;
  outline: none;
}
.tms-ln-phrase-input:focus{ border-color: rgba(196,216,245,0.85); }

.tms-ln-actions{
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
  flex-wrap: wrap;
}
.tms-ln-btn{
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 1000;
  font-size: 15px;
  cursor: pointer;
}
.tms-ln-primary{
  background: rgba(196,216,245,0.95);
  color: rgba(0,20,40,0.95);
}
.tms-ln-primary:hover{ filter: brightness(1.05); }
.tms-ln-primary:disabled{ opacity: 0.5; cursor: not-allowed; }
.tms-ln-primary:focus-visible{ outline: 3px solid #fff; outline-offset: 2px; }
.tms-ln-secondary{
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
}
.tms-ln-secondary:hover{ background: rgba(255,255,255,.18); }

@media (max-width: 480px){
  .tms-ln-modal{ padding: 20px 18px 18px; }
  .tms-ln-title{ font-size: 19px; margin-right: 30px; }
  .tms-ln-actions{ justify-content: stretch; }
  .tms-ln-btn{ flex: 1 1 auto; }
}
