/* Rawcut Maintenance Mode - Stiller */

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

html, body {
	height: 100%;
	width: 100%;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overscroll-behavior: none;
    font-family: 'Mona Sans', serif !important;
}

body {
	background-color: #1a1a1a;
}

.maintenance-container {
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.maintenance-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}

.maintenance-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 600px;
	padding: 40px;
	animation: fadeInUp 1s ease-out;
}

.maintenance-content h1 {
	font-size: 48px;
	margin-bottom: 30px;
	font-weight: 700;
	letter-spacing: -1px;
}

.maintenance-text {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	opacity: 0.9;
}

.maintenance-login {
	margin-top: 30px;
}

.login-btn {
	display: inline-block;
	padding: 14px 40px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.login-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
	color: white;
	text-decoration: none;
}

.login-btn:active {
	transform: translateY(0);
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
	.maintenance-content {
		padding: 30px 20px;
	}

	.maintenance-content h1 {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.maintenance-text {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.login-btn {
		padding: 12px 30px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.maintenance-container {
		background-attachment: scroll;
	}

	.maintenance-content {
		padding: 20px;
	}

	.maintenance-content h1 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.maintenance-text {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.login-btn {
		padding: 10px 25px;
		font-size: 14px;
	}
}
