main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Saját video kontrollok*/
.aero-container {
	padding: 15px;
	background: radial-gradient(circle at top, #e0f7ff 0%, #87ceeb 100%);
	border-radius: 15px;
	box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5);
	max-width: 700px;
	margin: 20px auto;
	width: 100%;
	box-sizing: border-box;
}

.video-wrapper {
	position: relative;
	border: 4px solid #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
	aspect-ratio: 16 / 9;
	background: #000;
}

#aero-video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.video-controls {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px); /* Safari támogatás */
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	box-sizing: border-box;
	z-index: 10;
}

.video-time {
	color: white;
	font-weight: bold;
	font-size: 13px;
	white-space: nowrap;
	text-shadow:
		-1px -1px 0 #005588,
		1px -1px 0 #005588,
		-1px 1px 0 #005588,
		1px 1px 0 #005588,
		0px 2px 4px rgba(0, 0, 0, 0.5);
}

.aero-btn {
	min-width: 35px;
	height: 35px;
	border-radius: 50%;
	border: 1px solid #005588;
	background: linear-gradient(
		to bottom,
		#7abcff 0%,
		#4096ee 50%,
		#115ebb 51%,
		#107ce5 100%
	);
	color: white;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.6),
		0 2px 4px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.aero-btn:hover {
	filter: brightness(1.1);
}

.progress-container {
	flex-grow: 1;
	height: 10px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.2);
}

.progress-bar {
	width: 0%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		#fff7ad 0%,
		#f9d423 50%,
		#e0b000 51%,
		#f9d423 100%
	);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.7),
		0 0 10px rgba(249, 212, 35, 0.5);
}

.glass-card {
	max-width: 800px;
	margin: 20px auto;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 100, 200, 0.1);
}

@media (max-width: 480px) {
	.aero-container {
		padding: 10px;
		border-radius: 10px;
	}
	.video-controls {
		gap: 5px;
		padding: 5px;
	}
	.aero-btn {
		min-width: 30px;
		height: 30px;
	}
	.video-time {
		font-size: 11px;
	}
	.glass-card {
		padding: 15px;
		border-radius: 15px;
	}
}

/* Diákjogok Kártya */
.glass-card {
	margin-top: 20px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 20px;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 100, 200, 0.1);
}

.rights-list {
	list-style: none;
	padding: 0;
}

.rights-list li {
	padding: 10px 0;
	color: #004488;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.aero-link-btn {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #e1e1e1 100%);
	border: 1px solid #999;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#legal-title {
	color: #1e40af;
	text-shadow: 1px 1px 0px white;
}
.intro {
	color: #2563eb;
	line-height: 1.4;
	font-weight: 500;
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
	text-shadow:
		-1px -1px 0 #fff,
		1px -1px 0 #fff,
		-1px 1px 0 #fff,
		1px 1px 0 #fff,
		0px 0px 4px rgba(255, 255, 255, 0.8);
}

/*Accordion styles */
.aero-accordion {
	margin: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

details {
	background: rgba(255, 255, 255, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

details[open] {
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 8px 25px rgba(0, 150, 255, 0.1);
}

summary {
	padding: 12px 15px;
	font-weight: bold;
	color: #005588;
	cursor: pointer;
	list-style: none;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.8) 0%,
		rgba(200, 230, 255, 0.4) 100%
	);
	display: flex;
	align-items: center;
	gap: 10px;
	outline: none;
	user-select: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary:hover {
	background: linear-gradient(to bottom, #ffffff 0%, #d0e8ff 100%);
}

.details-content {
	padding: 15px;
	background: rgba(255, 255, 255, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	animation: slideDown 0.3s ease-out;
}

.details-content ul {
	margin: 0;
	padding-left: 20px;
}

.details-content li {
	margin-bottom: 8px;
	color: #333;
	font-size: 0.95rem;
	line-height: 1.4;
}

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

@media (max-width: 600px) {
	.glass-card {
		padding: 15px;
		width: 95%;
		margin: 10px auto;
	}
	summary {
		font-size: 14px;
	}
}
