@charset "UTF-8";

/* --- 1. Global Reset & Base Elements --- */
*, 
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html, 
body {
	background: #000;
	font-family: Arial, sans-serif;
}

body {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	justify-content: space-between;
}

header {
	padding: 0px;
}

/* --- 2. Responsive Media Rules --- */
.img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: block;
}

/* --- 3. Typography & Headings (Mobile View Sizes) --- */
h1 {
	text-align: center;
	text-transform: uppercase;
	font-family: "Audiowide", sans-serif !important;
	font-weight: 700;
	font-size: 13pt;    /* Tightly configured mobile size */
	line-height: 1.2;   /* Prevents high vertical line gaps */
	margin: 0;          /* Strips browser vertical boundary pushes */
	color: #000;
}

h2 {
	font-family: "Audiowide", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: #C5075B;
	text-transform: uppercase;
	font-size: 28px;
	margin-top: 50px;
}

h3 {
	font-size: 22px;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-weight: 300;
	color: #aaaaaa;
	font-family: "Audiowide", sans-serif;
	font-style: normal;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 25px;
	line-height: 1.5;
}

.teaser {
	font-size: 16pt;
	color: #B8B8BA;
	text-align: left;
	line-height: 1.4;
}

/* --- 4. Navigation & Component Styles --- */
.bodylink A:link {color: #C5075B;}
.bodylink A:visited {color: #C5075B;}
.bodylink A:hover {color: #FFF;}
.bodylink A:active {color: #FFF;}

/* Premium App-Style Nav Grid for Mobile viewports */
.nav-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap; 
	gap: 8px; 
	padding: 12px 15px; 
	background-color: transparent; 
	border-bottom: none; 
	margin-bottom: 20px;
}

.nav-grid-item {
	display: inline-block;
	padding: 8px 6px; 
	flex: 1; 
	min-width: 65px; 
	max-width: 140px; 
	text-align: center;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "Audiowide", sans-serif;
	font-size: 11px; 
	font-weight: 400;
	letter-spacing: 0.5px;
	border: 1px solid #C5075B; 
	border-radius: 4px;
	background-color: transparent;
	transition: all 0.3s ease;
	white-space: nowrap; 
}

.nav-grid-item:active {
	color: #fff;
	background-color: #C5075B;
	border-color: #C5075B;
	box-shadow: 0 0 15px rgba(197, 7, 91, 0.6);
}

/* Global standalone button rule baseline */
.button {
	display: inline-block;
	max-width: 100%;
	border: 2px #C5075B solid;
	padding: 8px 16px;
	color: #C5075B;
	text-decoration: none;
	text-transform: uppercase;
	background-image: url(images/navbg.png);
	background-position: center;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 18px;
	font-weight: 600;
}

.h1banner {
	background-color: #c5075b; 
	padding: 8px 12px; /* Condensed to strip excess mobile header padding */
	margin-bottom: 0px;
}

.bodycopy {
	background-color: #251c20;
	border-radius: 10px;
	padding: 20px 20px 5px 20px;
	margin-bottom: 20px;
}

.contact {
	margin-left: auto;
	margin-right: auto;
	display: block;
	color: #fff;
	font-size: 22px;
	text-align: center;
	padding-top: 20px;
	vertical-align: middle;
	max-width: 100%;
}

.contact img {
	max-width: 100%;
	height: auto;
}

/* --- 5. Structural Grid & Layout --- */
.col {
	width: 100%;
}

.banner {
	width: 100%;
	max-width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}
 
.comic {
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 50px;
}

/* --- 6. Footer Layout (Mobile Baseline) --- */
.footer {
	background-color: #000;
	color: #C5075B;
	padding: 40px 20px;
	text-align: center;
}

.footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.footer-social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
}

.footer-social-icon {
	display: inline-block;
}

.footer-social-icon img {
	width: 24px; 
	height: 24px;
	display: block;
}

.footer-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.footer-link {
	color: #C5075B;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.footer-link:hover {
	opacity: 0.7;
}

.footer-copyright {
	width: 100%;
	color: #aaaaaa;                /* Matches your subtle h3 grey */
	font-family: Arial, sans-serif;
	font-size: 12px;
	letter-spacing: 0.05em;
	margin-top: 10px;              /* Pushes it below stacked elements on mobile */
	opacity: 0.6;                  /* Keeps it secondary to primary action links */
}


/* --- 7. Desktop Responsive View Overrides (1024px+) --- */
@media (min-width: 1024px) {
	body {
		max-width: 1200px;
	}
	
	h1 {
		font-weight: 300;
		font-size: 26pt; /* Balanced desktop sizing */
		line-height: 1.3;
	}
		
	h2 {
		text-align: left;
		font-size: 48px;
	}
	
	h3 {
		margin-bottom: 0px;
		font-size: 30px;
	}

	.h1banner {
		padding: 16px 20px; /* Comfortable spacing on monitors */
	}
	
	.teaser {
		font-size: 16pt;
		font-weight: 200;
	}

	.banner {
		width: 500px;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	
	.nav-grid {
		padding: 10px 10px 20px 10px;
		display: block;
		text-align: center; 
		background-color: transparent;
		border-bottom: none;
		margin-bottom: 0;
	}

	.nav-grid-item {
		display: inline-block;
		max-width: 100%;
		border: 2px #C5075B solid;
		padding: 0px 20px;
		color: #C5075B;
		text-decoration: none;
		text-transform: uppercase;
		background-image: url(images/navbg.png);
		background-position: center;
		background-color: transparent;
		font-family: "Audiowide", sans-serif; 
		font-size: 16px; 
		font-weight: 400; 
		letter-spacing: 1px; 
		border-radius: 0px;
		margin: 0;
		box-shadow: none;
		transform: none;
		flex: none;
	}
	
	.nav-grid-item:hover {
		color: #FFF;
		background-color: transparent;
		border-color: #C5075B;
		box-shadow: none;
		transform: none;
	}

	.button {
		font-size: 20px;
		padding: 0px 20px;
	}

	.contact {
		font-size: 26px;
	}

	.footer {
		padding: 20px 0;
		font-size: 20px;
	}

	.footer-social-icon {
		margin: 0 10px;
	}

	.footer-social-icon img {
		width: 30px;
		height: 30px;
	}

	.footer-container {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0;
		flex-wrap: wrap;       /* Allows the copyright line to wrap to its own row below */
	}

	.footer-social {
		margin-bottom: 0;
		gap: 0;
		order: 1;              /* Keeps social links on the left side */
	}

	.footer-links {
		flex-direction: row;
		justify-content: flex-end;
		gap: 0;
		order: 2;              /* Keeps nav links on the right side */
	}

	.footer-link {
		margin: 5px 15px;
		font-size: 20px;
		text-transform: none;
		letter-spacing: normal;
	}

	/* Desktop adjustments for the copyright block */
	.footer-copyright {
		order: 3;              /* Forces copyright below the floating elements */
		text-align: center;
		margin-top: 30px;      /* Separation space below the desktop navigation row */
		font-size: 11px;       /* Made smaller and sleeker on desktop layouts */
		opacity: 0.5;
	}
}
/* ==========================================================================
   8. Lore Page Accordion & Typography Components
   ========================================================================== */
.lore-section {
	max-width: 100%;
	margin-bottom: 20px;
}

/* Container component using your product/bodycopy scheme */
.lore-card {
	background-color: #251c20;
	border: 1px solid rgba(197, 7, 91, 0.3);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Highlights the interactive panel border when section is manually expanded */
.lore-card[open] {
	border-color: #C5075B;
	box-shadow: 0 0 15px rgba(197, 7, 91, 0.2);
}

/* Master Header Toggles */
.lore-header {
	padding: 18px 20px;
	font-family: "Audiowide", sans-serif;
	font-size: 16px;
	color: #C5075B;
	text-transform: uppercase;
	cursor: pointer;
	list-style: none; /* Strips native browser bullet markers */
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

/* Standard Safari/Webkit workaround to remove default block arrows */
.lore-header::-webkit-details-marker {
	display: none;
}

.lore-header:hover {
	background-color: rgba(197, 7, 91, 0.1);
	color: #fff;
}

/* Custom interactive expand icon design layout (+ / - indicator) */
.lore-icon {
	font-size: 18px;
	font-weight: bold;
	color: #C5075B;
	transition: transform 0.3s ease;
	display: inline-block;
	line-height: 1;
}

.lore-header:hover .lore-icon {
	color: #fff;
}

/* Rotates the custom icon marker when opened */
.lore-card[open] .lore-icon {
	transform: rotate(45deg); /* Flips a plus sign into a neat 'x' close shape */
}

/* Protected inner padding block content wrapper */
.lore-content {
	padding: 5px 20px 20px 20px;
	border-top: 1px solid rgba(197, 7, 91, 0.15);
	color: #B8B8BA;
}

.lore-content p:last-child {
	margin-bottom: 0; /* Keeps inner vertical padding metrics flush */
}

/* --- Mobile View Typographic Rules --- */

/* h3 Class: Configured to your deep gray layout color instead of pink */
h3.lore-category {
	font-family: "Audiowide", sans-serif;
	text-transform: uppercase;
	font-size: 18px;               /* Clean mobile category sizing */
	color: #aaaaaa;                /* FIXED: Restored to clean, high-contrast gray */
	margin-top: 40px;             /* Adds breathing room above a new category group */
	margin-bottom: 15px;
	letter-spacing: 0.05em;
}

/* h4 Style: Sleek sub-headers inside interactive lore panels */
.lore-content h4 {
	font-family: "Audiowide", sans-serif !important;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	color: #ffffff !important;     /* Clean white contrast against the dark background */
	margin-top: 20px;
	margin-bottom: 8px;
	letter-spacing: 0.05em;
	border-left: 2px solid #C5075B; /* Subtle neon accent block on the left */
	padding-left: 8px;            /* Pushes text away from the accent border */
	display: block;
}

/* Prevent top spacing on the very first h4 in an expanded card */
.lore-content h4:first-child {
	margin-top: 5px;
}


/* ==========================================================================
   9. Desktop Specific Adaptations (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
	/* Component Layout Scaling */
	.lore-header {
		font-size: 20px;
		padding: 22px 25px;
	}
	
	.lore-content {
		padding: 10px 25px 25px 25px;
	}

	/* FIXED: Desktop Heading Contrast Overrides */
	h3.lore-category {
		font-size: 25px;           /* Lowered to ensure a stark visual distinction from the 48px h2 */
		margin-top: 55px;
		color: #aaaaaa !important; /* Preserves the look across desktop screens */
	}
	
	.lore-content h4 {
		font-family: "Audiowide", sans-serif !important;
		font-size: 16px;
		font-weight: 400;
		color: #ffffff !important; /* Preserves cyber style details on wide viewports */
		border-left: 2px solid #C5075B;
		padding-left: 10px;
	}
}