/* FranFlix - Clean Dark Theme */

:root {
	/* Colors */
	--bg-dark: #0f0f1e;
	--bg-darker: #0a0a14;
	--bg-card: #1a1a2e;
	--bg-elevated: #222238;

	/* Accent */
	--accent: #6366f1;
	--accent-hover: #4f46e5;
	--accent-light: #818cf8;

	/* Text - These override Bootstrap! */
	--text-white: #f8fafc;
	--text-gray: #94a3b8;
	--text-dark: #64748b;

	/* Status */
	--success: #10b981;
	--error: #ef4444;
	--warning: #f59e0b;

	/* Border */
	--border: rgba(255, 255, 255, 0.1);
	--border-hover: rgba(255, 255, 255, 0.2);
}

* {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	background: var(--bg-dark);
	color: var(--text-white);
	line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	font-weight: 600;
	line-height: 1.2;
	color: var(--text-white) !important;
}

h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.5rem;
}
h4 {
	font-size: 1.25rem;
}

p {
	margin: 0 0 1rem;
	color: var(--text-gray);
}

a {
	color: var(--accent);
	text-decoration: none;
}

a:hover {
	color: var(--accent-light);
}

/* Navigation */
.navbar {
	background: var(--bg-darker) !important;
	border-bottom: 1px solid var(--border);
	padding: 1rem 0;
}

.navbar-brand {
	color: var(--text-white) !important;
	font-size: 1.5rem !important;
	font-weight: 700 !important;
}

.navbar-brand i {
	color: var(--accent);
}

.navbar-nav .nav-link {
	color: var(--text-gray) !important;
	font-weight: 500;
	padding: 0.5rem 1rem !important;
	border-radius: 8px;
	transition: all 0.2s;
}

.navbar-nav .nav-link:hover {
	color: var(--text-white) !important;
	background: var(--bg-elevated);
}

.navbar-toggler {
	border-color: var(--border) !important;
}

.navbar-toggler-icon {
	filter: invert(1);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

/* Login */
.login-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.login-card {
	width: 100%;
	max-width: 400px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 2.5rem;
}

.login-logo {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 0.5rem;
	color: var(--text-white);
}

.login-logo i {
	color: var(--accent);
}

/* Page Header */
.page-header {
	text-align: center;
	margin-bottom: 3rem;
}

.page-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text-white) !important;
}

.page-title i {
	color: var(--accent);
}

.page-subtitle {
	color: var(--text-gray) !important;
	font-size: 1.1rem;
}

/* Forms */
.form-control {
	background: var(--bg-elevated) !important;
	border: 1px solid var(--border) !important;
	border-radius: 8px !important;
	color: var(--text-white) !important;
	padding: 0.75rem 1rem !important;
	font-size: 1rem;
	transition: all 0.2s;
}

.form-control::placeholder {
	color: var(--text-dark) !important;
}

.form-control:focus {
	border-color: var(--accent) !important;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1) !important;
	outline: none;
	background: var(--bg-card) !important;
}

.form-label {
	color: var(--text-gray);
	font-weight: 500;
	margin-bottom: 0.5rem;
	display: block;
}

.form-group {
	margin-bottom: 1.5rem;
}

/* Search Input - FIXED VERSION! */
.search-wrapper {
	position: relative;
	max-width: 100%;
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.search-input {
	flex: 1;
	padding: 1rem 1.5rem !important;
	font-size: 1.1rem !important;
	border-radius: 12px !important;
}

.search-btn {
	flex-shrink: 0;
	padding: 1rem 1.5rem;
	border-radius: 12px;
	white-space: nowrap;
}

/* Buttons */
.btn {
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.2s;
	text-decoration: none;
}

.btn-primary {
	background: var(--accent) !important;
	color: white !important;
}

.btn-primary:hover {
	background: var(--accent-hover) !important;
	transform: translateY(-1px);
}

.btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}

.btn-secondary {
	background: var(--bg-elevated) !important;
	color: var(--text-white) !important;
	border: 1px solid var(--border) !important;
}

.btn-secondary:hover {
	background: var(--bg-card) !important;
	border-color: var(--border-hover) !important;
}

.btn-danger {
	background: var(--error) !important;
	color: white !important;
}

