@charset "UTF-8"; 
/*
font-family:'Geist',sans-serif; // weight 100-900
font-family:'Montserrat',sans-serif; // weight 100-900
*/
:host, :root {
	font-family:'Geist',sans-serif;
	font-optical-sizing:auto;
	font-style:normal;
	--body-font-family:'Geist',sans-serif;
	--color-blue-1:#344968;
	--color-blue-2:#091B35;
	--color-lt-blue-1:#47afff;
	--bg-gradient-1:linear-gradient(135deg, #344968 0%, #091B35 100%);
	--bg-gradient-2:linear-gradient(90deg, #344968 0%, #091B35 100%);
	--placeholder-color:#aaaaaa;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html { background: var(--bg-gradient-1); }

body {
	font-family:var(--body-font-family);
	background: var(--bg-gradient-1);
	min-height: 100vh;
	padding: 15px;
}

h1, h2, h3, h4 { font-family:var(--body-font-family);  line-height:1; }

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Welcome Page Styles */
.welcome-container {
	max-width: 600px;
	margin: 0px auto;
	position:relative;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-content:center;
	height:calc(100vh - 30px - 0px); 
}

.welcome-card {
	text-align: center;
	padding:30px 30px;
}

.welcome-card h1 {
	color: var(--color-blue-1);
	font-size: 48px;
	margin-bottom: 20px;
	line-height:1;
}

img.welcome-logo {  /*-webkit-filter:brightness(60%) contrast(100%) hue-rotate(0deg) saturate(0); filter:brightness(60%) contrast(100%) hue-rotate(0deg) saturate(0);*/  }

.welcome-card p {
	color: #666;
	font-size:18px;
	font-weight:300;
	opacity:.65;
	font-style:italic;
	margin-top:10px;
	margin-bottom: 40px;
	line-height:1.2;
}

.btn-group {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.btn {	
	padding: 12px 20px;	
	font-size: 16px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

	.welcome-card .btn { width:48%; }

.btn-primary {
	background: var(--bg-gradient-1);
	color: white;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
	background: white;
	color: var(--color-blue-1);
	border: 2px solid var(--color-blue-1);
}

.btn-secondary:hover {
	background: var(--color-blue-1);
	color: white;
}

.settings-btn { display:block; width:100%; margin-top:10px; text-align:center; }
.settings-btn:hover, .settings-btn:focus {}

.btn-group-container {position:relative; display:flex; width:100%; padding:0; margin:0; flex-direction:row; justify-content:space-between; align-content:center; gap:20px;}

	.btn-group-container .btn { width:48%; max-width:48%;}

/* Form Styles */
.form-container {
	max-width: 500px;
	margin: 50px auto;
}

	#pageAccount .form-container-inner {padding:35px;}

	.form-container h3 { font-family:var(--body-font-family); font-size:44px; font-weight:200; line-height:1; color:var(--color-blue-1); margin:0 auto 20px; letter-spacing:-.02em;  }
	
.card-inner {padding:30px 20px;}

.form-group {
	position:relative;
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: 600;
}

	.form-group label {display:block; position:absolute; font-size:12px; color:#000; line-height:1; margin:0 auto; left:13px; top:4px;  }
	
	.username-status { margin-top:8px; font-size:11px; font-weight:600; line-height:1; position:absolute; bottom:3px; right:12px; }
		.username-status > span { font-size:11px; font-weight:600; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"] {
	width: 100%;
	padding: 20px 12px 8px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	line-height:1.4;
	transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
	outline: none;
	border-color: var(--color-blue-1);
}

input[type="text"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="text"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="text"]::-ms-input-placeholder, input[type="email"]::-ms-input-placeholder, input[type="password"]::-ms-input-placeholder { color:var(--placeholder-color); opacity:0.8; }

input::-webkit-input-placeholder { color:var(--placeholder-color); opacity:0.8; }
input::-moz-placeholder { color:var(--placeholder-color); opacity:0.8; }
input::-ms-placeholder { color:var(--placeholder-color); opacity:0.8; }
input::placeholder { color:var(--placeholder-color); opacity:0.8; }

.error {
	color: #e74c3c;
	font-size: 14px;
	margin-top: 5px;
}

.success {
	color: #27ae60;
	font-size: 14px;
	margin-top: 5px;
}

/* Header Styles */
.header {
	background: var(--bg-gradient-1);
	color: white;
	padding:8px 0px;
	padding-right:10px;
	
}

.header + .container { margin-top:10px; }

.header-container { display: flex; justify-content: space-between; width:100%; max-width:1200px; align-items: center; margin:0 auto; }

.header-logo { position:relative; } 

	img.logo { display:block; position:relative; margin:0 auto; padding:0; width:175px; max-width:100%; height:auto; }
	
.header h2 {
	font-size: 28px;
}

.header-nav {
	display: flex;
	gap: 15px;
	align-items: center;
}

.header-nav a, .header-nav button {
	background: rgba(255, 255, 255, 0.0);
	border:none;
	color: white;
	padding: 7px 10px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	font-size: 18px;
}

.header-nav a:hover, .header-nav button:hover {
	border:none;
	background: white;
	color: var(--color-blue-1);
}

	.header-nav a.disabled { background:rgba(255,255,255,0.05); color: var(--color-blue-1); }
	.header-nav a.disabled:hover, .header-nav a.disabled:focus { background:rgba(255,255,255,0.07); color: var(--color-blue-1);}

.user-welcome {
	font-size: 16px;
}

/* Player Styles */
.player-section {
	background: var(--bg-gradient-1);
	color: white;
	padding: 40px;
}

.current-song-info {
	text-align: center;
	margin-bottom: 30px;
}

.current-song-info h2 {
	font-size: 28px;
	line-height:1.1;
	margin-bottom: 10px;
	font-weight:500;
	letter-spacing:-.01em;
}

.current-song-info p {
	font-size: 18px;
	opacity: 0.9;
	letter-spacing:-.01em;
	font-weight:300;
}

.progress-container {
	margin: 20px 0;
}

.progress-bar {
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	cursor: pointer;
	position: relative;
}

.progress {
	height: 100%;
	background: white;
	border-radius: 3px;
	width: 0%;
	transition: width 0.1s;
}

.time-info {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	font-size: 14px;
}

.controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.control-btn {
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid white;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.control-btn:hover, .control-btn:focus {
	background:rgba(0,0,0,0.2);
	color: var(--color-blue-1);
	transform: scale(1.1);
}

img.btn-icon {position:relative; display:block; width:28px; max-width:100%; }
.control-btn.play-pause img.btn-icon { width:36px;}

.control-btn.play-pause {
	width: 70px;
	height: 70px;
	font-size: 28px;
}

.control-btn.active {
	background: var(--color-lt-blue-1);
	color: var(--color-blue-1);
}

/* Playlist Styles */
.playlist-section {
	padding: 30px 40px;
}

.playlist-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e0e0e0;
}

.playlist-header h3 {
	color: #333;
	font-size: 24px;
	text-transform:uppercase;
}

.playlist {
	max-height: 400px;
	overflow-y: auto;
}

.song-item {
	display: flex;
	align-items: center;
	padding: 15px;
	margin-right:10px;
	margin-bottom: 10px;
	background:rgba(255,255,255,.5);
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s;
	user-select: none;
	gap: 15px;
}

.song-item:hover {
	background: #e8e8e8;
	transform: translateX(5px);
}

.song-item.active {
	background: var(--bg-gradient-1);
	color: white;
}

.song-number {
	width: 40px;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	line-height:1;
	flex-shrink: 0;
}

.song-details {
	flex: 1;
	margin-left: 20px;
	min-width: 0;
}

.song-title {
	font-weight: 500;
	font-size: 16px;
	line-height:1;
	letter-spacing:-.01em;
	margin-bottom: 5px;
	overflow: hidden;
	/*text-overflow: ellipsis;
	white-space: nowrap;*/
}

.song-artist {
	font-size: 14px;
	font-weight:300;
	opacity: 0.7;
	overflow: hidden;
	/*text-overflow: ellipsis;
	white-space: nowrap;*/
}

.song-duration {
	font-size: 14px;
	opacity: 0.8;
	min-width: 50px;
	text-align: right;
	flex-shrink: 0;
}

.song-remove {
	background: #e74c3c;
	color: white; color:#e74c3c;
	border: none;
	padding: 5px 6px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
	line-height:1;
	flex-shrink: 0;
	background:transparent;
}

.song-remove .fa { color:#e74c3c;}

.song-remove:hover { background: #c0392b; background:transparent; color: #c0392b; }
	.song-remove:hover .fa { color: #c0392b; }
	
	#pageEditor .song-remove {}
	button.btn-edit, button.btn-delete { background:transparent; font-size:16px; padding:7px 8px;  }
	button.btn-edit { color:var(--color-blue-1); }	
	button.btn-edit:hover, button.btn-edit:focus { color:var(--color-blue-2); background:transparent; }
	button.btn-delete { color:#e74c3c; }
	button.btn-delete:hover, button.btn-delete:focus {  background:transparent; color: #c0392b; }
	#pageEditor .song-remove:hover {}


audio {
	display: none;
}

.playlist::-webkit-scrollbar {
	width: 8px;
}

.playlist::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.playlist::-webkit-scrollbar-thumb {
	background: var(--color-blue-1);
	border-radius: 10px;
}

.playlist::-webkit-scrollbar-thumb:hover {
	background: #764ba2;
}

/* Edit Playlist Styles */
.upload-section {
	background: #f9f9f9;
	padding: 30px;
	border-radius: 10px;
	margin-bottom: 30px;
	text-align: center;
}

	.upload-section h3 { font-size:24px; font-weight:600; line-height:1; letter-spacing:-.01em; margin:0 auto 15px; color:#333; }
	.upload-section + .playlist-section h3 { font-size:36px; font-weight:300; line-height:1; letter-spacing:-.01em; margin:0 auto 15px; color:#333;  }

.file-input-wrapper {
	position: relative;
	display: inline-block;
}

.file-input-wrapper input[type="file"] {
	display: none;
}

.file-input-label {
	background: var(--bg-gradient-1);
	color: white;
	padding: 12px 30px;
	border-radius: 8px;
	cursor: pointer;
	display: inline-block;
	transition: all 0.3s;
}

.file-input-label:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.sortable-playlist {
	list-style: none;
}

.sortable-playlist li {
	display: flex;
	align-items: center;
	padding: 15px;
	margin-bottom: 10px;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	cursor: grab;
	transition: all 0.3s;
}

.sortable-playlist li:active {
	cursor: grabbing;
	opacity: 0.7;
}

.sortable-playlist li:hover {
	background: #f5f5f5;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.drag-handle {
	color: var(--color-blue-1);
	margin-right: 15px;
	cursor: grab;
	font-size: 20px;
}

.drag-handle:active {
	cursor: grabbing;
}

.playlist-song-title { font-size:16px; line-height:1; font-weight:600; letter-spacing:-.01em; }
.playlist-song-artist { font-size:13px; line-height:1; font-weight:400; letter-spacing:-.01em; }

.upload-info {
	color: #666;
	margin-top: 10px;
	font-size: 14px;
}

.file-item {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	padding: 15px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.file-item.uploading {
	background: #f0f4ff;
}

.file-item.uploaded {
	background: #d4edda;
	border-color: #c3e6cb;
}

.file-info {
	flex: 1;
	min-width: 0;
}

.file-name {
	font-weight: bold;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 5px;
}

.file-size {
	font-size: 12px;
	color: #999;
}

.progress-wrapper {
	flex: 1;
	display: none;
}

.file-item.uploading .progress-wrapper {
	display: block;
}

.file-progress-bar {
	width: 100%;
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	margin-top: 8px;
}

.file-progress {
	height: 100%;
	background: linear-gradient(90deg, var(--color-blue-1), #764ba2);
	width: 0%;
	transition: width 0.3s;
	border-radius: 4px;
}

.progress-text {
	font-size: 12px;
	color: var(--color-blue-1);
	margin-top: 4px;
	font-weight: bold;
}

.upload-status {
	display: none;
	align-items: center;
	gap: 10px;
}

.file-item.uploaded .upload-status {
	display: flex;
}

.status-message {
	color: #27ae60;
	font-weight: bold;
	font-size: 14px;
}

.file-remove-btn {
	background: #e74c3c;
	color: white;
	border: none;
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 12px;
	transition: all 0.3s;
}

.file-remove-btn:hover {
	background: #c0392b;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	animation: fadeIn 0.3s;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.modal-content {
	background-color: white;
	margin: 10% auto;
	padding: 0;
	border-radius: 15px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: slideIn 0.3s;
}

@keyframes slideIn {
	from { transform: translateY(-50px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.modal-header {
	background: var(--bg-gradient-1);
	color: white;
	padding: 20px;
	border-radius: 15px 15px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h2 {
	margin: 0;
	font-size: 22px;
}

.close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 28px;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-btn:hover {
	opacity: 0.8;
}

.modal-body {
	padding: 30px;
}

.modal-footer {
	display: flex;
	gap: 10px;
	padding: 20px 30px;
	border-top: 1px solid #e0e0e0;
	background: #f9f9f9;
	border-radius: 0 0 15px 15px;
}

.modal-footer button {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s;
}

.modal-footer .btn-save {
	background: var(--bg-gradient-1);
	color: white;
}

.modal-footer .btn-save:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.modal-footer .btn-cancel {
	background: #e0e0e0;
	color: #333;
}

.modal-footer .btn-cancel:hover {
	background: #d0d0d0;
}

.notification {
	padding: 15px;
	margin-bottom: 20px;
	border-radius: 8px;
	display: none;
}

.notification.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.notification.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* ################		MOBILE		######################### */
@media (max-width: 768px) {
	
	body {padding:10px; }
	.player-section {padding:20px;}
		.progress-container { margin:0; }
		.current-song-info { margin-bottom:20px; }
			.current-song-info h2 {font-size:20px; margin-bottom:5px;}
			.current-song-info p {font-size:14px; }
			
	.header {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	
	.header + .container { margin-top:5px; }
	.user-welcome {display:none; }
	.btn-group { /*flex-direction: column;*/ }
		
	.header-nav {
		flex-wrap: wrap;
		justify-content: center;
	}

	.song-item { flex-wrap: wrap; }

	.controls {gap:15px; margin-top:10px; }
		.control-btn {}
		.control-btn.play-pause {}
		
	.playlist-section {padding:15px 20px; }
		.playlist-header {}
			.playlist-header h3 { font-size:21px;}
		.song-item {padding:8px; margin-right:8px; }
			.song-number { width:36px; font-size:16px; }
			.song-details { margin-left:5px; }
				.song-title { font-size:16px; margin-bottom:2px; }
				.song-artist { font-size:12px;}
			.song-duration { display:none;}
			
}/* END 768 */

@media screen and (max-width: 480px){
	
	.header {position:fixed; width:100%; top:0; left:0; right:0; padding-left:10px; z-index:9; }
	#headerEditor {position:fixed; width:100%; top:0; left:0; right:0; padding-left:10px; z-index:9; }
		.header-container {}
			.header-logo {}
				img.logo { width:145px; }
			.header-nav {gap:8px;}	
				.header-nav a, .header-nav button { font-size:20px;	background: rgba(255, 255, 255, 0.075); padding:6px 9px;}
				.header-nav a:hover, .header-nav button:hover { }
	
	.header + .container { margin-top:0; padding-top:60px; }
	#pageEditor { margin-top:0; padding-top:60px; }
	
	.welcome-card { padding:30px 20px; }
		.welcome-card .btn-group { flex-direction: column; }
		.welcome-card .btn { width:100%; }
	
	.current-song-info { margin-bottom:15px; }
		.current-song-info h2 {font-size:20px; margin-bottom:2px;}
		.current-song-info p {font-size:13px; }
	
	.controls { justify-content:space-between; }	
	#muteBtn { display:none; }
		
	.playlist-section {padding:10px 20px; }
		.playlist-header { padding-bottom:10px; margin-bottom:12px; }
		.playlist {max-height:300px; background-color:rgba(0,0,0,.05); padding-top:6px; }
			.song-item { gap:8px; margin-left:8px; margin-right:8px; margin-bottom:7px; padding:7px; padding-right:0; }
				.song-number { width:26px; font-size:14px; font-weight:300; letter-spacing:-.02em; }
				.song-title { margin-bottom:0px; }
				.song-remove { font-size:16px; padding:8px 10px; margin-left:5px; }
	
	.upload-section { padding:15px; margin-bottom:0; }
		.upload-section h3 {font-size:20px; font-weight:600; margin-bottom:8px; }
			.file-input-label { padding:8px 12px; margin-bottom:0; font-size:12px; line-height:1.5; text-transform:uppercase; letter-spacing:-.02em;}
			.upload-info { font-size:13px; }
		.upload-section + .playlist-section h3 {text-align:center; font-size:32px; }
		
		
	.sortable-playlist li { padding:10px; padding-right:5px;}
		.drag-handle { text-align:center; width:20px; font-size:24px; margin-right:8px; }
		.playlist-song-title { font-size:14px; font-weight:500; margin-bottom:3px; }
		.playlist-song-artist { font-size:11px; font-weight:300; }
			.playlist-song-hyphen {display:none;}
			.playlist-song-duration {display:none;}
		
	#pageAccount .form-container-inner { padding:30px 25px; }	
		#pageAccount .form-container h3 { font-size:10.25vw; text-align:center; }
		#pageAccount .form-group { margin-bottom:15px; }
		#pageAccount .btn-secondary { padding:8px 20px; }
	
}/* END 480 */

@media screen and (max-width: 360px){
	
	img.logo { width:135px; }
	
	
}/* END 360 */