:root {
	--primary-gradient: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
	--secondary-gradient: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
}

body {
	background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
	color: #fff;
	min-height: 100vh;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
	padding: 4rem 0 2rem;
	text-align: center;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1.25rem;
	color: #99f6e4;
	margin-bottom: 2rem;
}

.carousel-container {
	position: relative;
	overflow: hidden;
	padding: 2rem 0 4rem;
	mask-image: linear-gradient(
		to right,
		transparent,
		black 10%,
		black 90%,
		transparent
	);
}

.carousel-controls {
	position: absolute;
	top: 1rem;
	right: 2rem;
	display: flex;
	gap: 0.5rem;
	z-index: 10;
	background: rgba(15, 32, 39, 0.8);
	padding: 0.5rem;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(20, 184, 166, 0.3);
}

.speed-btn {
	background: transparent;
	border: 1px solid rgba(20, 184, 166, 0.3);
	color: #99f6e4;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.85rem;
	transition: all 0.3s ease;
}

.speed-btn:hover {
	background: rgba(20, 184, 166, 0.1);
	border-color: #14b8a6;
	transform: translateY(-1px);
}

.speed-btn.active {
	background: var(--primary-gradient);
	color: #fff;
	border-color: #14b8a6;
}

.carousel-track {
	display: flex;
	animation: scroll 20s linear infinite;
	gap: 1.5rem;
}

.carousel-track.speed-slow {
	animation-duration: 30s;
}

.carousel-track.speed-normal {
	animation-duration: 20s;
}

.carousel-track.speed-fast {
	animation-duration:  10s;
}

