/* Modern UI for Lottery Sambad Auto Pro */

.lsa-wrapper {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	margin: 20px 0;
}

.lsa-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #1f2937;
	text-align: center;
}

.lsa-results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
}

.lsa-result-card {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lsa-result-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.lsa-card-header {
	background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
	color: #ffffff;
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.lsa-card-header h2 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
}

.lsa-card-header time {
	font-size: 0.9rem;
	opacity: 0.9;
}

.lsa-card-body {
	padding: 24px 20px;
	text-align: center;
}

.lsa-card-body h3 {
	margin: 0 0 16px 0;
	font-size: 1.25rem;
	color: #111827;
	font-weight: 700;
}

.lsa-prize {
	background: #f3f4f6;
	border-radius: 8px;
	padding: 16px;
	display: inline-block;
	min-width: 200px;
}

.lsa-label {
	display: block;
	font-size: 0.875rem;
	color: #6b7280;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 600;
	margin-bottom: 8px;
}

.lsa-number {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: #dc2626;
	letter-spacing: 2px;
}

.lsa-card-footer {
	padding: 16px 20px;
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	text-align: center;
}

.lsa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #dc2626;
	color: #ffffff;
	font-weight: 600;
	padding: 10px 24px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.1s ease;
	border: none;
	cursor: pointer;
	width: 100%;
}

.lsa-btn:hover {
	background: #b91c1c;
	color: #ffffff;
}

.lsa-btn:active {
	transform: scale(0.98);
}

.lsa-btn .dashicons {
	margin-right: 6px;
}

/* Social Share Buttons */
.lsa-share-container { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; margin-top: 20px;}
.lsa-share-label { font-weight: bold; font-size: 16px; margin-right: 5px; color: #000; }
.lsa-share-btn { padding: 6px 12px; border-radius: 4px; color: white !important; text-decoration: none; font-weight: bold; font-size: 13px; display: inline-flex; align-items: center; gap: 5px; border: none; cursor: pointer; font-family: Arial, sans-serif;}
.lsa-share-btn svg { width: 14px; height: 14px; fill: currentColor; }
.lsa-copy { background: #0056b3; }
.lsa-fb { background: #1877f2; }
.lsa-tw { background: #1da1f2; }
.lsa-wa { background: #25d366; }
.lsa-tg { background: #0088cc; }
.lsa-pin { background: #e60023; }
