/* 
 * LMS Frontend Premium Styling 
 * Matches the "DIGITAL EMPIRE BLUEPRINT" / "The Work Club" screenshot layout and aesthetics.
 */

:root {
	--lms-bg-color: #FFFFFF;
	--lms-sidebar-bg: #F8FAFC;
	--lms-text-main: #111827;
	--lms-text-muted: #6B7280;
	--lms-border-color: #E5E7EB;
	--lms-primary: #000000;
	/* Solid black for buttons and icons */
	--lms-black: #000000;

	--lms-navbar-height: 64px;
	--lms-sidebar-width: 380px;
}

body {
	margin: 0;
	overflow-y: scroll;
}

.lms-dashboard-wrapper {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background-color: var(--lms-bg-color) !important;
	color: var(--lms-text-main);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	max-width: 1200px;
	margin: 0 auto;
}

.lms-dashboard-outer-container {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: none !important;
	background-color: var(--lms-bg-color);
	overflow-x: hidden;
}

.lms-dashboard-wrapper * {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

/* Navbar */
.lms-navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--lms-navbar-height);
	background-color: transparent;
	padding: 0;
	position: sticky;
	top: 0;
	z-index: 50;
}

.lms-nav-left {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 33%;
}

.lms-back-btn {
	color: var(--lms-text-main);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.lms-course-title {
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.lms-nav-center {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 34%;
}

.lms-logo-placeholder {
	width: 24px;
	height: 24px;
	background: var(--lms-black);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 12px;
}

.lms-brand-name {
	font-weight: 600;
	font-size: 14px;
	margin-right: 24px;
}

.lms-nav-links {
	display: flex;
	gap: 24px;
}

.lms-nav-links a {
	text-decoration: none;
	color: var(--lms-text-muted);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.2s;
}

.lms-nav-links a:hover,
.lms-nav-links a.active {
	color: var(--lms-text-main);
}

.lms-nav-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 24px;
	width: 33%;
}

/* Removed My Learning Button code */

.lms-progress-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lms-progress-text,
.lms-progress-text-lessons,
.lms-progress-text-percent {
	font-size: 12px;
	color: var(--lms-text-muted);
	font-weight: 500;
}

.lms-progress-bar {
	width: 100px;
	height: 4px;
	background: var(--lms-border-color);
	border-radius: 2px;
	overflow: hidden;
}

.lms-progress-fill {
	height: 100%;
	background: var(--lms-black);
	transition: width 0.3s ease;
}

/* Layout */
.lms-main-layout {
	display: flex;
	flex: 1;
	height: calc(100vh - var(--lms-navbar-height));
}

.lms-content {
	flex: 1;
	overflow-y: scroll;
	padding: 0;
	display: flex;
	flex-direction: column;
}

/* Video Player section */
.lms-video-container {
	width: 100%;
	background: var(--lms-black);
	aspect-ratio: 16 / 9;
	max-height: 70vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lms-video-container iframe,
.lms-video-container video,
.lms-video-container .plyr {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Custom Plyr Player Styling */
.lms-video-container {
	--plyr-color-main: #000000; /* Sets the progress bar color */
}

.lms-video-container .plyr__controls .plyr__control {
	padding: 5px 10px !important;
	border-radius: 8px !important;
	background-color: #000000 !important;
	color: #ffffff !important;
	margin: 0 4px;
}

.lms-video-container .plyr__controls .plyr__control:hover {
	background-color: #333333 !important;
}

/* Make sure the large central play button also looks good */
.lms-video-container .plyr__control--overlaid {
	padding: 16px 24px !important;
	border-radius: 12px !important;
}

/*
 * YouTube Branding Blocker
 * The real overlay div (.lms-yt-blocker) is injected via JavaScript.
 * These rules ensure Plyr controls sit ABOVE the blocker.
 */
.lms-video-container .plyr__controls {
	z-index: 10 !important;
}

.lms-video-container .plyr__control--overlaid {
	z-index: 10 !important;
}

/* iOS Safari Fullscreen Fix — ensure the Plyr container can go truly fullscreen */
.lms-video-container .plyr--fullscreen-fallback {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-height: none !important;
	z-index: 9999999 !important;
	background: #000 !important;
}

/* Ensure iframe fills the fullscreen container */
.plyr--fullscreen-fallback .plyr__video-embed {
	width: 100% !important;
	height: 100% !important;
}

/*
 * YouTube UI Visual Hiding
 * Slightly enlarge the iframe so YouTube branding at edges gets cropped.
 * The overflow:hidden on the wrapper clips the outer edges.
 * Combined with the JS blocker overlay, this hides AND blocks all YouTube UI.
 */
.lms-video-container .plyr__video-embed {
	overflow: hidden !important;
}

.lms-video-container .plyr__video-embed iframe {
	transform: scale(1.25) !important;
	transform-origin: center center !important;
	pointer-events: none !important;
}

/* Ensure the blocker overlay covers the full area including in fullscreen */
.lms-yt-blocker {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background: #000; /* Solid black initially to hide YT UI on load */
	cursor: pointer;
	pointer-events: auto !important;
	transition: background 0.3s ease;
}

/* Fullscreen: ensure iframe still fills and crops in fullscreen mode */
.plyr--fullscreen-fallback .plyr__video-embed iframe {
	transform: scale(1.25) !important;
	transform-origin: center center !important;
	pointer-events: none !important;
}

/* Safari Fullscreen Layout Fix
 * Unset transforms/animations on parent containers that create containment contexts
 */
body.lms-video-fullscreen .lms-content,
body.lms-video-fullscreen .lms-dashboard-wrapper,
body.lms-video-fullscreen .lms-dashboard-outer-container,
body.lms-video-fullscreen .lms-main-layout {
	transform: none !important;
	animation: none !important;
	filter: none !important;
	perspective: none !important;
	contain: none !important;
}

.lms-no-video {
	color: white;
	text-align: center;
}

.lms-play-icon-large {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	transition: all 0.2s;
	cursor: pointer;
}

.lms-play-icon-large:hover {
	border-color: white;
}

.lms-lesson-header {
	padding: 16px 0 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
}

.lms-video-controls-bar {
	width: 100%;
	margin: 16px 0 0 0;
	display: flex;
	align-items: center;
	gap: 12px;
}

.lms-speed-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--lms-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.lms-speed-btn {
	background: #F3F4F6;
	border: none;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--lms-text-muted);
	cursor: pointer;
	transition: all 0.2s;
}

.lms-speed-btn:hover {
	background: #E5E7EB;
	color: var(--lms-text-main);
}

.lms-speed-btn.active {
	background: var(--lms-black);
	color: white;
}

.lms-lesson-badge {
	color: var(--lms-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}

.lms-lesson-title {
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 12px 0;
	line-height: 1.2;
}

.lms-lesson-duration {
	color: var(--lms-text-muted);
	font-size: 15px;
}

.lms-mark-complete-btn {
	background: white;
	color: var(--lms-black);
	border: 1px solid var(--lms-border-color);
	padding: 12px 24px;
	border-radius: 24px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: all 0.2s;
}

.lms-mark-complete-btn.completed {
	background: var(--lms-black);
	color: white;
	border-color: var(--lms-black);
}

.lms-mark-complete-btn:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lms-divider {
	height: 1px;
	background: #F3F4F6;
	margin: 0;
	max-width: 1200px;
}

/* Details Grid - Full width */
.lms-lesson-details-full {
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding: 32px 0 64px 0;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.lms-section-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 24px 0;
}

.lms-section-title svg {
	color: var(--lms-primary);
}

/* Resources */
.lms-resource-card {
	display: flex;
	align-items: center;
	background: white;
	border: 1px solid var(--lms-border-color);
	border-radius: 12px;
	padding: 16px;
	text-decoration: none;
	color: var(--lms-text-main);
	transition: all 0.2s;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lms-resource-card:hover {
	border-color: var(--lms-text-main);
	background-color: #F8FAFC;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lms-resource-icon {
	width: 40px;
	height: 40px;
	background: #F3F4F6;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	color: var(--lms-text-muted);
}

.lms-resource-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lms-resource-name {
	font-weight: 600;
	font-size: 14px;
}

.lms-resource-meta {
	font-size: 12px;
	color: var(--lms-text-muted);
}

.lms-resource-download {
	color: var(--lms-text-muted);
}

.lms-resource-card:hover .lms-resource-download {
	color: var(--lms-primary);
}

.lms-empty-state {
	color: var(--lms-text-muted);
	font-size: 14px;
	font-style: italic;
}

/* Description */
.lms-description-section {
	padding-bottom: 24px;
}

.lms-lesson-content {
	color: #374151;
	font-size: 15px;
	line-height: 1.7;
}

.lms-lesson-content p {
	margin-top: 0;
	margin-bottom: 16px;
}

/* Private Notes */
.lms-notes-section {
	padding-bottom: 24px;
}

.lms-notes-container {
	position: relative;
}

#lms-student-note {
	width: 100%;
	min-height: 190px;
	padding: 16px;
	border: 1px solid var(--lms-border-color);
	border-radius: 12px;
	font-family: inherit;
	font-size: 16px;
	/* 16px prevents iOS zoom on focus */
	color: var(--lms-text-main);
	background: #F8FAFC;
	resize: vertical;
	transition: border-color 0.2s;
}

#lms-student-note:focus {
	outline: none;
	border-color: var(--lms-black);
	background: white;
}

.lms-note-status {
	position: absolute;
	bottom: 16px;
	right: 16px;
	font-size: 11px;
	font-weight: 600;
	color: var(--lms-text-muted);
	pointer-events: none;
	transition: opacity 0.3s;
	opacity: 0;
}

.lms-note-status.show {
	opacity: 1;
}

/* QA Board */
.lms-qa-section {
	padding-bottom: 32px;
	border-top: 1px solid var(--lms-border-color);
	padding-top: 24px;
	margin-top: 24px;
}

.lms-qa-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 24px;
}

.lms-qa-item {
	display: flex;
	gap: 16px;
}

.lms-qa-avatar img {
	border-radius: 50%;
	width: 40px;
	height: 40px;
}

.lms-qa-content {
	flex: 1;
	background: #F8FAFC;
	padding: 16px;
	border-radius: 12px;
}

.lms-qa-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.lms-qa-author {
	font-weight: 600;
	font-size: 14px;
	color: var(--lms-text-main);
}

.lms-qa-date {
	font-size: 12px;
	color: var(--lms-text-muted);
}

.lms-qa-text {
	font-size: 14px;
	color: var(--lms-text-main);
	line-height: 1.5;
}

.lms-qa-text p:last-child {
	margin-bottom: 0;
}

.lms-qa-empty {
	color: var(--lms-text-muted);
	font-size: 14px;
	font-style: italic;
}

#lms-qa-input {
	width: 100%;
	min-height: 80px;
	padding: 16px;
	border: 1px solid var(--lms-border-color);
	border-radius: 12px;
	font-family: inherit;
	font-size: 16px;
	/* 16px prevents iOS zoom on focus */
	resize: vertical;
	transition: border-color 0.2s;
}

