
:root {
	--primary-bg: #0a0a0a;
	--secondary-bg: #1a1a1a;
	--card-bg: linear-gradient(145deg, #2a2a2a, #1a1a1a);
	--text-primary: #ffffff;
	--text-secondary: #e0e0e0;
	--text-muted: #a0a0a0;
	--border-color: #333333;
	--shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	--shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.4);
	--primary-color: #007bff;
	--success-color: #28a745;
	--warning-color: #ffc107;
	--danger-color: #dc3545;
	--info-color: #17a2b8;
	--bezs-color: #D2B48C;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: var(--primary-bg);
	color: var(--text-primary);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	font-size: 16px;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Ultrawide monitor support */
@media (min-width: 2560px) {
	.container {
		max-width: 1800px;
	}
}


.navbar {
	background: rgba(10, 10, 10, 0.95) !important;
	backdrop-filter: blur(20px);
	border-bottom: 3px solid #D2B48C;
	padding: 1.5rem 0;
	transition: all 0.3s ease;
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.5rem;
}

.logo-circle {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--danger-color), #b91c1c);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.brand-text {
	background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 800;
}

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

.navbar-nav .nav-link:hover {
	color: var(--text-primary) !important;
	background: rgba(255, 255, 255, 0.05);
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, 
		#D2B48C 0%, 
		#B8860B 50%, 
		#D2B48C 100%);
	background-size: 200% 100%;
	animation: none;
	box-shadow: 
		0 0 6px rgba(210, 180, 140, 0.5),
		0 1px 3px rgba(210, 180, 140, 0.3),
		0 0 10px rgba(184, 134, 11, 0.3);
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
	width: 80%;
}

.navbar-nav .nav-link:hover::after {
	animation: moveStripe 3s linear infinite;
}

.dropdown-menu {
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow);
	border-radius: 12px;
	padding: 0.5rem 0;
}

.dropdown-item {
	color: var(--text-secondary);
	padding: 0.75rem 1.5rem;
	transition: all 0.3s ease;
}

.dropdown-item:hover {
	background: rgba(255, 255, 255, 0.05);
	color: var(--text-primary);
}

.hero-section {
	padding: 4rem 0 2rem 0;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
	border-bottom: 1px solid var(--border-color);
	margin: 0.5rem;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, 
		#D2B48C 0%, 
		#B8860B 50%, 
		#D2B48C 100%);
	background-size: 200% 100%;
	animation: none;
	box-shadow: 
		0 0 12px rgba(210, 180, 140, 0.7),
		0 3px 6px rgba(210, 180, 140, 0.4),
		0 0 20px rgba(184, 134, 11, 0.5);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	z-index: 10;
}

.hero-section:hover::before {
	animation: moveStripe 3s linear infinite;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--text-muted);
	font-weight: 400;
}

.mechanics-preview {
	background: linear-gradient(145deg, rgba(43, 31, 23, 0.9), rgba(39, 32, 25, 0.95));
	border: 2px solid #D2B48C;
	border-radius: 16px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(210, 180, 140, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mechanics-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #D2B48C, #B8860B);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(210, 180, 140, 0.3);
}


.mechanics-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}

.mechanic-avatar {
    position: relative;
    margin-right: -15px;
    transition: transform 0.3s ease, z-index 0.3s ease;
    z-index: 1;
}

.mechanic-avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
}

.mechanic-avatar img,
.mechanic-avatar .avatar-placeholder {
    border: 1px solid var(--card-bg);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(128, 128, 128, 0.4),
        0 0 0 2px rgba(128, 128, 128, 0.2),
        0 0 0 3px rgba(128, 128, 128, 0.1);
}


.mechanic-avatar .position-absolute {
    z-index: 2;
}


.more-mechanics {
    margin-left: -5px;
    z-index: 1;
}

.more-mechanics .badge {
    border: 1px solid var(--card-bg);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(128, 128, 128, 0.4),
        0 0 0 2px rgba(128, 128, 128, 0.2),
        0 0 0 3px rgba(128, 128, 128, 0.1);
}


@media (max-width: 768px) {
    .mechanic-avatar {
        margin-right: -10px;
    }
    
    .more-mechanics {
        margin-left: -2px;
    }
}

@media (max-width: 576px) {
    .mechanic-avatar {
        margin-right: -8px;
    }
    
    .more-mechanics {
        margin-left: 0;
    }
}

.avatar-placeholder {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, var(--secondary-bg), var(--border-color));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	border: 2px solid var(--border-color);
}