.btn-danger:hover {
	background: #dc2626 !important;
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.btn-outline-secondary {
	background: transparent !important;
	border: 1px solid var(--border) !important;
	color: var(--text-gray) !important;
}

.btn-outline-secondary:hover {
	background: var(--bg-elevated) !important;
	color: var(--text-white) !important;
}

.w-100 {
	width: 100%;
}

/* Cards */
.card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.5rem;
}

/* Alerts */
.alert {
	padding: 1rem 1.25rem;
	border-radius: 8px;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.alert-danger {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	color: #fca5a5 !important;
}

.alert-warning {
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	color: #fbbf24 !important;
}

.alert-success {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: #6ee7b7 !important;
}

.alert-info {
	background: rgba(99, 102, 241, 0.1);
	border: 1px solid rgba(99, 102, 241, 0.3);
	color: var(--accent-light) !important;
}

/* Tables - ULTRA FIXED! Override ALL Bootstrap variables */
.table-wrapper {
	background: var(--bg-card) !important;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.table-responsive {
	overflow-x: auto;
	background: var(--bg-card) !important;
}

.table {
	width: 100%;
	margin: 0 !important;
	background: var(--bg-card) !important;
	color: var(--text-white) !important;
	border-collapse: collapse;
	/* Override ALL Bootstrap 5 table CSS variables */
	--bs-table-bg: transparent !important;
	--bs-table-color: var(--text-white) !important;
	--bs-table-color-state: var(--text-white) !important;
	--bs-table-bg-state: transparent !important;
	--bs-table-striped-bg: rgba(255, 255, 255, 0.02) !important;
	--bs-table-striped-color: var(--text-white) !important;
	--bs-table-hover-bg: var(--bg-elevated) !important;
	--bs-table-hover-color: var(--text-white) !important;
	--bs-table-active-bg: var(--bg-elevated) !important;
	--bs-table-active-color: var(--text-white) !important;
	--bs-table-border-color: var(--border) !important;
}

/* NUCLEAR OPTION: Force dark theme EVERYWHERE in tables! */
.table,
.table *,
.table tr,
.table td,
.table th,
.table tbody,
.table thead,
.table tbody tr,
.table tbody td,
.table tbody tr td,
table td,
table tr td {
	color: var(--text-white) !important;
	background-color: transparent !important;
	background: transparent !important;
}

.table > :not(caption) > * > * {
	background-color: transparent !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--text-white) !important;
}

/* Bootstrap 5 table striped fix */
.table-striped > tbody > tr > td,
.table-striped > tbody > tr > th {
	background-color: transparent !important;
	background: transparent !important;
}

.table thead {
	background: var(--bg-elevated) !important;
}

.table thead th {
	background: var(--bg-elevated) !important;
	border: none !important;
	padding: 1rem !important;
	font-weight: 600;
	color: var(--text-gray) !important;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

.table tbody {
	background: var(--bg-card) !important;
}

.table tbody tr {
	background: var(--bg-card) !important;
	border-bottom: 1px solid var(--border) !important;
	transition: background 0.2s;
}

.table tbody tr:hover {
	background: var(--bg-elevated) !important;
}

.table tbody td {
	padding: 1rem !important;
	vertical-align: middle;
	border: none !important;
	background-color: transparent !important;
	color: var(--text-white) !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
	background-color: rgba(255, 255, 255, 0.02) !important;
	--bs-table-bg-type: rgba(255, 255, 255, 0.02) !important;
}

.table-striped > tbody > tr:nth-of-type(even) > * {
	background-color: transparent !important;
	--bs-table-bg-type: transparent !important;
}

/* Override Bootstrap's colors explicitly */
.table .text-primary,
.table span.text-primary {
	color: var(--text-white) !important;
}

.table .text-secondary,
.table span.text-secondary {
	color: var(--text-gray) !important;
}

.table .text-success,
.table span.text-success {
	color: var(--success) !important;
}

.table .text-warning,
.table span.text-warning {
	color: var(--warning) !important;
}

.table .text-accent,
.table span.text-accent {
	color: var(--accent) !important;
}

.table a {
	color: var(--accent) !important;
}

.table a:hover {
	color: var(--accent-light) !important;
}

/* List Groups */
.list-group {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.list-group-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.5rem;
	transition: all 0.2s;
	color: var(--text-white) !important;
}

.list-group-item:hover {
	border-color: var(--border-hover);
	background: var(--bg-elevated);
}

.list-group-item h5 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-white) !important;
}

