.msw-title {
	margin: 0 0 24px;
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	color: var(--msw-text);
	letter-spacing: -.01em;
}

@media (max-width: 1000px) {}

@media (max-width: 700px) {}

.msw-canvas-container.msw-shake {
	animation: msw-shake .45s ease-in-out;
}

.msw-canvas-container.is-spinning .msw-overlay {
	opacity: 0;
}

.msw-canvas-container.is-empty .msw-center-btn, .msw-canvas-container.is-empty .msw-pointer, .msw-canvas-container.is-empty .msw-overlay {
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
}

.msw-hint kbd {
	display: inline-block;
	padding: 2px 6px;
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	color: #374151;
	background: #f3f4f6;
	border: 1px solid #d1d5db;
	border-bottom-width: 2px;
	border-radius: 4px;
}

.msw-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--msw-text);
	margin-bottom: 8px;
}

.msw-modal.is-open {
	display: flex;
	animation: msw-fadein .25s ease-out;
}

.msw-lotto-header {
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: #fff;
	padding: 13px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	font-size: 15px;
}

.msw-lotto-icon {
	font-size: 20px;
	line-height: 1;
}

.msw-lotto-chip {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 3px 8px 3px 10px;
	border-radius: 20px;
	background: #f3f4f6;
	border: 1px solid var(--msw-border);
	font-size: 12px;
	font-weight: 600;
	color: var(--msw-text);
	cursor: default;
}

.msw-lotto-chip.is-removed {
	background: #fee2e2;
	border-color: #fca5a5;
	color: #991b1b;
	text-decoration: line-through;
	opacity: .6;
}

.msw-lotto-chip-remove {
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	color: #9ca3af;
	font-size: 14px;
	line-height: 1;
	display: flex;
	align-items: center;
	transition: color .15s;
}

.msw-lotto-chip-remove:hover {
	color: #ef4444;
}

.msw-lotto-ball {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(99, 102, 241, .35);
	animation: msw-ball-pop .35s cubic-bezier(.34, 1.56, .64, 1);
}

.msw-lotto-done .msw-lotto-status {
	color: #10b981;
	font-style: normal;
	font-weight: 600;
}

.msw-answers-modal.is-open {
	display: flex;
}

.msw-toast {
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%) translateY(12px);
	background: #1f2330;
	color: #fff;
	padding: 12px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
	pointer-events: none;
	z-index: 9999;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.msw-toast.msw-toast-show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.msw-lotto-copy.copied {
	background: #10b981;
	color: #fff;
	border-color: #10b981;
}

.msw-current-game {
	text-align: center;
	margin-bottom: 8px;
}

.msw-current-game-name {
	display: inline-block;
	font-size: 16px;
	font-weight: 800;
	color: var(--msw-primary, #6c5ce7);
}

.msw-current-game-range {
	display: block;
	font-size: 12px;
	color: #95a5a6;
	font-weight: 600;
	margin-top: 2px;
}

.msw-skip-btn {
	background: #fff;
	color: #636e72;
	border: 1px solid #e1e4ed;
	padding: 6px 14px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	margin-top: 4px;
	align-self: center;
	transition: all .15s ease;
}

.msw-skip-btn:hover {
	border-color: #6c5ce7;
	color: #6c5ce7;
}

.msw-result-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 10px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eef0f6;
}