#lms-qa-input:focus {
	outline: none;
	border-color: var(--lms-black);
}

/* Sidebar */
.lms-sidebar {
	width: var(--lms-sidebar-width);
	background: var(--lms-sidebar-bg);
	border-left: 1px solid var(--lms-border-color);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.lms-sidebar-header {
	padding: 24px;
	border-bottom: 1px solid var(--lms-border-color);
}

.lms-sidebar-header h2 {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin: 0;
	color: var(--lms-text-muted);
}

.lms-module-list {
	flex: 1;
	overflow-y: auto;
}

.lms-module-item {
	border-bottom: 1px solid var(--lms-border-color);
}

.lms-module-header {
	padding: 24px 32px;
	background: var(--lms-sidebar-bg);
	cursor: pointer;
	transition: background 0.2s;
}

.lms-module-header:hover {
	background: #F1F5F9;
}

.lms-module-meta {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--lms-text-muted);
	margin-bottom: 8px;
	font-weight: 600;
}

.lms-module-name {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	line-height: 1.4;
	color: var(--lms-text-main);
}

.lms-module-lessons {
	background: var(--lms-bg-color);
}

.lms-sidebar-lesson {
	display: flex;
	align-items: flex-start;
	padding: 16px 32px;
	text-decoration: none;
	color: var(--lms-text-main);
	transition: all 0.2s;
	border-left: 3px solid transparent;
}

