/* ==========================================================================
   Site notice card — centered, with a soft dim behind it (much lighter than
   a typical dark modal backdrop). Deliberately avoids "popup"/"modal"/
   "overlay" in every class/file name even though it's visually centered
   again — ad blockers' cosmetic filter lists commonly target elements by
   those generic naming patterns, independent of how the element looks.
   ========================================================================== */

.shelo-corner-note-scrim {
	position: fixed;
	inset: 0;
	z-index: 9989;
	background: rgba(8, 35, 68, .18);
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}
.shelo-corner-note-scrim.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.shelo-corner-note {
	position: fixed;
	left: 50%;
	top: 50%;
	z-index: 9990;
	width: min(400px, calc(100vw - 40px));
	background: #fff;
	border: 1px solid var(--ref-line, #dbe5ef);
	border-radius: 18px;
	padding: 26px 22px 20px;
	box-shadow: 0 24px 60px rgba(8, 35, 68, .28);
	opacity: 0;
	transform: translate(-50%, -50%) scale(.96);
	transition: opacity .35s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
	pointer-events: none;
}

.shelo-corner-note.is-visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	pointer-events: auto;
}

.shelo-corner-note-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid var(--ref-line, #dbe5ef);
	background: #fff;
	color: var(--ref-muted, #5f7186);
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: border-color .15s ease, color .15s ease;
}
.shelo-corner-note-close:hover { border-color: var(--ref-blue, #0876df); color: var(--ref-blue, #0876df); }

.shelo-corner-note-message {
	margin: 0 26px 16px 0;
	font-size: 17px;
	font-weight: 800;
	color: var(--ref-deep, #082344);
	letter-spacing: -.01em;
	line-height: 1.35;
	text-align: center;
}

.shelo-corner-note-slot {
	min-height: 70px;
}

.shelo-corner-note-label {
	display: block;
	margin-top: 10px;
	color: var(--ref-muted, #5f7186);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	text-align: center;
}

@media (max-width: 480px) {
	.shelo-corner-note {
		width: calc(100vw - 32px);
		padding: 22px 18px 18px;
	}
}