.carousel-track:hover {
	animation-play-state: paused;
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Responsive speed adjustments for smaller screens */
@media (max-width: 768px) {
	.carousel-track {
		animation-duration: 15s;
	}

	.carousel-track.speed-slow {
		animation-duration: 22s;
	}

	.carousel-track.speed-normal {
		animation-duration: 15s;
	}

	.carousel-track.speed-fast {
		animation-duration: 8s;
	}
}

@media (max-width: 480px) {
	.carousel-track {
		animation-duration: 12s;
	}

	.carousel-track.speed-slow {
		animation-duration: 18s;
	}

	.carousel-track.speed-normal {
		animation-duration: 12s;
	}

	.carousel-track.speed-fast {
		animation-duration: 6s;
	}
}

.release-card {
	flex: 0 0 auto;
	width: 200px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.release-card:hover {
	transform: translateY(-8px) scale(1.05);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(20, 184, 166, 0.5);
	box-shadow: 0 12px 40px rgba(20, 184, 166, 0.3);
}

.release-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.release-info {
	padding: 1rem;
}

.release-name {
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.release-artist {
	font-size: 0.85rem;
	color: #99f6e4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.release-date {
	font-size: 0.75rem;
	color: #5eead4;
	margin-top: 0.5rem;
}

.badge-type {
	display: inline-block;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 0.5rem;
}

/* FullCalendar Custom Styling */
.calendar-view {
	padding: 2rem 1rem;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

.fc {
	background: rgba(15, 32, 39, 0.6);
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fc .fc-toolbar-title {
	color: #5eead4;
	font-size: 2rem;
	font-weight: 700;
}

.fc .fc-button {
	background: rgba(20, 184, 166, 0.1);
	border: 1px solid rgba(20, 184, 166, 0.3);
	color: #14b8a6;
	font-weight: 600;
	border-radius: 8px;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
}

.fc .fc-button:hover {
	background: rgba(20, 184, 166, 0.2);
	border-color: #14b8a6;
	transform: translateY(-2px);
}

.fc .fc-button-active {
	background: rgba(20, 184, 166, 0.3);
	border-color: #5eead4;
}

.fc .fc-col-header-cell {
	background: rgba(15, 32, 39, 0.8);
	border-color: rgba(255, 255, 255, 0.1);
	padding: 0.75rem 0.5rem;
}

.fc .fc-col-header-cell-cushion {
	color: #5eead4;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.fc .fc-daygrid-day {
	background: rgba(15, 32, 39, 0.4);
	border-color: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	margin: 2px;
}

.fc .fc-daygrid-day-number {
	color: #fff;
	font-weight: 600;
	padding: 0.5rem;
}

.fc .fc-daygrid-day.fc-day-today {
	background: rgba(20, 184, 166, 0.15);
	border: 2px solid rgba(20, 184, 166, 0.5);
}

.fc-event {
	cursor: pointer;
	border-radius: 6px;
	padding: 2px 4px;
	margin: 2px 0;
	border-left: 3px solid #5eead4;
	transition: all 0.2s ease;
}

.fc-event:hover {
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(20, 184, 166, 0.4);
}

.fc .fc-daygrid-event {
	border-radius: 6px;
	margin: 1px 2px;
}

.fc .fc-h-event {
	border-radius: 6px;
}

/* Anniversary event styling */
.fc-event[style*="background-color: rgb(147, 51, 234)"],
.fc-event[style*="background-color:#9333ea"] {
	background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%) !important;
	border-left: 3px solid #c084fc !important;
}

/* iCal Subscribe Section */
.ical-section {
	margin-top: 2rem;
	text-align: center;
}

.btn-ical {
	background: rgba(20, 184, 166, 0.15);
	border: 2px solid rgba(20, 184, 166, 0.4);
	color: #5eead4;
	padding: 0.75rem 1.5rem;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-ical:hover {
	background: rgba(20, 184, 166, 0.25);
	border-color: #14b8a6;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-ical svg {
	width: 18px;
	height: 18px;
}

.ical-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}

.ical-modal.show {
	display: flex;
	opacity: 1;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(12px);
}

.ical-modal-content {
	background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
	border: 2px solid rgba(20, 184, 166, 0.3);
	border-radius: 16px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
	animation: modalSlideIn 0.3s ease;
	position: relative;
	z-index: 10001;
}

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

.ical-modal-header {
	padding: 1.5rem 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ical-modal-header h3 {
	margin: 0;
	font-size: 1.5rem;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.btn-close-modal {
	background: transparent;
	border: none;
	color: #99f6e4;
	font-size: 2rem;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.btn-close-modal:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #14b8a6;
}

.ical-modal-body {
	padding: 2rem;
}

.ical-description {
	color: #99f6e4;
	font-size: 1rem;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.ical-quick-subscribe {
	text-align: center;
	margin-bottom: 1.5rem;
}

.btn-webcal {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1.1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-webcal:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(20, 184, 166, 0.5);
	color: #fff;
}

.btn-webcal svg {
	width: 18px;
	height: 18px;
}

.webcal-help {
	color: #99f6e4;
	font-size: 0.85rem;
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.ical-divider {
	position: relative;
	text-align: center;
	margin: 2rem 0;
}

.ical-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
}

.ical-divider span {
	position: relative;
	background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
	padding: 0 1rem;
	color: #99f6e4;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.ical-url-container {
	margin-bottom: 2rem;
}

.ical-label {
	display: block;
	color: #5eead4;
	font-weight: 600;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ical-input-group {
	display: flex;
	gap: 0.5rem;
}

.ical-input {
	flex: 1;
	background: rgba(15, 32, 39, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	color: #fff;
	font-size: 0.9rem;
	font-family: 'Courier New', monospace;
}

.ical-input:focus {
	outline: none;
	border-color: #14b8a6;
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.btn-copy-ical {
	background: var(--primary-gradient);
	border: none;
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-copy-ical:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(20, 184, 166, 0.4);
}

.copy-success {
	color: #5eead4;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	font-weight: 600;
	animation: fadeIn 0.3s ease;
}

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

.ical-instructions {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.ical-instructions h4 {
	color: #5eead4;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.ical-app-instructions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ical-app-instructions details {
	background: rgba(15, 32, 39, 0.6);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
}

.ical-app-instructions details:hover {
	background: rgba(15, 32, 39, 0.8);
	border-color: rgba(20, 184, 166, 0.3);
}

.ical-app-instructions summary {
	color: #99f6e4;
	font-weight: 600;
	outline: none;
	user-select: none;
}

.ical-app-instructions details[open] summary {
	color: #14b8a6;
	margin-bottom: 0.75rem;
}

.ical-app-instructions ol {
	margin: 0;
	padding-left: 1.5rem;
	color: #cbd5e1;
}

.ical-app-instructions li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.ical-app-instructions li:last-child {
	margin-bottom: 0;
}

.calendar-month-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.calendar-month-header h2 {
	font-size: 2rem;
	font-weight: 700;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0;
}

.btn-calendar-nav {
	background: rgba(20, 184, 166, 0.1);
	border: 1px solid rgba(20, 184, 166, 0.3);
	color: #14b8a6;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-calendar-nav:hover {
	background: rgba(20, 184, 166, 0.2);
	border-color: #14b8a6;
	transform: translateY(-2px);
}

.calendar-grid-month {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 1rem;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	box-sizing: border-box;
}

.calendar-day-name {
	text-align: center;
	font-weight: 700;
	color: #5eead4;
	padding: 1rem;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.calendar-day-cell {
	aspect-ratio: 1;
	background: rgba(15, 32, 39, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 0.75rem;
	position: relative;
	transition: all 0.3s ease;
	min-height: 100px;
	max-height: 200px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.calendar-day-cell.empty {
	background: transparent;
	border: none;
}

.calendar-day-cell.has-releases {
	border-color: rgba(20, 184, 166, 0.4);
	background: rgba(20, 184, 166, 0.05);
	cursor: pointer;
}

.calendar-day-cell.has-releases:hover {
	background: rgba(20, 184, 166, 0.15);
	border-color: #14b8a6;
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(20, 184, 166, 0.2);
}

.calendar-day-number {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.calendar-day-dot {
	background: var(--primary-gradient);
	color: #0f2027;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 700;
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
}

.calendar-day-releases-list {
	margin-top: 0.5rem;
	flex: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.calendar-day-release-mini {
	font-size: 0.75rem;
	color: #99f6e4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0.25rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.calendar-day-release-mini:hover {
	background: rgba(20, 184, 166, 0.2);
	color: #fff;
	transform: translateX(2px);
}

@media (max-width: 768px) {
	.calendar-grid-month {
		gap: 0.5rem;
		padding: 0.5rem;
	}

	.calendar-day-cell {
		min-height: 80px;
		padding: 0.5rem;
	}

	.calendar-day-number {
		font-size: 1rem;
	}

	.calendar-day-release-mini {
		font-size: 0.65rem;
	}
}

.badge-album {
	background: rgba(20, 184, 166, 0.3);
	color: #5eead4;
}

.badge-single {
	background: rgba(45, 212, 191, 0.3);
	color: #99f6e4;
}

.loading {
	text-align: center;
	padding: 4rem 0;
	color: #99f6e4;
}

.spinner {
	border: 3px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	border-top: 3px solid #14b8a6;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 0 auto 1rem;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.stats {
	text-align: center;
	padding: 2rem 0;
	color: #99f6e4;
}

.stats-number {
	font-size: 2rem;
	font-weight: 700;
	background: var(--secondary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Artist autocomplete dropdown */
.artist-autocomplete {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: rgba(15, 32, 39, 0.95);
	border: 1px solid rgba(20, 184, 166, 0.3);
	border-radius: 8px;
	margin-top: 0.5rem;
	max-height: 300px;
	overflow-y: auto;
	z-index: 1000;
	backdrop-filter: blur(10px);
	display: none;
}

.artist-autocomplete-item {
	padding: 0.75rem 1rem;
	cursor: pointer;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: background 0.2s ease;
	text-align: left;
}

.artist-autocomplete-item:hover {
	background: rgba(20, 184, 166, 0.2);
}

.artist-autocomplete-item:last-child {
	border-bottom: none;
}

.artist-autocomplete-name {
	font-weight: 600;
	color: #99f6e4;
	font-size: 0.95rem;
}

.artist-autocomplete-followers {
	font-size: 0.8rem;
	color: #5eead4;
	margin-top: 0.25rem;
}

/* Artist Filter Section */
.artist-filter {
	max-width: 600px;
	margin: 2rem auto;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-input {
	width: 100%;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(20, 184, 166, 0.3);
	border-radius: 8px;
	color: #fff;
	font-size: 1rem;
	outline: none;
	transition: all 0.3s ease;
}

.artist-input::placeholder {
	color: #99f6e4;
	opacity: 0.6;
}

.artist-input:focus {
	border-color: #14b8a6;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.btn-primary, .btn-search {
	padding: 0.75rem 1.5rem;
	background: var(--primary-gradient);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 0.95rem;
}

.btn-primary:hover, .btn-search:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
}

.btn-search {
	width: 100%;
	margin-top: 1rem;
	background: var(--secondary-gradient);
}

.selected-artists {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
	min-height: 2rem;
}

.artist-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	background: rgba(20, 184, 166, 0.2);
	border: 1px solid rgba(20, 184, 166, 0.4);
	border-radius: 20px;
	color: #5eead4;
	font-size: 0.9rem;
	font-weight: 500;
}

.artist-tag .remove-btn {
	background: none;
	border: none;
	color: #99f6e4;
	cursor: pointer;
	font-size: 1.2rem;
	padding: 0;
	line-height: 1;
	transition: color 0.2s;
}

.artist-tag .remove-btn:hover {
	color: #fff;
}

/* View Toggle */
.view-toggle {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 2rem;
	padding: 0.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.view-btn {
	padding: 0.75rem 1.5rem;
	background: transparent;
	color: #99f6e4;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.view-btn:hover {
	background: rgba(20, 184, 166, 0.1);
	color: #14b8a6;
}

.view-btn.active {
	background: var(--primary-gradient);
	color: #fff;
}

/* List View (formerly calendar) */
.calendar-container {
	max-width: 1200px;
	margin: 2rem auto;
	padding: 0 1rem;
}

#calendar-container.calendar-container {
	max-width: 100%;
	padding: 0;
	margin: 0;
}

.calendar-header {
	text-align: center;
	margin-bottom: 2rem;
}

.calendar-header h2 {
	font-size: 2rem;
	font-weight: 700;
	background: var(--primary-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.calendar-day {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
}

.calendar-day-header {
	font-size: 0.9rem;
	font-weight: 600;
	color: #5eead4;
	margin-bottom: 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.calendar-releases {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.calendar-release {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 0.75rem;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-release:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(20, 184, 166, 0.3);
	transform: translateY(-2px);
}

.calendar-release-name {
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
	color: #fff;
}

.calendar-release-artist {
	font-size: 0.85rem;
	color: #99f6e4;
}

.calendar-release-type {
	display: inline-block;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 0.5rem;
}