.lms-sidebar-lesson:hover {
	background: rgba(0, 0, 0, 0.02);
}

.lms-sidebar-lesson.active {
	background: rgba(79, 70, 229, 0.05);
	border-left-color: var(--lms-primary);
}

.lms-lesson-icon {
	margin-right: 12px;
	margin-top: 2px;
}

.lms-lesson-info-sidebar {
	flex: 1;
}

.lms-sidebar-lesson-title {
	font-size: 13px;
	font-weight: 500;
	margin: 0 0 4px 0;
	line-height: 1.4;
}

.lms-sidebar-lesson.active .lms-sidebar-lesson-title {
	font-weight: 700;
	color: var(--lms-text-main);
}

.lms-sidebar-lesson-duration {
	font-size: 12px;
	color: var(--lms-text-muted);
}

.lms-ai-mentor-btn-wrapper {
	padding: 24px;
	background: var(--lms-sidebar-bg);
	border-top: 1px solid var(--lms-border-color);
}

.lms-ai-mentor-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--lms-black);
	color: white;
	border: none;
	padding: 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.2s;
}

.lms-ai-mentor-btn:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
	.lms-lesson-details-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lms-sidebar {
		width: 320px;
	}
}

@media (max-width: 768px) {
	.lms-main-layout {
		flex-direction: column;
		height: auto;
	}

	.lms-content {
		flex: none;
		overflow-y: visible;
	}

	.lms-sidebar {
		width: 100%;
		border-left: none;
		border-top: 1px solid var(--lms-border-color);
		height: auto;
	}

	.lms-nav-center {
		display: none;
	}

	.lms-nav-left,
	.lms-nav-right {
		width: 50%;
	}

	.lms-lesson-header {
		flex-direction: column;
		padding: 24px 16px;
	}

	.lms-lesson-title-area {
		width: 100%;
		margin-bottom: 16px;
	}

	.lms-lesson-title {
		font-size: 28px;
		width: 100%;
	}

	.lms-lesson-actions {
		width: 100%;
	}

	.lms-mark-complete-btn {
		width: 100%;
	}

	.lms-lesson-details-full {
		padding: 24px 16px 64px 16px;
	}

	.lms-dashboard-wrapper {
		padding: 0;
	}
}