.more-mechanics .badge {
	font-size: 0.9rem;
	padding: 0.5rem 0.75rem;
	border-radius: 20px;
}


.hero-actions {
	margin-top: 2rem;
}

.hero-actions .btn {
	padding: 0.75rem 2rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
}


.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	font-weight: 400;
}


.services-section {
	padding: 4rem 0;
	margin: 0 0.5rem;
}


.news-section .service-card {
	min-height: 400px;
	display: flex;
	flex-direction: column;
}

.news-section .service-card .news-content-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-section .service-card .news-description {
	flex: 1;
	margin-bottom: 1rem;
}

.news-section .service-card .full-content {
	flex: 1;
	margin-top: 0.5rem;
}


.news-card {
	min-height: 450px !important;
	display: flex !important;
	flex-direction: column !important;
}

.news-card .news-content {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
}

.news-card .news-text {
	flex: 1 !important;
	display: flex !important;
	flex-direction: column !important;
}

.news-card .news-description {
	flex: 1 !important;
	margin-bottom: 1rem !important;
}

.news-card .full-content {
	flex: 1 !important;
	margin-top: 0.5rem !important;
}

.news-card .edit-form {
	margin-top: auto !important;
}


.service-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}



.service-card.card-sm {
	max-width: 300px;
	padding: 1.5rem;
}

.service-card.card-md {
	max-width: 500px;
	padding: 2.5rem;
}

.service-card.card-lg {
	max-width: 900px;
	padding: 3.5rem;
	min-height: 200px;
}

.service-card.card-xl {
	max-width: 800px;
	padding: 3.5rem;
}

.service-card.card-full {
	max-width: none;
	width: 100%;
}


@media (max-width: 768px) {
	.service-card {
		max-width: 100%;
		padding: 1.5rem;
	}
	
	.service-card.card-sm,
	.service-card.card-md,
	.service-card.card-lg,
	.service-card.card-xl {
		max-width: 100%;
		padding: 1.5rem;
	}
	
	.news-section .service-card {
		min-height: 350px;
	}
}

.about-page .service-card.card-lg {
	max-width: 100%;
	width: 100%;
}

.about-page .accordion {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-page .accordion .service-card {
	width: 100%;
	max-width: 100%;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-page .accordion .accordion-header {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	height: 100%;
}

.about-page .accordion .accordion-button {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
}

.about-page .accordion .accordion-item {
	width: 100%;
	display: flex;
	justify-content: center;
}

.about-page .accordion .accordion-item .service-card {
	width: 100%;
	max-width: 900px;
	overflow: hidden;
}

.about-page .accordion .accordion-body {
	padding: 1.5rem !important;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.about-page .accordion .accordion-button .fa-lg {
	font-size: 1.5rem !important;
}

.about-page .accordion .accordion-button .d-flex {
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

.about-page .accordion .accordion-button h5 {
	margin: 0 !important;
	padding: 0 !important;
	text-align: center !important;
}

.about-page .accordion .accordion-button .d-flex {
	width: 100% !important;
	max-width: 100% !important;
	transform: translateX(15px);
}

.about-page .accordion .accordion-button .bg-info,
.about-page .accordion .accordion-button .bg-warning,
.about-page .accordion .accordion-button .bg-success,
.about-page .accordion .accordion-button .bg-primary {
	margin: 0 !important;
	width: 70px !important;
	height: 70px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}



.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, 
		#D2B48C 0%, 
		#B8860B 50%, 
		#D2B48C 100%);
	background-size: 200% 100%;
	animation: moveStripe 3s linear infinite;
	box-shadow: 
		0 0 8px rgba(210, 180, 140, 0.6),
		0 2px 4px rgba(210, 180, 140, 0.3),
		0 0 15px rgba(184, 134, 11, 0.4);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 10;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
	opacity: 1;
}

.service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #D2B48C, #B8860B);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: 0 6px 20px rgba(210, 180, 140, 0.3);
}

.service-icon i {
	font-size: 2rem;
	color: white;
}

.service-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1rem;
	text-align: center;
}

.service-description {
	color: var(--text-muted);
	text-align: center;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.service-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.feature-badge {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-secondary);
	padding: 0.25rem 0.75rem;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid var(--border-color);
}

.features-section {
	background: rgba(26, 26, 26, 0.5);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	padding: 4rem 0;
	margin: 0 0.5rem;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.features-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, 
		#D2B48C 0%, 
		#B8860B 50%, 
		#D2B48C 100%);
	background-size: 200% 100%;
	animation: none;
	box-shadow: 
		0 0 8px rgba(210, 180, 140, 0.6),
		0 2px 4px rgba(210, 180, 140, 0.3),
		0 0 15px rgba(184, 134, 11, 0.4);
	z-index: 10;
}

.features-section:hover::before {
	animation: moveStripe 3s linear infinite;
}

.feature-item {
	padding: 2rem 1rem;
	max-width: 300px;
	margin: 0 auto;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #D2B48C, #B8860B);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: 0 4px 15px rgba(210, 180, 140, 0.3);
}

.feature-icon i {
	font-size: 1.5rem;
	color: white;
}

.feature-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.feature-text {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.cta-section {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
	border-top: 1px solid var(--border-color);
	padding: 4rem 0;
	margin: 0 0.5rem 0.5rem 0.5rem;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, 
		#D2B48C 0%, 
		#B8860B 50%, 
		#D2B48C 100%);
	background-size: 200% 100%;
	animation: none;
	box-shadow: 
		0 0 12px rgba(210, 180, 140, 0.7),
		0 3px 6px rgba(210, 180, 140, 0.4),
		0 0 20px rgba(184, 134, 11, 0.5);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	z-index: 10;
}

.cta-section:hover::before {
	animation: moveStripe 3s linear infinite;
}

.cta-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-primary);
}

