body {
	margin: 0;
	padding: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #111;
	color: #fff;
}

.pix-copy-btn {
	background: #ff0055;
	color: #fff;
	border: none;
	border-radius: 40px;
	padding: 28px 64px;
	font-size: 2.2rem;
	font-weight: bold;
	box-shadow: 0 4px 32px rgba(0,0,0,0.3);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	margin: 20px auto 0 auto;
	display: block;
	width: auto;
	max-width: 90vw;
}
.pix-copy-btn:hover {
	background: #ff3366;
	transform: scale(1.05);
}

.pix-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}
.pix-modal-content {
	background: #222;
	padding: 32px 24px;
	border-radius: 18px;
	box-shadow: 0 8px 48px rgba(0,0,0,0.7);
	text-align: center;
	max-width: 400px;
	width: 90vw;
	color: #fff;
	position: relative;
}
.close-pix-modal {
	position: absolute;
	top: 12px;
	right: 18px;
	font-size: 2rem;
	color: #ff0055;
	cursor: pointer;
	font-weight: bold;
}
.map-section {
	width: 100vw;
	background: #222;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 0 30px 0;
}
.map-title {
	font-size: 2rem;
	margin-bottom: 18px;
	color: #ff0055;
	font-weight: bold;
	letter-spacing: 1px;
}
.map-embed {
	width: 95vw;
	max-width: 1100px;
	min-height: 600px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 32px rgba(0,0,0,0.4);
	margin-bottom: 18px;
}
.map-address {
	font-size: 1.2rem;
	color: #fff;
	background: #181818;
	padding: 10px 24px;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.2);
	margin-top: 8px;
}


.header-video {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: 1;
	filter: brightness(0.7);
}

.header-content {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.buy-ticket {
	background: #ff0055;
	color: #fff;
	border: none;
	border-radius: 40px;
	padding: 28px 64px;
	font-size: 2.2rem;
	font-weight: bold;
	box-shadow: 0 4px 32px rgba(0,0,0,0.3);
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
	margin-bottom: 20px;
}
.buy-ticket:hover {
	background: #ff3366;
	transform: scale(1.05);
}


.bio-carousel {
	width: 100vw;
	padding: 40px 0 20px 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.bio-grid {
	display: flex;
	gap: 48px;
	width: 100vw;
	max-width: 900px;
	justify-content: center;
}
.bio-col {
	display: flex;
	flex-direction: column;
	gap: 48px;
	flex: 1;
}
.bio-col-right {
	margin-top: 80px;
}
.bio-img {
	max-width: 380px;
	width: 90vw;
	border-radius: 28px;
	box-shadow: 0 4px 32px rgba(0,0,0,0.4);
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s;
	aspect-ratio: 9/16;
	object-fit: cover;
}
.bio-img:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}
.bio-img.expanded {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.0);
	width: 100vw;
	max-width: 100vw;
	height: 100vh;
	max-height: 100vh;
	z-index: 9999;
	border-radius: 0;
	box-shadow: 0 0 0 2000px rgba(0,0,0,0.85);
	object-fit: cover;
	cursor: pointer;
}

.poster-section {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.poster-img {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	border-radius: 0;
	box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.footer {
	width: 100vw;
	color: #fff;
	text-align: center;
	padding: 24px 0 12px 0;
	font-size: 1.1rem;
	letter-spacing: 1px;
	margin-top: 0;
}

@media (max-width: 600px) {
	.pix-modal-content {
		max-width: 98vw;
		width: 98vw;
		min-width: 0;
		min-height: 60vh;
		padding: 24px 8px;
		font-size: 1.3rem;
		border-radius: 12px;
		box-shadow: 0 8px 48px rgba(0,0,0,0.7);
	}
	#pix-qr-container img {
		max-width: 520px;
		width: 90vw;
		height: auto;
		margin: 24px auto;
		display: block;
	}
	#pix-copy-code {
		font-size: 1.2rem;
		word-break: break-all;
		margin-bottom: 12px;
		text-align: center;
	}
	.pix-copy-btn {
		font-size: 1.2rem;
		padding: 16px 0;
		width: 90vw;
		max-width: 90vw;
		margin: 12px auto 0 auto;
		display: block;
		border-radius: 8px;
	}
	.pix-modal-title{
		font-size: 2.2em;
		margin-bottom: 28px;
		text-align: center;
	}
}