/* Streak UI */
.lms-streak-container {
	display: flex;
	align-items: center;
	margin-right: 20px;
	color: var(--lms-text-muted);
	font-weight: 600;
	font-size: 15px;
	transition: color 0.3s;
}

.lms-streak-container .lms-flame-icon {
	width: 22px;
	height: 22px;
	margin-right: 6px;
	color: #cbd5e1;
	transition: color 0.3s, transform 0.3s, filter 0.3s;
}

.lms-streak-container.lit {
	color: #f97316;
}

.lms-streak-container.lit .lms-flame-icon {
	color: #f97316;
	filter: drop-shadow(0px 0px 5px rgba(249, 115, 22, 0.5));
}

/* Tabs UI Redesign */
.lms-tabs {
	display: flex;
	gap: 4px;
	margin-top: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--lms-border-color);
}

.lms-tab-btn {
	background: #F3F4F6;
	border: 1px solid transparent;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	padding: 12px 20px;
	font-size: 13px;
	font-weight: 700;
	color: var(--lms-text-muted);
	cursor: pointer;
	transition: all 0.2s ease;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.lms-tab-btn:hover {
	color: var(--lms-black);
	background: #E5E7EB;
}

.lms-tab-btn.active {
	background: #FFFFFF;
	color: var(--lms-black);
	border: 1px solid var(--lms-border-color);
	border-bottom: 2px solid #FFFFFF;
	/* Overlaps bottom border mask */
	margin-bottom: -1px;
	/* Pulls it down over the border */
}

/* Tab Panels */
.lms-tab-panel {
	display: none;
	animation: lmsFadeInUp 0.3s ease;
}

.lms-tab-panel.active {
	display: block;
}

/* Premium Animations */
@keyframes lmsFadeInUp {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.lms-content {
	animation: lmsFadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes lmsPulseBorder {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
	}

	70% {
		box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.lms-sidebar-lesson.active .lms-lesson-icon svg {
	border-radius: 50%;
	animation: lmsPulseBorder 2s infinite;
}

/* Structural Layout Fix for Jumping */
html {
	overflow-y: scroll;
}

.lms-dashboard-wrapper button:focus,
.lms-dashboard-wrapper a:focus {
	outline: none;
}

/* Focus Mode Adjustments */
body.lms-focus-mode::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	z-index: 40;
	pointer-events: none;
}

body.lms-focus-mode .lms-sidebar {
	display: none !important;
}

body.lms-focus-mode .lms-content {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 50;
	background: var(--lms-bg-color);
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	margin-top: 24px;
	margin-bottom: 24px;
}

body.lms-focus-mode .lms-progress-text,
body.lms-focus-mode .lms-progress-text-lessons,
body.lms-focus-mode .lms-progress-text-percent,
body.lms-focus-mode .lms-sidebar-header h2 {
	color: #ffffff !important;
}

#lms-student-note {
	min-height: 150px;
}

body.lms-focus-mode .lms-video-container {
	max-height: 85vh;
}

/* Certificate Download Button Animation */
.lms-cert-download-btn {
	transition: all 0.2s ease;
}

.lms-cert-download-btn:hover {
	background: #E2E8F0 !important;
	border-color: #94A3B8 !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Premium Access Gate */
.lms-premium-locked-container {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80vh;
	background-color: var(--lms-bg-color);
	padding: 24px;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: none !important;
	overflow-x: hidden;
}

.lms-locked-content {
	background: white;
	max-width: 500px;
	width: 100%;
	border-radius: 16px;
	padding: 48px 32px;
	text-align: center;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--lms-border-color);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.lms-locked-icon-pulse {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--lms-black);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 32px;
	animation: lms-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes lms-pulse {

	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.4);
	}

	50% {
		box-shadow: 0 0 0 20px rgba(15, 23, 42, 0);
	}
}

.lms-locked-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--lms-black);
	margin-bottom: 16px;
	letter-spacing: -0.02em;
}

.lms-locked-desc {
	font-size: 16px;
	color: var(--lms-text-muted);
	line-height: 1.6;
	margin-bottom: 32px;
}

.lms-locked-divider {
	width: 60px;
	height: 2px;
	background: var(--lms-border-color);
	margin: 0 auto 32px auto;
}

.lms-locked-cta-text {
	font-size: 14px;
	font-weight: 700;
	color: var(--lms-black);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}

.lms-locked-btn {
	display: inline-block;
	background: var(--lms-black);
	color: white;
	text-decoration: none;
	padding: 16px 32px;
	border-radius: 32px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.lms-locked-btn:hover {
	background: #334155;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}