/* sspm-public.css */
.sspm-popup-wrapper {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.sspm-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(4px);
}
.sspm-content {
	position: relative;
	z-index: 1;
	background: #fff;
	padding: 40px 30px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	text-align: center;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}
.sspm-close {
	position: absolute;
	top: 10px; right: 15px;
	background: none; border: none;
	font-size: 24px; cursor: pointer;
	color: #999; line-height: 1;
	padding: 0;
}
.sspm-close:hover {
	color: #333;
}
.sspm-sponsor-label {
	display: inline-block;
	background: #f1f1f1;
	color: #666;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 8px;
	border-radius: 4px;
	margin-bottom: 15px;
	font-weight: bold;
}
.sspm-headline {
	margin: 0 0 10px;
	font-size: 28px;
	line-height: 1.2;
}
.sspm-subheadline {
	margin: 0 0 15px;
	font-size: 18px;
	opacity: 0.8;
	font-weight: 500;
}
.sspm-desc {
	margin-bottom: 25px;
	font-size: 16px;
	line-height: 1.6;
}
.sspm-btn {
	display: inline-block;
	padding: 12px 30px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.2s ease;
}

/* Animations */
.sspm-anim-fade-in .sspm-content {
	animation: sspmFadeIn 0.4s ease forwards;
}
.sspm-anim-slide-up .sspm-content {
	animation: sspmSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sspm-anim-slide-down .sspm-content {
	animation: sspmSlideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sspm-anim-zoom-in .sspm-content {
	animation: sspmZoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.sspm-anim-bounce .sspm-content {
	animation: sspmBounce 0.6s ease forwards;
}

@keyframes sspmFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes sspmSlideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sspmSlideDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sspmZoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes sspmBounce { 
	0% { opacity: 0; transform: translateY(-20px); }
	50% { opacity: 1; transform: translateY(10px); }
	100% { transform: translateY(0); }
}

/* Mobile responsive */
@media(max-width: 767px) {
	.sspm-mobile-bottom-sheet {
		align-items: flex-end;
		padding: 0;
	}
	.sspm-mobile-bottom-sheet .sspm-content {
		border-radius: 20px 20px 0 0 !important;
		padding-bottom: env(safe-area-inset-bottom, 40px);
	}
}

/* Bare Mode Styles */
.sspm-bare-mode .sspm-content {
	background: transparent !important;
	padding: 0 !important;
	box-shadow: none !important;
	width: auto !important;
}
.sspm-bare-mode .sspm-close {
	color: #fff !important;
	top: 15px !important;
	right: 15px !important;
	background: rgba(255,255,255,0.2) !important;
	width: 32px; height: 32px;
	border-radius: 50% !important;
	display: flex; align-items: center; justify-content: center;
	z-index: 100 !important;
	backdrop-filter: blur(4px);
}
.sspm-bare-mode .sspm-close:hover {
	background: rgba(255,255,255,0.4) !important;
}
@media(max-width: 767px) {
	.sspm-bare-mode.sspm-mobile-bottom-sheet .sspm-content {
		padding-bottom: env(safe-area-inset-bottom, 20px) !important;
	}
}

/* Hostinger Promo Ad Styles */
.hw-promo-container {
    font-family: system-ui, -apple-system, sans-serif;
    max-width: 850px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #eaeaea;
}
.hw-promo-header {
    background: linear-gradient(135deg, #673ab7, #512da8);
    color: white;
    text-align: center;
    padding: 30px 20px;
}
.hw-promo-header h2 { margin: 0; font-size: 26px; font-weight: 800; }
.hw-promo-header p { margin: 10px 0 0; font-size: 16px; opacity: 0.9; }
.hw-pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    background: #fafafa;
    justify-content: center;
}
.hw-pricing-card {
    background: white;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid #eaeaea;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    flex: 1 1 240px;
    box-sizing: border-box;
}
.hw-pricing-card:hover { transform: translateY(-5px); border-color: #673ab7; }
.hw-popular-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: #ff4757; color: white; font-size: 12px; font-weight: bold;
    padding: 4px 14px; border-radius: 20px; white-space: nowrap;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}
.hw-pricing-card.hw-popular { border-color: #673ab7; box-shadow: 0 8px 25px rgba(103, 58, 183, 0.15); z-index: 1; }
.hw-plan-title { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 15px; }
.hw-price-original { text-decoration: line-through; color: #888; font-size: 14px; }
.hw-price-new { font-size: 36px; font-weight: 800; color: #673ab7; margin: 5px 0 20px; }
.hw-btn {
    display: inline-block; width: 100%; padding: 12px; background: #673ab7;
    color: white; text-decoration: none; border-radius: 6px; font-weight: bold;
    transition: background 0.3s; box-sizing: border-box;
}
.hw-btn:hover { background: #512da8; }
.hw-features { list-style: none; padding: 0; margin: 20px 0 0; font-size: 14px; color: #555; text-align: left; }
.hw-features li { margin-bottom: 8px; display: flex; align-items: center; }
.hw-features li::before { content: '✓'; color: #2ed573; margin-right: 8px; font-weight: bold; }
