.emind-sw-widget {
	max-width: 480px;
	margin: 2rem auto;
	padding: 2rem;
	background: #10131a;
	border-radius: 20px;
	color: #f5f5f5;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	box-shadow: 0 20px 60px rgba(0,0,0,0.35);
	text-align: center;
}

.emind-sw-title {
	font-size: 1.5rem;
	margin: 0 0 .5rem;
	font-weight: 700;
	color: #ffd166;
}

.emind-sw-sub {
	font-size: .95rem;
	color: #b8bcc6;
	margin-bottom: 1.5rem;
}

#emind-sw-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: left;
}

#emind-sw-form label {
	font-size: .85rem;
	color: #b8bcc6;
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

#emind-sw-form input {
	padding: .7rem .9rem;
	border-radius: 10px;
	border: 1px solid #2a2f3a;
	background: #1a1f2b;
	color: #fff;
	font-size: 1rem;
}

#emind-sw-form input:focus {
	outline: 2px solid #ffd166;
	outline-offset: 1px;
}

.emind-sw-btn {
	margin-top: .5rem;
	padding: .85rem 1rem;
	border: none;
	border-radius: 12px;
	background: linear-gradient(135deg, #ffd166, #ef476f);
	color: #10131a;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: transform .15s ease, opacity .15s ease;
}

.emind-sw-btn:hover:not(:disabled) { transform: translateY(-2px); }

.emind-sw-btn:disabled {
	background: #2a2f3a;
	color: #6b7180;
	cursor: not-allowed;
}

.emind-sw-error {
	color: #ff6b6b;
	font-size: .85rem;
	min-height: 1.2em;
}

.emind-sw-links {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 1.2rem;
}

.emind-sw-link {
	display: flex;
	align-items: center;
	gap: .6rem;
	padding: .75rem 1rem;
	border-radius: 12px;
	background: #1a1f2b;
	border: 1px solid #2a2f3a;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	position: relative;
	transition: border-color .15s ease;
}

.emind-sw-link-icon {
	width: 1.4rem;
	text-align: center;
	opacity: .85;
}

.emind-sw-check {
	margin-left: auto;
	opacity: 0;
	color: #06d6a0;
	transition: opacity .15s ease;
}

.emind-sw-link.is-clicked {
	border-color: #06d6a0;
}

.emind-sw-link.is-clicked .emind-sw-check {
	opacity: 1;
}

.emind-sw-wheel-wrap {
	position: relative;
	width: 360px;
	max-width: 100%;
	margin: 0 auto 1.5rem;
}

.emind-sw-pointer {
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 24px solid #ffd166;
	z-index: 2;
	filter: drop-shadow(0 2px 3px rgba(0,0,0,.4));
}

#emind-sw-canvas {
	width: 100%;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 0 8px #1a1f2b, 0 0 0 10px #2a2f3a, 0 10px 40px rgba(0,0,0,.5);
}

.emind-sw-result-card h2 {
	color: #ffd166;
	margin-bottom: .5rem;
}

.emind-sw-result-card p {
	color: #d3d6dd;
	line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
	.emind-sw-btn, .emind-sw-link { transition: none; }
}
