/* ============================================
   RESET & BASE STYLES
   ============================================ */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden;
}

body {
	background: #000;
	font-family: 'Special Elite', cursive;
}

a, button, input, textarea {
	user-select: text;
	-webkit-user-select: text;
}

/* ============================================
   PAGE CONTAINER & BACKGROUND
   ============================================ */
.page-container {
	position: fixed;
	top: 10%;
	left: 4%;
	width: 100vw;
	height: 80vh;
	background-image: url('images/poster.png');
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	overflow-y: auto;
	overflow-x: hidden;
}

/* Full-width gradient overlay */
.page-container::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(to right, 
		rgba(0, 0, 0, 1.0) 5%,
		rgba(0, 0, 0, 0.8) 25%,
		rgba(0, 0, 0, 0.6) 45%,
		rgba(0, 0, 0, 0.4) 65%,
		rgba(0, 0, 0, 0) 70%);
	pointer-events: none;
	z-index: 1;
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.content-wrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	min-height: 100vh;
	padding: 20px 10px 40px 10px;
	box-sizing: border-box;
	z-index: 2;
}

/* ============================================
   TITLE SECTION
   ============================================ */
.title-section {
	margin-bottom: 40px;
}

.title-main {
	font-family: 'Frozbite', 'Saira Stencil One', cursive;
	font-size: clamp(1.5rem, 8vw, 64px);
	line-height: 1.2;
	letter-spacing: -1px;
	margin-bottom: 10px;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	text-align: center;
	white-space: nowrap;
	max-width: 100%;
}

.title-sub {
	font-family: 'gongnormal', 'Saira Stencil One', cursive;
	font-size: clamp(0.9rem, 4.5vw, 34px);
	line-height: 1.3;
	letter-spacing: -1.5px;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	text-align: center;
	white-space: nowrap;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
	margin-bottom: 30px;
}

.header {
	font-family: 'gongnormal', 'Saira Stencil One', cursive;
	font-size: 28px;
	line-height: 1.3;
	letter-spacing: -1.5px;
	margin: 50px 0 15px 0;
	color: #86a5c7;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
	text-align: center;
}

.subheader {
	color: #9fd9f7;
	font-weight: bold;
	font-size: 18px;
	margin: 20px 0 8px 0;
	display: block;
	font-family: 'Special Elite', cursive;
	text-align: center;
	padding-top: 10px;
}

.text {
	font-family: 'Special Elite', cursive;
	font-size: 16px;
	line-height: 1.5;
	color: #e0e0e0;
	margin-bottom: 15px;
	text-align: justify;
}

.text ul {
	margin: 10px 0;
	padding-left: 20px;
}

.text li {
	margin-bottom: 8px;
}

.text img {
	display: block;
	height: 80px;
	width: auto;
	margin: 18px auto 8px auto;
}

/* ============================================
   LINKS & BUTTONS
   ============================================ */
.link {
	color: #9fd9f7;
	font-weight: bold;
	text-decoration: underline;
}

.link:hover {
	color: #86a5c7;
}

.button {
	text-align: center;
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding-top: 15px;
	padding-bottom: 10px;
	padding-left: 30px;
	padding-right: 30px;
	background: linear-gradient(135deg, #2f3a45 0%,  #446e90 50%, #4193df 100%);
	color: rgb(255, 255, 255);
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
	font-weight: semibold;
	font-family: 'Special Elite', cursive;
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
	transform: scale(1.05);
	box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
}

/* ============================================
   LANDSCAPE STYLE (width > 700px)
   ============================================ */
@media (min-width: 701px) {
	.page-container {
		position: fixed;
		top: 10%;
		left: 4%;
		width: 100vw;
		height: 80vh;
		background-image: url('images/poster.png');
		background-size: cover;
		background-position: right center;
		background-repeat: no-repeat;
		overflow-y: auto;
		overflow-x: hidden;
		display: block;
		flex-direction: row;
	}
	
	.page-container::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: linear-gradient(to right, 
			rgba(0, 0, 0, 1.0) 5%,
			rgba(0, 0, 0, 0.8) 25%,
			rgba(0, 0, 0, 0.6) 45%,
			rgba(0, 0, 0, 0.4) 65%,
			rgba(0, 0, 0, 0) 70%);
		pointer-events: none;
		z-index: 1;
		display: block;
	}
	
	.page-container::after {
		display: none;
	}
	
	.content-wrapper {
		position: relative;
		width:33%;
		min-height: 100vh;
		padding: 20px 10px 40px 10px;
		box-sizing: border-box;
		z-index: 2;
		background: transparent;
	}
	
	.title-main {
		font-size: clamp(1.5rem, 8vw, 64px);
		text-align: center;
	}
	
	.title-sub {
		font-size: clamp(0.9rem, 4.5vw, 34px);
		text-align: center;
	}
	
	.header {
		font-size: 28px;
		text-align: center;
	}
	
	.text {
		font-size: 16px;
		text-align: justify;
	}
	
	.button {
		display: block;
		width: fit-content;
		margin: 0 auto;
		text-align: center;
	}
}

/* ============================================
   MOBILE / PORTRAIT ORIENTATION
   ============================================ */
@media (orientation: portrait) and (max-width: 700px) {
	.page-container {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		background: #000;
		background-image: none;
	}
	
	.page-container::before {
		display: none;
	}
	
	/* Image container with equal padding above and below (cinema stripe) */
	.page-container::after {
		content: '';
		display: block;
		width: 100%;
		aspect-ratio: 16 / 9;
		background-image: url('images/poster.png');
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		margin: 10% 0;
		flex-shrink: 0;
		order: -1;
	}
	
	.content-wrapper {
		width: 100%;
		background: rgba(0, 0, 0, 0.95);
		padding: 30px 44px;
		flex: 1;
		overflow-y: visible;
	}
	
	.title-main {
		font-size: clamp(1.5rem, 10vw, 48px);
		text-align: center;
	}
	
	.title-sub {
		font-size: clamp(0.9rem, 5vw, 24px);
		text-align: center;
	}
	
	.header {
		font-size: 24px;
		text-align: center;
	}
	
	.text {
		font-size: 15px;
		text-align: justify;
	}
	
	.button {
		display: block;
		text-align: center;
	}
}

/* ============================================
   SMALL MOBILE DEVICES
   ============================================ */
@media (max-width: 480px) {
	.content-wrapper {
		padding: 20px 32px;
	}
	
	.title-main {
		font-size: clamp(1.25rem, 8vw, 36px);
	}
	
	.title-sub {
		font-size: clamp(0.8rem, 4.5vw, 20px);
	}
	
	.header {
		font-size: 20px;
	}
	
	.text {
		font-size: 14px;
		text-align: justify;
	}
	
	.button {
		font-size: 14px;
	}
}