.cta-text {
	font-size: 1.1rem;
	color: var(--text-muted);
}

.cta-buttons .btn {
	padding: 0.75rem 2rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.btn {
	border-radius: 12px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	padding: 0.75rem 1.5rem;
}

.btn-sm {
	padding: 0.375rem 0.75rem;
	font-size: 0.875rem;
}

.text-overlay {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.text-overlay::before {
	content: '';
	position: absolute;
	top: -0.25rem;
	left: -0.5rem;
	right: -0.5rem;
	bottom: -0.25rem;
	background: linear-gradient(135deg, 
		rgba(0, 0, 0, 0.3) 0%, 
		rgba(0, 0, 0, 0.2) 50%, 
		rgba(0, 0, 0, 0.1) 100%) !important;
	border-radius: 6px !important;
	backdrop-filter: blur(8px) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
	z-index: -1;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.text-overlay:hover::before {
	opacity: 1;
	background: linear-gradient(135deg, 
		rgba(0, 0, 0, 0.4) 0%, 
		rgba(0, 0, 0, 0.3) 50%, 
		rgba(0, 0, 0, 0.2) 100%) !important;
}

.text-overlay h1,
.text-overlay h2,
.text-overlay h3,
.text-overlay h4,
.text-overlay h5,
.text-overlay h6,
.text-overlay p {
	position: relative;
	z-index: 2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Megtartjuk az eredeti színeket a text-overlay-en belül */
.text-overlay .hero-title {
	background: linear-gradient(135deg, var(--text-primary), var(--text-secondary)) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
}

.text-overlay .hero-subtitle {
	color: var(--text-muted) !important;
}

/* Külön overlay a főoldal hero szövegének */
.hero-text-overlay {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero-text-overlay::before {
	content: '';
	position: absolute;
	top: -0.25rem;
	left: -0.5rem;
	right: -0.5rem;
	bottom: 0;
	background: linear-gradient(135deg, 
		rgba(0, 0, 0, 0.3) 0%, 
		rgba(0, 0, 0, 0.2) 50%, 
		rgba(0, 0, 0, 0.1) 100%) !important;
	border-radius: 12px !important;
	border: 2px solid rgba(255, 255, 255, 0.1) !important;
	backdrop-filter: blur(8px) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important, inset 0 1px 0 rgba(255, 255, 255, 0.1) !important, 0 0 20px rgba(255, 193, 7, 0.1) !important;
	z-index: -1;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.hero-text-overlay .hero-title {
	background: linear-gradient(135deg, var(--text-primary), var(--text-secondary)) !important;
	-webkit-background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	background-clip: text !important;
	position: relative;
	z-index: 2;
}

.hero-text-overlay .hero-subtitle {
	color: var(--text-muted) !important;
	position: relative;
	z-index: 2;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.btn:hover::before {
	left: 100%;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), #0056b3);
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
	background: linear-gradient(135deg, #0056b3, #004085);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
	transform: translateY(-2px);
}

.btn-success {
	background: linear-gradient(135deg, var(--success-color), #1e7e34);
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
	background: linear-gradient(135deg, #1e7e34, #155724);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
	transform: translateY(-2px);
}

.btn-warning {
	background: linear-gradient(135deg, var(--warning-color), #e0a800);
	box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
	color: #212529;
}

.btn-warning:hover {
	background: linear-gradient(135deg, #e0a800, #c69500);
	box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
	transform: translateY(-2px);
}

.btn-outline-primary {
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	background: transparent;
}

.btn-outline-primary:hover {
	background: var(--primary-color);
	color: white;
	transform: translateY(-2px);
}

.btn-outline-light {
	border: 2px solid var(--text-secondary);
	color: var(--text-secondary);
	background: transparent;
}

.btn-outline-light:hover {
	background: var(--text-secondary);
	color: var(--primary-bg);
	transform: translateY(-2px);
}

.footer {
	background: linear-gradient(135deg, var(--secondary-bg), var(--primary-bg));
	border-top: 1px solid var(--border-color);
	margin-top: 3rem;
}

.footer .logo-circle {
	background: linear-gradient(135deg, var(--warning-color), #e0a800);
}

@media (max-width: 768px) {
	.container {
		padding: 0 0.25rem;
	}
	
	.hero-section,
	.services-section,
	.features-section,
	.cta-section {
		margin: 0 0.25rem;
		border-radius: 15px;
	}
	
	.hero-title {
		font-size: 2.5rem;
		letter-spacing: 0.08em;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.hero-actions .btn {
		display: block;
		width: 100%;
		margin-bottom: 1rem;
	}
	
	.cta-buttons .btn {
		display: block;
		width: 100%;
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 0.125rem;
	}
	
	.hero-section,
	.services-section,
	.features-section,
	.cta-section {
		margin: 0 0.125rem;
		border-radius: 12px;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes moveStripe {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.animated-stripe {
	position: relative;
	overflow: hidden;
}

.animated-stripe::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, 
		#dc3545 0%, 
		#e63946 20%, 
		#f77f00 40%, 
		#ffc107 50%, 
		#f77f00 60%, 
		#e63946 80%, 
		#dc3545 100%);
	background-size: 200% 100%;
	animation: moveStripe 3s linear infinite;
	box-shadow: 
		0 0 8px rgba(220, 53, 69, 0.6),
		0 2px 4px rgba(220, 53, 69, 0.3),
		0 0 15px rgba(255, 193, 7, 0.4);
	z-index: 10;
}

.service-card,
.feature-item {
	animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

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

::-webkit-scrollbar-track {
	background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
	background: var(--border-color);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--text-muted);
}

.tooltip .tooltip-inner {
	background: rgba(26, 26, 26, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow);
	border-radius: 8px;
}

.tooltip .tooltip-arrow::before {
	border-top-color: rgba(26, 26, 26, 0.95);
}


.auth-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 3rem 2rem;
	margin: 2rem auto;
	max-width: 500px;
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
}

.auth-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, 
		#D2B48C 0%, 
		#B8860B 50%, 
		#D2B48C 100%);
	background-size: 200% 100%;
	animation: moveStripe 3s linear infinite;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	z-index: 10;
}

.auth-header {
	margin-bottom: 2rem;
}

.auth-logo {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--bezs-color), #C4A678);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	box-shadow: 0 6px 20px rgba(210, 180, 140, 0.3);
}

.auth-logo i {
	color: #000;
	font-size: 2.5rem;
}

.auth-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.auth-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 0;
}

.auth-form {
	margin-top: 2rem;
}

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

.form-label {
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-size: 1rem;
}

.auth-input {
	background: rgba(10, 10, 10, 0.8);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	color: var(--text-primary);
	padding: 1rem 1.25rem;
	font-size: 1rem;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.auth-input:focus {
	background: rgba(10, 10, 10, 0.9);
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
	color: var(--text-primary);
	outline: none;
}

.auth-input::placeholder {
	color: var(--text-muted);
}

.password-field {
	position: relative;
}

.password-field .auth-input {
	padding-right: 3.5rem;
}

.password-toggle {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--text-muted);
	font-size: 1.1rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 6px;
	transition: all 0.3s ease;
	z-index: 10;
}

.password-toggle:hover {
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.1);
}

.password-toggle.active {
	color: var(--primary-color);
}

.password-toggle:focus {
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.auth-btn {
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: none;
	position: relative;
	overflow: hidden;
}

.auth-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.auth-btn:hover::before {
	left: 100%;
}

.auth-btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.auth-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.auth-link:hover {
	color: var(--text-primary);
	background: rgba(0, 123, 255, 0.1);
	text-decoration: none;
}

@media (max-width: 768px) {
	.auth-card {
		margin: 1rem;
		padding: 2rem 1.5rem;
	}
	
	.auth-title {
		font-size: 2rem;
	}
	
	.auth-logo {
		width: 60px;
		height: 60px;
	}
	
	.auth-logo i {
		font-size: 2rem;
	}
}


.admin-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

.admin-header {
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.95));
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 2rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(20px);
	box-shadow: var(--shadow);
	position: relative !important;
	overflow: hidden !important;
}

.admin-title {
	font-size: 2.5rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.admin-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
}



.admin-header .btn {
	font-size: 0.9rem !important;
	padding: 0.75rem 1.25rem !important;
	border-radius: 8px !important;
	font-weight: 600 !important;
	transition: all 0.3s ease !important;
	white-space: nowrap !important;
}

.admin-header .btn:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

.admin-nav-tabs {
	background: rgba(26, 26, 26, 0.7);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 1rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.admin-nav-tabs .btn {
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
	border-radius: 12px;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	transition: all 0.3s ease;
}

.admin-nav-tabs .btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.admin-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.admin-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.admin-card-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 1.5rem;
	border-bottom: 2px solid var(--border-color);
	padding-bottom: 0.75rem;
}

.admin-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.admin-grid-item {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	backdrop-filter: blur(10px);
}

.admin-grid-item:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-hover);
	border-color: var(--primary-color);
}

.admin-grid-item i {
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #D2B48C, #B8860B);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.admin-grid-item h5 {
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.admin-grid-item p {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.admin-form {
	background: rgba(26, 26, 26, 0.5);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.admin-form .form-label {
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.admin-form .form-control,
.admin-form .form-select {
	background: rgba(10, 10, 10, 0.8);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	color: var(--text-primary);
	padding: 0.75rem 1rem;
	transition: all 0.3s ease;
}

.admin-form .form-control:focus,
.admin-form .form-select:focus {
	background: rgba(10, 10, 10, 0.9);
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
	color: var(--text-primary);
}

.admin-form .form-control::placeholder {
	color: var(--text-muted);
}

.admin-table {
	background: rgba(26, 26, 26, 0.7);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.admin-table .table {
	margin-bottom: 0;
	color: var(--text-primary);
}

.admin-table .table th {
	background: rgba(10, 10, 10, 0.8);
	border-bottom: 2px solid var(--border-color);
	color: var(--text-primary);
	font-weight: 600;
	padding: 1rem;
}

.admin-table .table td {
	border-bottom: 1px solid var(--border-color);
	padding: 1rem;
	vertical-align: middle;
}

.table-sticky thead th {
	position: sticky;
	top: 0;
	background: rgba(10, 10, 10, 0.95) !important;
	z-index: 3;
}

.table-sticky .sticky-col {
	position: sticky;
	left: 0;
	background: rgba(26, 26, 26, 0.9) !important;
	backdrop-filter: blur(8px);
	box-shadow: inset -1px 0 0 var(--border-color);
	z-index: 2;
}

.progress-modern {
	width: 100%;
	height: 8px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	overflow: hidden;
}

.progress-modern-bar {
	height: 100%;
	background: linear-gradient(90deg, #28a745, #ffc107);
	box-shadow: 0 0 10px rgba(40, 167, 69, 0.4);
	transition: width 0.6s ease;
}

.admin-table .table tbody tr {
	background: rgba(26, 26, 26, 0.5) !important;
	color: var(--text-primary) !important;
	transition: background-color 0.3s ease;
}

.admin-table .table tbody tr:hover {
	background: rgba(255, 255, 255, 0.05) !important;
}

.admin-table .table tbody tr.table-row-dark {
	background: rgba(26, 26, 26, 0.7) !important;
}

.admin-table .table tbody tr.table-row-dark:hover {
	background: rgba(255, 255, 255, 0.08) !important;
}

.admin-table .table tbody tr:nth-child(odd),
.admin-table .table tbody tr:nth-child(even) {
	background: rgba(26, 26, 26, 0.7) !important;
}

.admin-table .table tbody tr:nth-child(odd):hover,
.admin-table .table tbody tr:nth-child(even):hover {
	background: rgba(255, 255, 255, 0.08) !important;
}

.admin-table .table tbody tr,
.admin-table .table tbody tr.table-striped,
.admin-table .table tbody tr.table-striped > td,
.admin-table .table tbody tr.table-striped > th {
	background-color: rgba(26, 26, 26, 0.7) !important;
	color: var(--text-primary) !important;
}

.admin-table .table tbody tr:hover,
.admin-table .table tbody tr.table-striped:hover,
.admin-table .table tbody tr.table-striped:hover > td,
.admin-table .table tbody tr.table-striped:hover > th {
	background-color: rgba(255, 255, 255, 0.08) !important;
}

.admin-table .table.table-dark tbody tr,
.admin-table .table.table-dark tbody tr:nth-child(odd),
.admin-table .table.table-dark tbody tr:nth-child(even),
.admin-table .table.table-dark tbody tr.table-row-dark {
	background-color: rgba(26, 26, 26, 0.7) !important;
	color: var(--text-primary) !important;
}

.admin-table .table.table-dark tbody tr:hover,
.admin-table .table.table-dark tbody tr:nth-child(odd):hover,
.admin-table .table.table-dark tbody tr:nth-child(even):hover,
.admin-table .table.table-dark tbody tr.table-row-dark:hover {
	background-color: rgba(255, 255, 255, 0.08) !important;
}

.admin-table .table tbody tr,
.admin-table .table tbody tr:nth-child(odd),
.admin-table .table tbody tr:nth-child(even),
.admin-table .table tbody tr.table-row-dark,
.admin-table .table.table-dark tbody tr,
.admin-table .table.table-dark tbody tr:nth-child(odd),
.admin-table .table.table-dark tbody tr:nth-child(even),
.admin-table .table.table-dark tbody tr.table-row-dark {
	background-color: rgba(26, 26, 26, 0.7) !important;
	color: var(--text-primary) !important;
}

.admin-table .table.table-dark,
.admin-table .table.table-dark tbody,
.admin-table .table.table-dark tbody tr,
.admin-table .table.table-dark tbody tr:nth-child(odd),
.admin-table .table.table-dark tbody tr:nth-child(even),
.admin-table .table.table-dark tbody tr.table-row-dark,
.admin-table .table.table-dark tbody tr.table-striped,
.admin-table .table.table-dark tbody tr.table-striped > td,
.admin-table .table.table-dark tbody tr.table-striped > th {
	background-color: rgba(26, 26, 26, 0.7) !important;
	color: var(--text-primary) !important;
	border-color: var(--border-color) !important;
}

.admin-table .table.table-dark tbody tr:hover,
.admin-table .table.table-dark tbody tr:nth-child(odd):hover,
.admin-table .table.table-dark tbody tr:nth-child(even):hover,
.admin-table .table.table-dark tbody tr.table-row-dark:hover,
.admin-table .table.table-dark tbody tr.table-striped:hover,
.admin-table .table.table-dark tbody tr.table-striped:hover > td,
.admin-table .table.table-dark tbody tr.table-striped:hover > th {
	background-color: rgba(255, 255, 255, 0.08) !important;
}

.admin-table .table.table-dark tbody tr[style*="background-color"] {
	background-color: rgba(26, 26, 26, 0.7) !important;
	color: var(--text-primary) !important;
}

.admin-table .table tbody tr:hover,
.admin-table .table tbody tr:nth-child(odd):hover,
.admin-table .table tbody tr:nth-child(even):hover,
.admin-table .table tbody tr.table-row-dark:hover,
.admin-table .table.table-dark tbody tr:hover,
.admin-table .table.table-dark tbody tr:nth-child(odd):hover,
.admin-table .table.table-dark tbody tr:nth-child(even):hover,
.admin-table .table.table-dark tbody tr.table-row-dark:hover {
	background-color: rgba(255, 255, 255, 0.08) !important;
}

.admin-table .table {
	margin-bottom: 0;
	color: var(--text-primary);
}

.admin-table .table th {
	background: rgba(10, 10, 10, 0.8);
	border-bottom: 2px solid var(--border-color);
	color: var(--text-primary);
	font-weight: 600;
	padding: 1rem;
}

.admin-table .table td {
	border-bottom: 1px solid var(--border-color);
	padding: 1rem;
	vertical-align: middle;
}

.admin-table .table tbody tr:hover {
	background: rgba(255, 255, 255, 0.02);
}

.admin-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.admin-stat-card {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.admin-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

.admin-stat-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
	color: white;
}

.admin-stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.admin-stat-label {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 500;
}

.week-selection {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.week-day-btn {
	border-radius: 12px;
	font-weight: 600;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.week-day-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.week-day-btn.active {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

@media (max-width: 1200px) {
	.admin-container {
		padding: 1.5rem 0.75rem;
	}
	
	.admin-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 1.5rem;
	}
}

@media (max-width: 768px) {
	.admin-container {
		padding: 1rem 0.5rem;
	}
	
	.admin-header {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}
	

	
	.admin-title {
		font-size: 2rem;
	}
	
	.admin-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.admin-nav-tabs .btn {
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.5rem;
	}
	
	.week-selection {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.admin-container {
		padding: 0.75rem 0.25rem;
	}
	
	.admin-header {
		padding: 1rem;
		border-radius: 16px;
	}
	

	
	.admin-header .btn {
		padding: 0.5rem 1rem !important;
		font-size: 0.8rem !important;
	}
	
	.admin-title {
		font-size: 1.75rem;
	}
	
	.admin-card {
		padding: 1.5rem;
	}
	
	.admin-form {
		padding: 1.5rem;
	}
}

.flash-messages-container {
	position: fixed;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 500px;
	z-index: 9999;
}

.alert {
	border: none;
	border-radius: 12px;
	padding: 0.75rem 3rem 0.75rem 1rem;
	margin: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	position: relative;
	overflow: visible;
	max-width: 500px;
	width: 90%;
	animation: slideDown 0.6s ease-out, alertFadeOut 5.5s ease-in-out 0.6s forwards;
	text-align: center;
	font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.5px;
}

@keyframes slideDown {
	0% {
		transform: translateY(-100px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideUp {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	100% {
		transform: translateY(-100px);
		opacity: 0;
	}
}

.alert::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -6px;
	right: -2px;
	bottom: -4px;
	border: 4px solid var(--alert-border-color);
	border-radius: 16px;
	background: transparent;
	animation: neonPulse 2s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
	opacity: 0.3;
}

@keyframes neonPulse {
	0%, 100% {
		opacity: 0.2;
		filter: drop-shadow(0 0 4px var(--alert-border-color)) 
				drop-shadow(0 0 8px var(--alert-border-color));
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		filter: drop-shadow(0 0 6px var(--alert-border-color)) 
				drop-shadow(0 0 12px var(--alert-border-color));
		transform: scale(1.01);
	}
}

@keyframes alertFadeOut {
	0%, 80% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(0.95);
		visibility: hidden;
	}
}

.alert:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.alert-danger {
	background: linear-gradient(135deg, rgba(220, 53, 69, 0.95), rgba(184, 28, 28, 0.95));
	color: white;
	border-left: 4px solid #dc3545;
	--alert-border-color: rgba(139, 0, 0, 0.9);
}

.alert-success {
	background: linear-gradient(135deg, rgba(40, 167, 69, 0.95), rgba(30, 126, 52, 0.95));
	color: white;
	border-left: 4px solid #28a745;
	--alert-border-color: rgba(0, 100, 0, 0.9);
}

.alert-warning {
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.95), rgba(224, 168, 0, 0.95));
	color: #212529;
	border-left: 4px solid #ffc107;
	--alert-border-color: rgba(184, 134, 11, 0.9);
}

.alert-info {
	background: linear-gradient(135deg, rgba(23, 162, 184, 0.95), rgba(17, 122, 139, 0.95));
	color: white;
	border-left: 4px solid #17a2b8;
	--alert-border-color: rgba(0, 100, 100, 0.9);
}

.alert .btn-close {
	filter: brightness(0) invert(1);
	opacity: 0.8;
	transition: opacity 0.3s ease;
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	z-index: 3;
}

.alert .btn-close:hover {
	opacity: 1;
}

.alert-warning .btn-close {
	filter: none;
}

.alert.fade {
	transition: opacity 0.3s ease;
}

.alert.fade.show {
	opacity: 1;
}

.modal {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	z-index: 9999 !important;
	display: none;
	overflow-x: hidden;
	overflow-y: auto;
	outline: 0;
	background-color: rgba(0, 0, 0, 0.5) !important;
}

.modal.show {
	display: block !important;
}

.modal.fade .modal-dialog {
	transform: translate(0, -50px);
	transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
	transform: none;
}

.modal-dialog {
	max-width: 500px !important;
	margin: 2rem auto !important;
	position: relative;
	pointer-events: auto;
}

.modal-content {
	background: var(--card-bg) !important;
	border: 1px solid var(--border-color) !important;
	border-radius: 16px !important;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
	color: var(--text-primary) !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	position: relative !important;
	overflow: hidden !important;
	pointer-events: auto !important;
}

.modal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, 
		#D2B48C 0%, 
		#B8860B 50%, 
		#D2B48C 100%);
	background-size: 200% 100%;
	animation: moveStripe 3s linear infinite;
	z-index: 10;
}

.modal-header {
	border-bottom: 1px solid var(--border-color) !important;
	padding: 1.5rem !important;
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
}

.modal-footer {
	border-top: 1px solid var(--border-color) !important;
	padding: 1.5rem !important;
	display: flex !important;
	justify-content: flex-end !important;
	gap: 0.5rem !important;
}

.modal-body {
	padding: 1.5rem !important;
}

.modal-title {
	color: var(--text-primary) !important;
	font-weight: 700 !important;
	margin: 0 !important;
}

.btn-close-white {
	filter: brightness(0) invert(1) !important;
	opacity: 0.8 !important;
	padding: 0.5rem !important;
	background: transparent !important;
	border: none !important;
	position: relative !important;
	right: auto !important;
	top: auto !important;
	z-index: 5 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	margin-left: auto !important;
}

.btn-close-white:hover {
	opacity: 1 !important;
	transform: scale(1.1) !important;
}

.modal .form-control {
	background: rgba(10, 10, 10, 0.8) !important;
	border: 1px solid var(--border-color) !important;
	border-radius: 8px !important;
	color: var(--text-primary) !important;
	padding: 0.75rem 1rem !important;
	transition: all 0.3s ease !important;
}

.modal .form-control:focus {
	background: rgba(10, 10, 10, 0.9) !important;
	border-color: var(--primary-color) !important;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25) !important;
	color: var(--text-primary) !important;
}

.modal .form-label {
	color: var(--text-primary) !important;
	font-weight: 600 !important;
	margin-bottom: 0.5rem !important;
}

.modal .btn {
	border-radius: 8px !important;
	font-weight: 600 !important;
	padding: 0.75rem 1.5rem !important;
	transition: all 0.3s ease !important;
	border: none !important;
	cursor: pointer !important;
}

.modal .btn:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 575.98px) {
	.modal-dialog {
		margin: 1rem !important;
		max-width: calc(100% - 2rem) !important;
	}
	
	.modal-content {
		max-height: 90vh !important;
		overflow-y: auto !important;
	}
	
	.modal-footer {
		flex-direction: column !important;
		gap: 0.5rem !important;
	}
	
	.modal-footer .btn {
		width: 100% !important;
		margin: 0 !important;
	}
}

@media (max-width: 768px) {
	.alert {
		margin: 0;
		padding: 0.625rem 0.875rem;
		max-width: 90%;
		width: 95%;
	}
}

.name-rank-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
}

.name-rank-container .card-title {
	margin-bottom: 0 !important;
	line-height: 1.2;
}

.name-rank-container p {
	margin-bottom: 0 !important;
	line-height: 1.1;
}

/* Custom btn-bezs button */
.btn-bezs {
	color: #000 !important;
	background-color: var(--bezs-color) !important;
	border-color: var(--bezs-color) !important;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(210, 180, 140, 0.3);
}

.btn-bezs:hover {
	color: #000 !important;
	background-color: #C4A678 !important;
	border-color: #C4A678 !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(210, 180, 140, 0.5);
}

.btn-bezs:focus,
.btn-bezs.focus {
	color: #000 !important;
	background-color: #C4A678 !important;
	border-color: #C4A678 !important;
	box-shadow: 0 0 0 0.2rem rgba(210, 180, 140, 0.5);
}

.btn-bezs:active,
.btn-bezs.active {
	color: #000 !important;
	background-color: #B8986A !important;
	border-color: #B8986A !important;
	transform: translateY(0);
}

.btn-outline-bezs {
	color: var(--bezs-color) !important;
	border-color: var(--bezs-color) !important;
	background-color: transparent !important;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-outline-bezs:hover {
	color: #000 !important;
	background-color: var(--bezs-color) !important;
	border-color: var(--bezs-color) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(210, 180, 140, 0.3);
}

/* Custom bg-bezs background */
.bg-bezs {
	background-color: var(--bezs-color) !important;
}

/* Custom text-bezs color */
.text-bezs {
	color: var(--bezs-color) !important;
}

/* Login button specific styling */
.btn-login {
	background: linear-gradient(135deg, var(--bezs-color), #C4A678) !important;
	box-shadow: 0 2px 8px rgba(210, 180, 140, 0.2) !important;
	color: #000 !important;
	border: none !important;
}

.btn-login:hover {
	background: linear-gradient(135deg, #C4A678, #B8986A) !important;
	box-shadow: 0 3px 10px rgba(210, 180, 140, 0.3) !important;
	transform: translateY(-2px);
	color: #000 !important;
}

.time-value {
	font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
	font-weight: 500;
	font-size: inherit;
	letter-spacing: 0.5px;
}