.list-group-item p {
	margin: 0 0 0.25rem;
	color: var(--text-gray) !important;
}

.list-group-item small {
	color: var(--text-dark) !important;
	font-size: 0.85rem;
}

/* Release & Update Cards */
.release-poster {
	width: 60px;
	height: 90px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

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

.release-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
	color: var(--text-white) !important;
}

.release-title a {
	color: var(--text-white) !important;
}

.release-title a:hover {
	color: var(--accent) !important;
}

.release-source {
	color: var(--text-dark) !important;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}

.release-date {
	color: var(--accent) !important;
	font-size: 0.85rem;
}

.update-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.25rem;
	margin-bottom: 0.75rem;
}

.update-title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--text-white) !important;
}

.update-description {
	color: var(--text-gray) !important;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
}

.update-date {
	color: var(--text-dark) !important;
	font-size: 0.8rem;
}

/* Progress */
.progress {
	height: 10px;
	background: var(--bg-elevated) !important;
	border-radius: 999px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.progress-bar {
	background: var(--accent) !important;
	height: 100%;
	transition: width 0.3s;
	min-width: 2%;
}

/* Empty State */
.empty-state {
	text-align: center;
	padding: 3rem 2rem;
	color: var(--text-dark);
}

.empty-state-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.5;
}

.empty-state h4 {
	color: var(--text-gray) !important;
	margin-bottom: 0.5rem;
}

/* Error Page */
.error-container {
	min-height: 70vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem;
}

.error-code {
	font-size: 6rem;
	font-weight: 700;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 1rem;
}

.error-message {
	font-size: 1.5rem;
	color: var(--text-gray);
	margin-bottom: 2rem;
}

/* Utilities */
.d-flex {
	display: flex;
}
.d-inline {
	display: inline;
}
.d-inline-flex {
	display: inline-flex;
}
.d-block {
	display: block;
}
.align-items-center {
	align-items: center;
}
.justify-content-between {
	justify-content: space-between;
}
.justify-content-center {
	justify-content: center;
}
.gap-3 {
	gap: 1rem;
}
.flex-grow-1 {
	flex-grow: 1;
}
.flex-shrink-0 {
	flex-shrink: 0;
}

.position-relative {
	position: relative;
}
.position-absolute {
	position: absolute;
}

.rounded-pill {
	border-radius: 999px;
	padding: 0.25rem 0.75rem;
	font-size: 0.85rem;
	background: var(--bg-elevated);
	color: var(--text-gray);
}

/* Bootstrap Grid */
.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -0.75rem;
	margin-right: -0.75rem;
}

.col-lg-4,
.col-lg-6,
.col-lg-8,
.col-lg-10,
.col-md-6 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	width: 100%;
}