.msw-result-titles {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.msw-result-game {
	font-size: 14px;
	font-weight: 800;
	color: #2d3436;
}

.msw-result-source {
	font-size: 11px;
	color: #95a5a6;
	font-weight: 600;
}

.msw-result-copy {
	background: #fff;
	border: 1px solid #e1e4ed;
	color: #636e72;
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
	flex-shrink: 0;
}

.msw-result-copy:hover {
	border-color: #6c5ce7;
	color: #6c5ce7;
}

.msw-result-plays {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.msw-result-play {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	background: #fff;
	border-radius: 6px;
	flex-wrap: wrap;
	border: 1px solid transparent;
	transition: border-color .18s ease, background .18s ease;
}

.msw-result-play-live {
	border-color: #fdcb6e;
	background: #fffbf0;
}

.msw-result-play-done {
	border-color: #eef0f6;
}

.msw-result-play-num {
	font-size: 11px;
	font-weight: 700;
	color: #95a5a6;
	flex: 0 0 42px;
}

.msw-result-balls {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	align-items: center;
}

.msw-ball {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 6px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 800;
	color: #fff;
}

.msw-ball-main {
	background: linear-gradient(135deg, #6c5ce7 0%, #5847d4 100%);
	box-shadow: 0 2px 4px rgba(108, 92, 231, .3), inset 0 1px 0 rgba(255, 255, 255, .3);
}

.msw-ball-bonus {
	background: linear-gradient(135deg, #fdcb6e 0%, #f0932b 100%);
	color: #5d3500;
	box-shadow: 0 2px 4px rgba(240, 147, 43, .4), inset 0 1px 0 rgba(255, 255, 255, .4);
}

.msw-ball-sep {
	color: #95a5a6;
	font-weight: 700;
	font-size: 14px;
	margin: 0 2px;
}

.msw-ball-pop {
	animation: msw-ball-pop .34s cubic-bezier(.34, 1.56, .64, 1);
}

.msw-toast {
	background: #2d3436;
	color: #fff;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 12px 40px rgba(45, 52, 54, .18);
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .25s ease, transform .25s ease;
}

.msw-toast-show {
	opacity: 1;
	transform: translateY(0);
}

.msw-toast-success {
	background: #00b894;
}

.msw-toast-error {
	background: #d63031;
}

@media (max-width: 1000px) {}

@media (max-width: 700px) {
	.msw-ball {
		min-width: 28px;
		height: 28px;
		font-size: 12px;
	}
	
	.msw-current-game-name {
		font-size: 14px;
	}
}

.msw-result-desc {
	color: #00b894;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 10px;
	background: rgba(0, 184, 148, .08);
	border-left: 3px solid #00b894;
	border-radius: 4px;
	margin-bottom: 10px;
	line-height: 1.4;
}

.msw-share-label {
	font-size: 14px;
	font-weight: 800;
	color: #2d3436;
	letter-spacing: .2px;
}

.msw-share-buttons {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.msw-share-buttons .a2a_kit {
	display: inline-flex;
	align-items: center;
}

.msw-banner-center {
	display: flex;
	justify-content: center;
}

@media (max-width: 720px) {
	.msw-banner-center {
		order: 1;
	}
}

.msw-banner-center {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.msw-lotto-chip {
	background: rgba(0, 0, 0, .3);
	color: var(--c-text);
	border: 1px solid var(--c-border);
}

.msw-lotto-chip-removed {
	opacity: .3;
	text-decoration: line-through;
}

.msw-lotto-result {
	background: rgba(0, 0, 0, .35);
	border: 1px solid rgba(255, 215, 0, .35);
}

.msw-lotto-result-empty, .msw-lotto-result-placeholder {
	color: var(--c-text-soft);
	font-style: italic;
}

.msw-canvas-container.is-spinning .msw-canvas {
	box-shadow: 0 0 50px rgba(255, 215, 0, .6), 0 0 100px rgba(232, 58, 130, .4);
}

.msw-canvas-game-name, .msw-current-game-name {
	color: var(--c-text);
	text-shadow: 0 0 14px rgba(255, 215, 0, .6);
	font-weight: 900;
}

.msw-canvas-game-label, .msw-current-game {
	margin-bottom: 18px;
}

.msw-canvas-progress {
	color: var(--c-green-br);
	text-shadow: 0 0 10px rgba(0, 200, 83, .6);
}

.msw-modal.is-open {
	display: flex;
}

.msw-lucky-dateselect option, .msw-picks-dateselect option {
	background: var(--c-bg-deep);
	color: var(--c-text);
}

.msw-result-game {
	color: #c4b5f8;
}

.msw-result-play {
	background: rgba(123, 47, 255, .08);
	border: 1px solid rgba(123, 47, 255, .2);
}

.msw-result-play-live {
	background: rgba(123, 47, 255, .12);
	border-color: rgba(123, 47, 255, .5);
	box-shadow: 0 0 14px rgba(123, 47, 255, .2);
}

.msw-result-play-num {
	color: rgba(180, 150, 255, .8);
}

.msw-result-copy {
	background: transparent;
	color: #c4b5f8;
	border: 1px solid rgba(123, 47, 255, .5);
}

.msw-result-copy:hover {
	background: rgba(123, 47, 255, .2);
	color: #fff;
}

.msw-result-desc {
	background: rgba(0, 200, 83, .18);
	border-left-color: var(--c-green);
	color: var(--c-green-br);
	box-shadow: 0 0 14px rgba(0, 200, 83, .3);
	text-shadow: 0 0 8px rgba(0, 200, 83, .4);
}

.msw-ball-main {
	background: radial-gradient(circle at 30% 30%, #c4b5fd 0%, #7b2fff 40%, #3b0db0 100%);
	color: #fff;
	box-shadow: 0 4px 12px rgba(123, 47, 255, .5), inset 0 -3px 6px rgba(0, 0, 0, .3), inset 0 3px 6px rgba(255, 255, 255, .3);
	border: 2px solid rgba(123, 47, 255, .6);
}

.msw-ball-bonus {
	background: radial-gradient(circle at 30% 30%, #a5f3fc 0%, #00e5ff 40%, #0077b6 100%);
	color: #000;
	box-shadow: 0 4px 12px rgba(0, 229, 255, .5), inset 0 -3px 6px rgba(0, 0, 0, .25), inset 0 3px 6px rgba(255, 255, 255, .4);
	border: 2px solid rgba(0, 229, 255, .6);
}

.msw-ball-sep {
	color: rgba(180, 150, 255, .8);
}

.msw-skip-btn {
	background: transparent;
	color: var(--c-gold);
	border: 1px solid var(--c-gold);
}

.msw-skip-btn:hover {
	background: rgba(255, 215, 0, .2);
}

.msw-toast {
	background: var(--c-bg-deep);
	border: 1px solid var(--c-gold);
	color: var(--c-gold);
}

.msw-toast-success {
	background: rgba(0, 200, 83, .25);
	border-color: var(--c-green);
	color: var(--c-green-br);
}

@media (max-width: 720px) {}

.msw-today-wrap {
	max-width: 720px;
	margin: 32px auto;
}

.msw-today-top {
	text-align: center;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 215, 0, .3);
}

.msw-today-page-title {
	font-family: "Bebas Neue", "Poppins", sans-serif;
	font-size: 38px;
	line-height: 1.1;
	margin: 0 0 14px 0;
	letter-spacing: 1px;
	color: var(--c-gold);
	text-shadow: 0 0 22px rgba(255, 215, 0, .45);
}

.msw-today-date-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.msw-today-date-label {
	color: var(--c-text-soft);
	font-weight: 600;
	font-size: 14px;
	display: inline-block;
}

.msw-today-wrap .msw-today-date-select {
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	border: 1px solid rgba(255, 215, 0, .5);
	border-radius: 8px;
	padding: 10px 38px 10px 14px;
	font-size: 15px;
	font-family: inherit;
	cursor: pointer;
	min-width: 240px;
	height: auto;
	line-height: 1.3;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23FFD700' d='M6 8L0 0h12z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
}

.msw-today-wrap .msw-today-date-select:focus {
	outline: none;
	border-color: var(--c-gold);
	box-shadow: 0 0 0 3px rgba(255, 215, 0, .25);
}

.msw-today-wrap .msw-today-date-select option {
	background: #0a1628;
	color: #fff;
	padding: 8px;
}

.msw-today-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: opacity .18s ease;
}

.msw-today-wrap .msw-result-panel {
	padding: 16px 18px;
}

.msw-today-wrap .msw-result-game {
	font-size: 18px;
}

.msw-today-wrap .msw-result-source {
	font-size: 12px;
}

.msw-today-wrap .msw-result-play {
	padding: 10px 12px;
}

.msw-today-wrap .msw-ball {
	min-width: 36px;
	height: 36px;
	font-size: 14px;
}

.msw-today-disclaimer {
	margin-top: 26px;
	padding: 14px 16px;
	text-align: center;
	color: var(--c-text-soft);
	font-size: 13px;
	border-top: 1px solid rgba(255, 215, 0, .25);
}

.msw-today-disclaimer strong {
	color: var(--c-gold);
}

.msw-today-disclaimer-age {
	display: block;
	margin-top: 6px;
	color: #ff4d6d;
	font-weight: 800;
	letter-spacing: .5px;
}

@media (max-width: 640px) {
	.msw-today-wrap {
		margin: 16px;
	}
	
	.msw-today-page-title {
		font-size: 30px;
	}
	
	.msw-today-date-select {
		width: 100%;
		min-width: 0;
	}
	
	.msw-today-wrap .msw-ball {
		min-width: 30px;
		height: 30px;
		font-size: 12px;
	}
}

.msw-luck-btn.is-active {
	background: linear-gradient(135deg, #7b2fff 0%, #4f1ecc 100%);
	border-color: #9b5fff;
	box-shadow: 0 0 22px rgba(123, 47, 255, .6);
}

@media (max-width: 1000px) {}

@media (max-width: 700px) {}

.msw-luck-popup.is-open {
	display: flex;
	animation: msw-fadein .25s ease-out;
}

.msw-folder-btn {
	appearance: none;
	-webkit-appearance: none;
	background: rgba(0, 0, 0, .35);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	padding: 9px 12px;
	font-size: 13.5px;
	font-weight: 600;
	cursor: pointer;
	transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
	text-align: center;
	line-height: 1.2;
}

.msw-folder-btn:hover:not(:disabled) {
	background: rgba(255, 193, 7, .25);
	border-color: #ffc107;
}

.msw-folder-btn:active:not(:disabled) {
	transform: translateY(1px);
}

.msw-folder-btn.is-active {
	background: #ffc107;
	color: #2a0f23;
	border-color: #ffc107;
}

.msw-folder-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
}

.msw-mini-wheel-wrap {
	position: relative;
	width: 100%;
	max-width: 240px;
	margin: 6px auto 0;
	aspect-ratio: 1/1;
}

.msw-mini-wheel {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

.msw-mini-pointer {
	position: absolute;
	top: -4px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 18px solid #ffc107;
	filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .35));
	z-index: 2;
}

.msw-folders-status {
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	min-height: 1.4em;
	padding: 8px 6px 0;
	color: rgba(255, 255, 255, .9);
}

.msw-folders-status.is-yes {
	color: #b8f5c8;
}

.msw-folders-status.is-no {
	color: #ffd1d1;
}

.msw-folders-status.is-error {
	color: #ffb7b7;
}

@media (max-width: 1000px) {
	.msw-folders {
		grid-column: 1/-1;
		order: 1;
	}
}

@media (max-width: 700px) {
	.msw-folders {
		order: 1;
	}
	
	.msw-folders-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.msw-mini-wheel-wrap {
		max-width: 220px;
	}
}

.msw-lotto-toggle-wrap {
	margin-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	padding-top: 14px;
}

.msw-lotto-toggle {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	background: rgba(0, 0, 0, .25);
	border: 1px solid rgba(255, 255, 255, .16);
	color: #fff;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
	transition: background 120ms ease, border-color 120ms ease;
}

.msw-lotto-toggle:hover {
	background: rgba(255, 193, 7, .15);
	border-color: #ffc107;
}

.msw-lotto-toggle-icon {
	font-size: 18px;
	line-height: 1;
}

.msw-lotto-toggle-label {
	flex: 1;
}

.msw-lotto-toggle-chevron {
	transition: transform 200ms ease;
	font-size: 14px;
	color: #ffc107;
}

.msw-lotto-toggle[aria-expanded="true"] .msw-lotto-toggle-chevron {
	transform: rotate(180deg);
}

.msw-lotto-toggle-body {
	margin-top: 10px;
}

.msw-lotto-toggle-body[hidden] {
	display: none !important;
}

.msw-lotto-toggle-body .msw-lotto {
	background: transparent;
	box-shadow: none;
	padding: 0;
	border-radius: 0;
}

.msw-video-overlay.is-open {
	display: flex;
}

@media (max-width: 700px) {}

.msw-email-modal.is-open {
	display: flex;
}

.msw-email-message.is-error {
	color: #b91c1c;
}

.msw-email-message.is-success {
	color: #15803d;
	font-weight: 600;
}

@media (max-width: 480px) {}

@media (max-width: 700px) {}

.msw-vibe-popup {
	position: fixed;
	inset: 0;
	z-index: 99997;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.msw-vibe-popup.is-open {
	display: flex;
	animation: msw-fadein .25s ease-out;
}

.msw-vibe-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .75);
	backdrop-filter: blur(4px);
}

.msw-vibe-card {
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 480px;
	background: linear-gradient(160deg, #111827 0%, #0a0e1a 100%);
	border-radius: 16px;
	overflow: hidden;
	animation: msw-pop .4s cubic-bezier(.34, 1.56, .64, 1);
	box-shadow: 0 0 40px rgba(255, 215, 0, .15), 0 24px 60px rgba(0, 0, 0, .6);
}

.msw-vibe-card--win {
	border: 1px solid rgba(255, 215, 0, .4);
}

.msw-vibe-card--win .msw-vibe-header {
	background: linear-gradient(135deg, #7b2fff, #b8006e);
}

.msw-vibe-card--win .msw-vibe-footer .msw-btn-primary {
	background: linear-gradient(135deg, #7b2fff 0%, #4f1ecc 100%);
	box-shadow: 0 4px 15px rgba(123, 47, 255, .5);
}

.msw-vibe-card--win .msw-vibe-footer .msw-btn-primary:hover {
	background: linear-gradient(135deg, #9b4fff 0%, #6a35dd 100%);
}

.msw-vibe-card--no {
	border: 1px solid rgba(239, 68, 68, .35);
}

.msw-vibe-card--no .msw-vibe-header {
	background: linear-gradient(135deg, #7f1d1d, #b91c1c);
}

.msw-vibe-card--no .msw-vibe-footer .msw-btn-primary {
	background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
	box-shadow: 0 4px 15px rgba(239, 68, 68, .45);
}

.msw-vibe-card--no .msw-vibe-footer .msw-btn-primary:hover {
	background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
}

.msw-vibe-header {
	padding: 16px 22px;
	font-family: "Bebas Neue", "Poppins", sans-serif;
	font-size: 20px;
	letter-spacing: 2px;
	color: #ffd700;
	text-shadow: 0 0 10px rgba(255, 215, 0, .5);
}

.msw-vibe-body {
	padding: 36px 22px 28px;
	text-align: center;
}

.msw-vibe-bigtext {
	font-family: "Bebas Neue", "Poppins", sans-serif;
	font-size: 56px;
	font-weight: 400;
	letter-spacing: 4px;
	word-break: break-word;
}

.msw-vibe-win-text {
	background: linear-gradient(180deg, #fff8d4 0%, #ffd700 60%, #b8860b 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 20px rgba(255, 215, 0, .6));
	animation: msw-winner-glow 1.5s ease-in-out infinite;
}

.msw-vibe-no-text {
	background: linear-gradient(180deg, #fca5a5 0%, #ef4444 55%, #b91c1c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 20px rgba(239, 68, 68, .6));
	animation: msw-vibe-no-glow 1.5s ease-in-out infinite;
}

.msw-vibe-sub {
	margin-top: 12px;
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.6;
}

.msw-vibe-win-text ~ .msw-vibe-sub strong, .msw-vibe-card--win .msw-vibe-sub strong {
	color: #ffd700;
}

.msw-vibe-card--no  .msw-vibe-sub strong {
	color: #fca5a5;
}

.msw-vibe-loader {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}

.msw-vibe-loader span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ffd700;
	animation: msw-vibe-bounce 1.1s ease-in-out infinite;
	opacity: .85;
}

.msw-vibe-loader span:nth-child(2) {
	animation-delay: .18s;
	background: #00e5ff;
}

.msw-vibe-loader span:nth-child(3) {
	animation-delay: .36s;
	background: #ff3cac;
}

.msw-vibe-footer {
	display: flex;
	justify-content: flex-end;
	padding: 14px 22px;
	border-top: 1px solid rgba(255, 215, 0, .12);
	background: rgba(0, 0, 0, .3);
}

.msw-vibe-footer .msw-btn-primary {
	min-width: 110px;
	padding: 11px 20px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	color: #fff;
	transition: background .15s, transform .12s;
}

.msw-vibe-footer .msw-btn-primary:active {
	transform: translateY(1px) scale(.98);
}

.msw-bonus-grid {
	margin-top: 8px;
}

.msw-bonus-btn.msw-folder-btn {
	background: linear-gradient(135deg, rgba(255, 215, 0, .18), rgba(255, 149, 0, .1));
	border-color: #ffd700;
	color: #ffd700;
	font-weight: 700;
}

.msw-bonus-btn.msw-folder-btn:hover:not(:disabled) {
	background: linear-gradient(135deg, rgba(255, 215, 0, .35), rgba(255, 149, 0, .2));
	border-color: #ffd700;
	color: #ffd700;
	box-shadow: 0 0 18px rgba(255, 215, 0, .5);
}