@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap&subset=latin-ext");

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
	min-height: 100vh;
	background: #f5f5f5;
}

/* Main container */
.container {
	display: flex;
	min-height: 100vh;
}

/* Left section */
.left-section {
	flex: 1;
	padding: 2rem;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
}

/* .logo-ul {
	width: auto;
	height: 40px;
	margin-bottom: 4rem;
}

.logo-pp {
	width: 120px;
	height: 20px;
	margin-bottom: 4rem;
} */

.logo-container {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.warning-content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 480px;
}

.warning-icon {
	width: 64px;
	height: 64px;
	background: #f3f4f6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.warning-icon svg {
	width: 32px;
	height: 32px;
	color: #1a73e8;
}

h1 {
	font-size: 2.5rem;
	color: #1f2937;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

p {
	font-size: 1.125rem;
	color: #6b7280;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.vpn-button {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2rem;
	background: #1a73e8;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
	max-width: fit-content;
}

.vpn-button:hover {
	background: #1557b0;
}

/* Right section */
.right-section {
	flex: 1;
	position: relative;
	overflow: hidden;
}

.background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../gfx/serwery.webp");
	background-size: cover;
	background-position: top right;
}

.glitch-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../gfx/serwery_2.webp");
	background-size: cover;
	background-position: center;
	opacity: 0;
	animation: glitch 4s infinite;
}

@keyframes glitch {
	0% {
		opacity: 0;
		transform: translate(0);
	}
	20% {
		opacity: 0;
	}
	20.1% {
		opacity: 1;
		transform: translate(-5px, 5px);
	}
	20.2% {
		opacity: 0;
		transform: translate(0);
	}
	20.3% {
		opacity: 1;
		transform: translate(5px, -5px);
	}
	20.4% {
		opacity: 0;
		transform: translate(0);
	}
}

/* Responsive design */
@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}

	.right-section {
		min-height: 300px;
		position: relative;
	}

	.left-section {
		padding: 1.5rem;
		min-height: auto;
	}

	.warning-content {
		max-width: 100%;
	}

	h1 {
		font-size: 2rem;
	}

	p {
		font-size: 1rem;
	}

	.logo {
		width: 100px;
		height: 35px;
		margin-bottom: 2rem;
	}

	.background-image,
	.glitch-overlay {
		position: absolute;
	}
}
