/* Global Auth Styles */
.keyword-card.blurred {
	position: relative;
	filter: blur(2px);
	pointer-events: none;
	transition: filter 0.3s ease;
}

.upgrade-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	pointer-events: all;
	cursor: pointer;
	border-radius: 8px;
	transition: opacity 0.3s ease;
}

.upgrade-overlay:hover {
	background: rgba(255, 255, 255, 0.98);
}

.upgrade-overlay .lock-icon {
	font-size: 24px;
	margin-bottom: 10px;
	opacity: 0.8;
}

.upgrade-overlay p {
	text-align: center;
	font-weight: 500;
	color: #333;
	margin: 0;
	padding: 0 10px;
	font-size: 14px;
}

/* Status updates */
.status-updated {
	animation: statusPulse 2s ease;
}

.analysis-completed {
	animation: completedGlow 1s ease;
}

.pulse-success {
	animation: successPulse 2s ease;
}

@keyframes statusPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.02); }
}

@keyframes completedGlow {
	0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
	70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
	100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes successPulse {
	0%, 100% { background-color: rgba(76, 175, 80, 0.1); }
	50% { background-color: rgba(76, 175, 80, 0.2); }
}

/* Добавить в global-auth.css */
.keyword-card {
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.keyword-card.blurred {
	filter: blur(2px);
	pointer-events: none;
}

.keyword-card .upgrade-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	pointer-events: all;
	cursor: pointer;
	border-radius: 8px;
	z-index: 10;
}

.keyword-card .upgrade-overlay .lock-icon {
	font-size: 24px;
	margin-bottom: 8px;
}

.keyword-card .upgrade-overlay p {
	text-align: center;
	font-weight: 500;
	color: #333;
	margin: 0;
	font-size: 14px;
}


/* Добавить в global-auth.css */

/* Блюр для контента */
.blurred-content {
	filter: blur(3px);
	pointer-events: none;
	position: relative;
}

/* Overlay для авторизации */
.auth-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.95);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	border-radius: 8px;
}

.auth-overlay-content {
	text-align: center;
	padding: 20px;
	max-width: 300px;
}

.auth-overlay .lock-icon {
	font-size: 32px;
	margin-bottom: 15px;
	opacity: 0.8;
}

.auth-overlay p {
	margin: 0 0 15px 0;
	color: #333;
	font-weight: 500;
}

.auth-overlay .upgrade-btn {
	background: #FFD814;
	color: #000;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
}

.auth-overlay .upgrade-btn:hover {
	background: #FCD200;
}

/* Upgrade промо карточка */
.single-page-upgrade-promo {
	margin: 30px 0;
	text-align: center;
}

.upgrade-promo-card {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.upgrade-promo-card h3 {
	margin: 0 0 15px 0;
	font-size: 24px;
}

.upgrade-promo-card p {
	margin: 0 0 20px 0;
	opacity: 0.9;
	line-height: 1.5;
}

.upgrade-promo-card .upgrade-btn {
	background: #FFD814;
	color: #000;
	border: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	font-size: 16px;
	transition: transform 0.2s;
}

.upgrade-promo-card .upgrade-btn:hover {
	transform: translateY(-2px);
}

/* Upgrade заметки */
/* .prediction-upgrade-note,
.upgrade-prompt {
	background: #f8f9fa;
	border: 2px dashed #dee2e6;
	padding: 20px;
	text-align: center;
	border-radius: 8px;
	margin: 15px 0;
} */

.upgrade-row td {
	background: #f8f9fa !important;
}

/* Добавить в global-auth.css */
.prediction-upgrade-note {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	/* margin: 15px 0; */
}

.upgrade-note-content p {
	margin: 0 0 15px 0;
	font-weight: 500;
}

.upgrade-note-content .upgrade-btn {
	background: #FFD814;
	color: #000;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.upgrade-note-content .upgrade-btn:hover {
	background: #FCD200;
	transform: translateY(-1px);
}