.mb-0 {
	margin-bottom: 0 !important;
}
.mb-1 {
	margin-bottom: 0.25rem !important;
}
.mb-2 {
	margin-bottom: 0.5rem !important;
}
.mb-3 {
	margin-bottom: 1rem !important;
}
.mb-4 {
	margin-bottom: 1.5rem !important;
}
.mb-5 {
	margin-bottom: 2rem !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mt-1 {
	margin-top: 0.25rem !important;
}
.mt-2 {
	margin-top: 0.5rem !important;
}
.mt-3 {
	margin-top: 1rem !important;
}
.mt-4 {
	margin-top: 1.5rem !important;
}
.mt-5 {
	margin-top: 2rem !important;
}
.me-1 {
	margin-right: 0.25rem !important;
}
.me-2 {
	margin-right: 0.5rem !important;
}
.ms-auto {
	margin-left: auto !important;
}

@media (min-width: 768px) {
	.col-md-6 {
		width: 50%;
	}
	.d-none.d-md-table-cell {
		display: table-cell !important;
	}
	.mb-md-0 {
		margin-bottom: 0 !important;
	}
}

@media (min-width: 992px) {
	.col-lg-4 {
		width: 33.333%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-8 {
		width: 66.666%;
	}
	.col-lg-10 {
		width: 83.333%;
	}
}

/* Text Colors - Force Override! */
.text-center {
	text-align: center;
}
.text-secondary {
	color: var(--text-gray) !important;
}
.text-muted {
	color: var(--text-dark) !important;
}
.text-primary {
	color: var(--text-white) !important;
}
.text-success {
	color: var(--success) !important;
}
.text-warning {
	color: var(--warning) !important;
}
.text-danger {
	color: var(--error) !important;
}
.text-accent {
	color: var(--accent) !important;
}

/* Responsive - Mobile First Improvements */
@media (max-width: 768px) {
	.page-title {
		font-size: 1.75rem;
	}

	.page-subtitle {
		font-size: 0.95rem;
	}

	.search-wrapper {
		flex-direction: column;
	}

	.search-btn {
		width: 100%;
		padding: 1rem;
		font-size: 1rem;
	}

	.search-input {
		font-size: 1rem !important;
		padding: 1rem !important;
	}

	.container {
		padding: 1rem;
	}

	.page-header {
		margin-bottom: 1.5rem;
	}

	.login-card {
		padding: 1.5rem;
	}

	.release-poster {
		width: 50px;
		height: 75px;
	}

	/* Tables on mobile */
	.table thead th {
		padding: 0.75rem 0.5rem !important;
		font-size: 0.7rem;
	}

	.table tbody td {
		padding: 0.75rem 0.5rem !important;
		font-size: 0.85rem;
	}

	.table .btn-sm {
		padding: 0.5rem 0.75rem;
		font-size: 0.8rem;
	}

	/* Cards on mobile */
	.list-group-item {
		padding: 1rem;
	}

	.release-info h5 {
		font-size: 0.95rem;
	}

	.release-source,
	.release-date {
		font-size: 0.8rem;
	}

	/* Alerts on mobile */
	.alert {
		padding: 0.75rem 1rem;
		font-size: 0.85rem;
	}

	/* Better touch targets */
	.btn {
		min-height: 44px;
	}

	.nav-link {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	/* Progress bar on mobile */
	.progress {
		height: 8px;
	}

	/* Update cards on mobile */
	.update-card {
		padding: 1rem;
	}

	.update-title {
		font-size: 0.95rem;
	}

	.update-description {
		font-size: 0.85rem;
	}

	/* Download status on mobile */
	.download-status {
		font-size: 0.75rem;
		padding: 0.2rem 0.5rem;
	}

	.download-speed {
		font-size: 0.7rem;
	}

	/* Section headers */
	h3 {
		font-size: 1.25rem;
	}

	/* Gap and margin adjustments */
	.gap-3 {
		gap: 0.75rem;
	}

	.mb-4 {
		margin-bottom: 1rem !important;
	}

	.mb-5 {
		margin-bottom: 1.5rem !important;
	}
}

/* Extra small devices */
@media (max-width: 375px) {
	.page-title {
		font-size: 1.5rem;
	}

	.container {
		padding: 0.75rem;
	}

	.table thead th {
		font-size: 0.65rem;
		padding: 0.5rem 0.25rem !important;
	}

	.table tbody td {
		font-size: 0.8rem;
		padding: 0.5rem 0.25rem !important;
	}

	.btn-sm {
		padding: 0.4rem 0.6rem;
		font-size: 0.75rem;
	}
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeIn 0.3s ease-out;
}

/* Hide elements */
.d-none {
	display: none !important;
}

@media (min-width: 768px) {
	.d-sm-table-cell {
		display: table-cell !important;
	}
}

/* Download Status */
.download-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 500;
}

.download-status.complete {
	background: rgba(16, 185, 129, 0.15);
	color: var(--success) !important;
}

.download-status.downloading {
	background: rgba(99, 102, 241, 0.15);
	color: var(--accent) !important;
}

.download-speed {
	font-size: 0.8rem;
	color: var(--text-dark) !important;
	margin-top: 0.25rem;
	display: block;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.d-block {
	display: block !important;
}

.fw-bold {
	font-weight: 700 !important;
}

/* Torrent table mobile layout */
.torrent-title {
	word-break: break-word;
	line-height: 1.4;
}

.torrent-size {
	font-size: 0.75rem;
	margin-top: 0.25rem;
}

.btn-download {
	white-space: nowrap;
	padding: 0.5rem 0.75rem !important;
}

@media (max-width: 576px) {
	.btn-download {
		padding: 0.6rem 0.8rem !important;
		min-width: 44px;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

/* Footer */
.site-footer {
	background: var(--bg-darker);
	border-top: 1px solid var(--border);
	padding: 1.5rem 0;
	margin-top: 3rem;
	text-align: center;
}

.site-footer p {
	margin: 0;
	color: var(--text-dark);
	font-size: 0.9rem;
}

.site-footer .heart {
	color: #ef4444;
	animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}

/* ===========================================
   🎄 CHRISTMAS THEME (December Only)
   =========================================== */

.christmas-theme {
	/* Festive color overrides */
	--accent: #dc2626;
	--accent-hover: #b91c1c;
	--accent-light: #f87171;
	--christmas-green: #22c55e;
	--christmas-gold: #fbbf24;
}

/* Subtle snow background */
.christmas-theme::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9999;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='white' opacity='0.3'/%3E%3C/svg%3E"),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='25' cy='75' r='1.5' fill='white' opacity='0.2'/%3E%3C/svg%3E"),
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='75' cy='25' r='1' fill='white' opacity='0.25'/%3E%3C/svg%3E");
	background-size: 80px 80px, 120px 120px, 60px 60px;
	animation: snowfall 20s linear infinite;
	opacity: 0.6;
}

@keyframes snowfall {
	0% {
		background-position: 0 0, 0 0, 0 0;
	}
	100% {
		background-position: 80px 800px, -120px 1200px, 60px 600px;
	}
}

/* Santa hat on the logo - using CSS */
.christmas-theme .navbar-brand {
	position: relative;
}

.christmas-theme .navbar-brand::before {
	content: "🎅";
	position: absolute;
	top: -12px;
	left: -5px;
	font-size: 1.2rem;
	transform: rotate(-15deg);
	z-index: 10;
}

/* Festive glow on buttons */
.christmas-theme .btn-primary {
	background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
	box-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
}

.christmas-theme .btn-primary:hover {
	box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
}

/* Green accent for success states */
.christmas-theme .text-success,
.christmas-theme .download-status.complete {
	color: var(--christmas-green) !important;
}

.christmas-theme .download-status.complete {
	background: rgba(34, 197, 94, 0.15) !important;
}

/* Festive navbar border */
.christmas-theme .navbar {
	border-bottom: 2px solid;
	border-image: linear-gradient(90deg, #dc2626, #22c55e, #dc2626) 1;
}

/* Progress bar festive colors */
.christmas-theme .progress-bar {
	background: linear-gradient(90deg, #dc2626, #22c55e) !important;
}

/* Card festive touch */
.christmas-theme .card,
.christmas-theme .list-group-item,
.christmas-theme .table-wrapper {
	border-color: rgba(220, 38, 38, 0.2) !important;
}

/* Login page festive */
.christmas-theme .login-logo i {
	color: #dc2626 !important;
}

.christmas-theme .login-card {
	border: 1px solid rgba(220, 38, 38, 0.3);
	box-shadow: 0 0 30px rgba(220, 38, 38, 0.1);
}

/* Page title festive */
.christmas-theme .page-title i {
	color: #dc2626 !important;
}

/* Holiday greeting on home page */
.christmas-theme .page-header::after {
	content: "🎄 Happy Holidays! 🎄";
	display: block;
	font-size: 0.85rem;
	color: var(--christmas-green);
	margin-top: 0.5rem;
	opacity: 0.9;
}

/* Mobile optimizations for Christmas theme */
@media (max-width: 768px) {
	/* Reduce snow density on mobile for performance */
	.christmas-theme::before {
		background-size: 120px 120px, 180px 180px, 100px 100px;
		animation-duration: 30s;
		opacity: 0.4;
	}

	/* Smaller Santa emoji on mobile */
	.christmas-theme .navbar-brand::before {
		font-size: 1rem;
		top: -10px;
		left: -3px;
	}

	/* Smaller holiday greeting */
	.christmas-theme .page-header::after {
		font-size: 0.75rem;
	}
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	.christmas-theme::before {
		animation: none;
		opacity: 0.2;
	}
}
