/* Signature LinkPage Pro — Public CSS */

.slp-linkpage {
	max-width: 460px;
	margin: 0 auto;
	padding: 40px 20px 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	box-sizing: border-box;
}

.slp-page-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 28px;
}
.slp-avatar img {
	max-width: 140px;
	max-height: 140px;
	width: auto;
	height: auto;
	object-fit: contain;
	margin-bottom: 14px;
}
.slp-page-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 4px;
}
.slp-page-subtitle {
	opacity: .85;
	font-size: 14px;
	margin: 0 0 12px;
}
.slp-social-icons {
	display: flex;
	gap: 14px;
	margin-top: 6px;
}
.slp-social-icon-link {
	width: 32px;
	height: 32px;
	background: rgba(255,255,255,.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}
.slp-social-icon-link svg {
	width: 16px;
	height: 16px;
	display: block;
}

/* Header layout variants */
.slp-header--hero .slp-avatar img,
.slp-header--banner .slp-avatar img { max-width: 170px; max-height: 170px; }

.slp-links-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.slp-link-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 52px;
	padding: 14px 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	text-align: center;
	transition: transform .15s ease;
}
.slp-link-button:hover {
	transform: translateY(-2px);
}

.slp-link-button--has-thumb {
	padding-left: 54px;
}
.slp-link-button--classic .slp-link-thumb {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.slp-link-button--classic .slp-link-thumb img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	display: block;
}

.slp-link-button--featured {
	min-height: 160px;
	background-size: cover;
	background-position: center;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 16px;
	color: #fff !important;
	background-color: rgba(0,0,0,.3);
}
.slp-link-button--featured .slp-link-title-text {
	background: linear-gradient(transparent, rgba(0,0,0,.6));
	width: 100%;
	padding: 30px 0 0;
	text-align: left;
}

.slp-link-button--locked {
	opacity: .7;
	cursor: pointer;
}
.slp-lock-badge {
	position: absolute;
	right: 14px;
}

@keyframes slp-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.035); }
}
.slp-link-button--animate {
	animation: slp-pulse 1.8s ease-in-out infinite;
}

.slp-page-footer {
	margin-top: 36px;
	font-size: 12px;
	opacity: .6;
}

/* Lock modal */
.slp-lock-modal {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}
.slp-lock-modal-content {
	background: #fff;
	color: #1d2327;
	border-radius: 16px;
	padding: 28px;
	width: 90%;
	max-width: 360px;
	position: relative;
}
.slp-lock-modal-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
}
.slp-lock-modal-body input[type="email"],
.slp-lock-modal-body input[type="text"],
.slp-lock-modal-body input[type="password"],
.slp-lock-modal-body input[type="date"] {
	width: 100%;
	padding: 10px 12px;
	margin: 12px 0;
	border-radius: 8px;
	border: 1px solid #ddd;
	box-sizing: border-box;
}
.slp-lock-modal-body button.slp-lock-submit {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: none;
	background: #6c2bd9;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}
.slp-lock-error {
	color: #b32d2e;
	font-size: 13px;
	margin: 4px 0 0;
}
