/* ===== PARADOX GAMING STYLESHEET ===== */
/* Organized and optimized single-file CSS */
/* ===== RESET & BASE STYLES ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/* ===== CSS VARIABLES ===== */
:root {
	/* Colors */
	--primary-black: #000000;
	--secondary-black: #1a1a1a;
	--dark-gray: #2d2d2d;
	--medium-gray: #666666;
	--light-gray: #cccccc;
	--lighter-gray: #e0e0e0;
	--white: #ffffff;
	--off-white: #f8f8f8;
	--background-black: #0f0f0f;
	--primary-gold: #ffd700;
	--dark-gold: #b8860b;
	--light-gold: #ffed4e;
	/* Typography */
	--font-primary: 'Arial', 'Helvetica', sans-serif;
	--font-size-xs: 0.875rem;
	--font-size-sm: 1rem;
	--font-size-base: 1.125rem;
	--font-size-lg: 1.25rem;
	--font-size-xl: 1.375rem;
	--font-size-2xl: 1.625rem;
	--font-size-3xl: 2rem;
	--font-size-4xl: 2.5rem;
	/* Spacing */
	--spacing-xs: 0.25rem;
	--spacing-sm: 0.5rem;
	--spacing-md: 1rem;
	--spacing-lg: 1.5rem;
	--spacing-xl: 2rem;
	--spacing-2xl: 3rem;
	--spacing-3xl: 4rem;
	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	/* Borders */
	--border-radius-sm: 4px;
	--border-radius-md: 8px;
	--border-radius-lg: 12px;
	--border-radius-xl: 16px;
}
/* ===== BASE TYPOGRAPHY ===== */
body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--white);
	background-color: var(--background-black);
	min-height: 100vh;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: var(--spacing-md);
}
h1 {
	font-size: var(--font-size-4xl);
}
h2 {
	font-size: var(--font-size-3xl);
}
h3 {
	font-size: var(--font-size-2xl);
}
h4 {
	font-size: var(--font-size-xl);
}
h5 {
	font-size: var(--font-size-lg);
}
h6 {
	font-size: var(--font-size-base);
}
p {
	margin-bottom: var(--spacing-md);
}
a {
	color: var(--primary-gold);
	text-decoration: none;
	transition: color 0.2s ease;
}
a:hover {
	color: var(--light-gold);
}
/* ===== LAYOUT UTILITIES ===== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
}
.content-section {
	padding: var(--spacing-lg) 0;
}

/* ===== NAVBAR COMPONENT ===== */
.navbar {
	background-color: var(--primary-black);
	padding: var(--spacing-md) 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-md);
}
.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-lg);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav-logo {
	font-size: var(--font-size-2xl);
	font-weight: bold;
	color: var(--primary-gold);
}
.nav-menu {
	display: flex;
	align-items: center;
	gap: var(--spacing-lg);
}
.nav-link {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	padding: var(--spacing-sm) var(--spacing-md);
	border-radius: var(--border-radius-sm);
	transition: all 0.2s ease;
	position: relative;
	font-variant: small-caps;
	letter-spacing: 0.5px;
}
.nav-link:hover {
	color: var(--primary-gold);
	background-color: var(--secondary-black);
	transform: translateY(-1px);
}
.nav-dropdown {
	position: relative;
}
.dropdown-toggle {
	cursor: pointer;
	display: inline-block;
	position: relative;
}
/* Visual indicator for dropdowns */
.dropdown-toggle::after {
	content: "▼";
	font-size: 0.75em;
	color: var(--medium-gray);
	transition: all 0.2s ease;
	margin-left: var(--spacing-xs);
}
.dropdown-toggle:hover::after {
	color: var(--primary-gold);
}
.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #111;
	border: 1px solid #333;
	border-radius: var(--border-radius-sm);
	min-width: 250px;
	box-shadow: var(--shadow-xl);
	display: none;
	z-index: 999;
	white-space: nowrap;
}
.nav-dropdown:hover .dropdown-menu {
	display: block;
}
.dropdown-link {
	display: block;
	color: var(--white);
	text-decoration: none;
	padding: var(--spacing-md) var(--spacing-lg);
	transition: all 0.2s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dropdown-link:last-child {
	border-bottom: none;
}
.dropdown-link:hover {
	background-color: var(--dark-gray);
	color: var(--primary-gold);
	padding-left: calc(var(--spacing-lg) + var(--spacing-xs));
}

/* Mobile Navigation Toggle */
.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: var(--spacing-xs);
	border-radius: var(--border-radius-sm);
	transition: background-color 0.2s ease;
}
.nav-toggle:hover {
	background-color: var(--secondary-black);
}
.bar {
	width: 25px;
	height: 3px;
	background-color: var(--white);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}
/* Mobile Navigation Animation */
.nav-toggle.active .bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}
.nav-toggle.active .bar:nth-child(2) {
	opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}
/* Mobile Responsive Styles */
@media (max-width: 1024px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: var(--primary-black);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: var(--shadow-lg);
		padding: var(--spacing-lg) 0 var(--spacing-3xl) 0;
		gap: 0;
		height: calc(100vh - 70px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.nav-menu.active {
		left: 0;
	}
	.nav-link {
		padding: var(--spacing-md) var(--spacing-lg);
		margin: var(--spacing-xs) var(--spacing-lg);
		border-radius: var(--border-radius-md);
		width: calc(100% - 2 * var(--spacing-lg));
		box-sizing: border-box;
	}
	.nav-dropdown {
		width: 100%;
	}
	.dropdown-toggle::after {
		transform: rotate(-90deg);
		transition: transform 0.2s ease;
	}
	.nav-dropdown.active .dropdown-toggle::after {
		transform: rotate(0deg);
	}
	.dropdown-menu {
		position: static;
		display: none;
		width: 100%;
		box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
		background-color: var(--secondary-black);
		border: none;
		border-radius: 0;
		max-height: none;
		margin-top: var(--spacing-xs);
	}
	.nav-dropdown.active .dropdown-menu {
		display: block;
	}
	.dropdown-link {
		padding: var(--spacing-sm) var(--spacing-xl);
		font-size: var(--font-size-sm);
	}
	.nav-toggle {
		display: flex;
	}
}
@media (max-width: 768px) {
	.nav-container {
		padding: 0 var(--spacing-md);
	}
	.nav-menu {
		top: 60px;
		height: calc(100vh - 60px);
	}
}
/* ===== BUTTON COMPONENT ===== */
.btn {
	display: inline-block;
	padding: var(--spacing-sm) var(--spacing-lg);
	border: none;
	border-radius: var(--border-radius-sm);
	font-size: var(--font-size-base);
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	line-height: 1.5;
	min-width: 180px;
}
.btn-primary {
	background-color: var(--primary-gold);
	color: var(--primary-black);
	font-weight: bold;
}
.btn-primary:hover {
	background-color: var(--dark-gold);
	color: var(--primary-black);
}
.read-more-btn {
	background: var(--primary-gold);
	color: var(--primary-black);
	padding: var(--spacing-sm) var(--spacing-lg);
	border: none;
	border-radius: var(--border-radius-sm);
	text-decoration: none;
	font-size: var(--font-size-sm);
	font-weight: 500;
	transition: background-color 0.2s ease;
}
.read-more-btn:hover {
	background: var(--dark-gold);
	color: var(--primary-black);
}
/* ===== CARD COMPONENTS ===== */

/* Article Cards */
.article-card {
  background: var(--secondary-black);
  border: 1px solid var(--dark-gray);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.article-card-compact {
  padding: var(--spacing-lg);
}

.article-card-compact .article-header h3 {
  font-size: var(--font-size-lg);
}

.article-card-compact .article-excerpt {
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.article-header h3 {
  margin: 0 0 var(--spacing-sm) 0;
  color: var(--white);
  font-size: var(--font-size-xl);
  font-weight: 700;
  line-height: 1.3;
}

.article-headline-link {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-headline-link:hover {
  color: var(--primary-gold);
}

.article-meta-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-sm);
  color: var(--light-gray);
  margin-bottom: var(--spacing-sm);
}

.article-author,
.article-date {
  font-size: var(--font-size-sm);
}

.article-tag-preview {
  background: var(--primary-gold);
  color: var(--primary-black);
  padding: 2px 8px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: var(--font-size-xs);
}

.meta-separator {
  color: var(--medium-gray);
}

.article-excerpt {
  color: var(--light-gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.article-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.article-card-featured {
  /* Featured article styling */
}

/* ===== FEATURED CONTENT GRID STYLES ===== */
.featured-content-grid-section {
	background-color: var(--background-black);
	padding: var(--spacing-2xl) 0;
}
.featured-section-title {
	font-size: var(--font-size-3xl);
	color: var(--primary-gold);
	text-align: center;
	margin-bottom: var(--spacing-2xl);
	font-variant: small-caps;
	letter-spacing: 1px;
}
/* Top Stories Grid (2 columns) */
.featured-grid-top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--spacing-lg);
	margin-bottom: var(--spacing-2xl);
}
/* Recent Picks Grid (3 columns) */
.featured-grid-bottom {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
}
/* Featured Card Base Styles */
.featured-card {
	position: relative;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}
.featured-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-xl);
}
.featured-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.featured-card-image {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.featured-card-large .featured-card-image {
	height: 250px;
}
.featured-card-small .featured-card-image {
	height: 200px;
}
.featured-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.featured-card:hover .featured-card-image img {
	transform: scale(1.05);
}
/* Card Overlay */
.featured-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom,rgba(0, 0, 0, 0.3) 0%,rgba(0, 0, 0, 0.5) 50%,rgba(0, 0, 0, 0.8) 100%);
	display: flex;
	align-items: flex-end;
	padding: var(--spacing-lg);
	transition: background 0.3s ease;
}
.featured-card:hover .featured-card-overlay {
	background: linear-gradient(to bottom,rgba(0, 0, 0, 0.4) 0%,rgba(0, 0, 0, 0.6) 50%,rgba(0, 0, 0, 0.9) 100%);
}
.featured-card-content {
	width: 100%;
}
.featured-card-category {
	font-size: var(--font-size-xs);
	color: var(--primary-gold);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: var(--spacing-xs);
}
.featured-card-title {
	color: var(--white);
	margin: 0 0 var(--spacing-xs) 0;
	line-height: 1.3;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
.featured-card-large .featured-card-title {
	font-size: var(--font-size-xl);
}
.featured-card-small .featured-card-title {
	font-size: var(--font-size-lg);
}
.featured-card-date {
	font-size: var(--font-size-xs);
	color: var(--light-gray);
	font-weight: 500;
}
/* Responsive Design for Featured Grid */
@media (max-width: 1024px) {
	/* Tablet: Top row stays 2 columns, bottom row becomes 2 columns */
	.featured-grid-top {
		grid-template-columns: repeat(2, 1fr);
	}
	.featured-grid-bottom {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 768px) {
	.featured-content-grid-section {
		padding: var(--spacing-xl) 0;
	}
	.featured-grid-top,.featured-grid-bottom {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
	.featured-grid-top {
		margin-bottom: var(--spacing-xl);
	}
	.featured-card-large .featured-card-image,.featured-card-small .featured-card-image {
		height: 180px;
	}
	.featured-card-overlay {
		padding: var(--spacing-md);
	}
	.featured-section-title {
		font-size: var(--font-size-2xl);
		margin-bottom: var(--spacing-xl);
	}
}
@media (max-width: 400px) {
	.featured-card-large .featured-card-image,.featured-card-small .featured-card-image {
		height: 150px;
	}
	.featured-card-overlay {
		padding: var(--spacing-sm);
	}
	.featured-card-title {
		font-size: var(--font-size-base) !important;
	}
}
/* ===== HOME PAGE STYLES ===== */
.hero-banner {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../media/header.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: var(--spacing-3xl) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}
.hero-title {
	font-size: var(--font-size-4xl);
	color: var(--primary-gold);
	margin-bottom: 0.0rem;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	font-variant: small-caps;
	line-height: 1.2;
	min-height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-subtitle {
	font-size: var(--font-size-xl);
	color: var(--light-gray);
	margin-bottom: var(--spacing-2xl);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	min-height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
/* Video Grid Styles for Homepage */
.video-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
	max-width: calc(100vw - 4rem);
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

.video-card {
	background: var(--secondary-black);
	border: 1px solid var(--dark-gray);
	border-radius: var(--border-radius-md);
	padding: var(--spacing-lg);
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	justify-self: center;
}
.video-card h3 {
	color: var(--primary-gold);
	margin-bottom: var(--spacing-md);
	font-size: var(--font-size-lg);
}
.video-card .video-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	min-height: 200px;
	overflow: hidden;
	border-radius: var(--border-radius-md);
}
.video-card .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: var(--border-radius-md);
}
/* Video Grid Responsive Styles */
@media (max-width: 1024px) {
	.video-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
}
@media (max-width: 768px) {
	.video-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-md);
	}
	.video-card .video-wrapper {
		min-height: 180px;
		aspect-ratio: 16/9;
	}
}
/* Twitch Section Styles */
.twitch-section {
	padding: var(--spacing-2xl) 0;
	border: none;
	outline: none;
}
.twitch-container-large {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	height: 500px;
	background: var(--secondary-black);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	border: none;
	outline: none;
}
.twitch-player {
	width: 100%;
	height: 100%;
	border: none !important;
	outline: none !important;
	display: block;
	box-shadow: none !important;
}

/* Remove any borders from Twitch section and all children */
.twitch-section *,
.twitch-container-large *,
.twitch-player * {
	border: none !important;
	outline: none !important;
}

/* Section divider styling */
.section-divider {
	border: none;
	height: 1px;
	background: var(--dark-gray);
	margin: var(--spacing-lg) 0;
	opacity: 0.3;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-2xl);
	margin-top: var(--spacing-2xl);
}
/* ===== COMMUNITY SECTION STYLES ===== */
.community-section h2 {
	text-align: center;
	margin-bottom: var(--spacing-xl);
}
.community-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-2xl);
	margin-top: var(--spacing-2xl);
}
.community-card {
	background: white;
	border: 2px solid var(--primary-gold);
	border-radius: var(--border-radius-md);
	padding: var(--spacing-xl);
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.community-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(228, 179, 67, 0.3);
	border-color: var(--light-gold);
}
.community-card h3 {
	color: var(--primary-black);
	margin-bottom: var(--spacing-md);
	font-size: var(--font-size-lg);
	font-weight: bold;
}
.community-card p {
	color: var(--primary-black);
	margin-bottom: var(--spacing-lg);
	line-height: 1.6;
}
.community-links {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	align-items: center;
}
.community-links .btn {
	min-width: 150px;
	text-align: center;
}
/* Brand-specific button styles */
.btn-bandcamp {
	background-color: #4C9EBF;
	color: white;
	font-weight: bold;
}
.btn-bandcamp:hover {
	background-color: #3a7a96;
	color: white;
}
.btn-spotify {
	background-color: #1DB954;
	color: white;
	font-weight: bold;
}
.btn-spotify:hover {
	background-color: #1aa34a;
	color: white;
}
.btn-youtube {
	background-color: #FF0000;
	color: white;
	font-weight: bold;
}
.btn-youtube:hover {
	background-color: #cc0000;
	color: white;
}
.btn-patreon {
	background-color: #E85B46;
	color: white;
	font-weight: bold;
}
.btn-patreon:hover {
	background-color: #d44332;
	color: white;
}
.btn-discord {
	background-color: #5865F2;
	color: white;
	font-weight: bold;
}
.btn-discord:hover {
	background-color: #4752c4;
	color: white;
}
.btn-twitch {
	background-color: #9146FF;
	color: white;
	font-weight: bold;
}
.btn-twitch:hover {
	background-color: #7c3aed;
	color: white;
}

.video-wrapper {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	aspect-ratio: 16/9;
}
.youtube-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: var(--border-radius-md);
}
/* ===== SOCIAL SHARE COMPONENTS ===== */
/* Social Share Buttons - Reusable across the site */
.social-share-section {
	margin-top: var(--spacing-md);
	text-align: center;
}
.social-share-buttons {
	display: flex;
	justify-content: center;
	gap: var(--spacing-md);
	flex-wrap: wrap;
}
.social-share-btn {
	display: inline-block;
	transition: transform 0.2s ease, opacity 0.2s ease;
	border-radius: 8px;
	overflow: hidden;
}
.social-share-btn:hover {
	transform: translateY(-2px);
	opacity: 0.8;
}
.social-share-btn img {
	width: 40px;
	height: 40px;
	display: block;
}
/* Responsive Social Share */
@media (max-width: 768px) {
	.social-share-buttons {
		gap: var(--spacing-sm);
	}
	.social-share-btn img {
		width: 35px;
		height: 35px;
	}
}
/* ===== TABLET STYLES ===== */
@media (max-width: 1024px) and (min-width: 769px) {
	.hero-banner {
		min-height: 300px;
	}
}
/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
	/* Prevent horizontal overflow on mobile */
	body {
		overflow-x: hidden;
	}
	* {
		max-width: 100%;
	}
	/* Mobile Navigation */
	.nav-toggle {
		display: flex;
	}
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: var(--secondary-black);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		z-index: 1000;
	}
	.nav-menu.active {
		left: 0;
	}
	.nav-menu .nav-link {
		padding: var(--spacing-lg);
		display: block;
		border-bottom: 1px solid var(--dark-gray);
	}
	/* Mobile dropdown styles */
	.nav-dropdown {
		width: 100%;
	}
	.dropdown-menu {
		position: static;
		display: none;
		background-color: var(--dark-gray);
		box-shadow: none;
		width: 100%;
	}
	.nav-dropdown.active .dropdown-menu {
		display: block;
	}
	.dropdown-link {
		padding: var(--spacing-md) var(--spacing-lg);
		border-bottom: 1px solid var(--medium-gray);
	}
	/* Navbar */
	.navbar .container {
		flex-direction: column;
		gap: var(--spacing-md);
	}
	.navbar-nav {
		gap: var(--spacing-md);
	}
	/* Typography */
	h1 {
		font-size: var(--font-size-3xl);
	}
	h2 {
		font-size: var(--font-size-2xl);
	}
	h3 {
		font-size: var(--font-size-xl);
	}
	.hero-title {
		font-size: var(--font-size-3xl);
	}
	.hero-banner {
		min-height: 250px;
		padding: var(--spacing-2xl) 0;
	}
	.game-title {
		font-size: var(--font-size-3xl);
	}
	/* Grids */
	.features-grid,.community-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	.articles-grid {
		grid-template-columns: 1fr;
		gap: var(--spacing-lg);
	}
	/* Two-column layout stacks on mobile */
	.two-column-layout {
		grid-template-columns: 1fr;
		gap: var(--spacing-xl);
		min-height: auto;
	}
	.left-column h2,.right-column h2 {
		text-align: left;
	}
	/* Twitch section responsive */
	.twitch-container-large {
		height: 300px;
	}
	/* Cards */
	.card,.game-card,.article-card {
		padding: var(--spacing-lg);
	}
	.article-card-compact {
		padding: var(--spacing-lg);
	}
	.article-card-compact .article-header h3 {
		font-size: var(--font-size-xl);
	}
	.article-card-compact .article-excerpt {
		font-size: var(--font-size-base);
	}
	/* Content Teasers Mobile */
	.content-teaser {
		padding: var(--spacing-md);
		min-height: auto;
		width: 100%;
		max-width: 100%;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}
	.teaser-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-sm);
	}
	.teaser-date {
		font-size: var(--font-size-xs);
	}
	.teaser-link {
		align-self: flex-end;
		font-size: var(--font-size-sm);
	}
	/* Container */
	.container {
		padding: 0 var(--spacing-sm);
	}
}
/* ===== EXTRA SMALL MOBILE STYLES ===== */
@media (max-width: 400px) {
	/* Very small screens - even tighter spacing */
	.container {
		padding: 0 var(--spacing-xs);
	}
	/* Hero banner adjustments for very small screens */
	.hero-banner {
		min-height: 250px;
		padding: var(--spacing-lg) 0;
	}
	.hero-banner h1 {
		font-size: var(--font-size-2xl);
		margin-bottom: var(--spacing-sm);
		line-height: 1.2;
	}
	.hero-banner p {
		font-size: var(--font-size-sm);
		line-height: 1.4;
		padding: 0 var(--spacing-sm);
	}
	.content-teaser {
		padding: var(--spacing-sm);
		margin: 0;
		width: 100%;
		max-width: 100%;
		overflow-wrap: break-word;
		word-wrap: break-word;
	}
	.teaser-header {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-xs);
	}
	.teaser-category,.teaser-subcategory {
		font-size: var(--font-size-xs);
	}
	.teaser-title,.teaser-excerpt {
		overflow-wrap: break-word;
		word-wrap: break-word;
		hyphens: auto;
	}
}
/* ===== UTILITY CLASSES ===== */
.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.mb-sm {
	margin-bottom: var(--spacing-sm);
}
.mb-md {
	margin-bottom: var(--spacing-md);
}
.mb-lg {
	margin-bottom: var(--spacing-lg);
}
.mb-xl {
	margin-bottom: var(--spacing-xl);
}
/* ===== FOOTER STYLES ===== */
/* Footer Container */
.footer-container {
	background-color: #0d0d0d;
	color: #e4b343;
	/* Gold color for font */
	font-variant: small-caps;
	text-align: center;
	padding: 20px 10px;
	font-family: Arial, sans-serif;
}
/* Social Icons Container */
.ct-social-box {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 15px;
}
/* Each Social Icon Link */
.social-icon {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	/* space between icon and label */
	text-decoration: none;
	color: inherit;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
}
/* Hover effect on social links */
.social-icon:hover {
	color: #d4af37;
	/* Slightly lighter gold on hover */
}
/* SVG Icon Styling */
.social-icon svg {
	width: 24px;
	height: 24px;
	vertical-align: middle;
	fill: currentColor;
	/* Use the parent's text color */
}
/* Specific colors for brand icons */
.social-icon.bandcamp {
	color: #4C9EBF;
}
.social-icon.discord {
	color: #5865F2;
}
.social-icon.kick {
	color: #00D26A;
}
.social-icon.patreon {
	color: #E85B46;
}
.social-icon.spotify {
	color: #1DB954;
}
.social-icon.tiktok {
	color: #FF0050;
	/* TikTok red */
}
.social-icon.twitch {
	color: #9146FF;
	/* Twitch purple */
}
.social-icon.twitter {
	color: #1DA1F2;
}
.social-icon.youtube {
	color: #FF0000;
}
.social-icon.email {
	color: #6E6E6E;
	/* Dark gray for email */
}
/* Footer Copyright */
.ct-footer-copyright p {
	margin: 0;
	align-items: center;
	text-align: center;
	font-size: 0.9rem;
	color: #e4b343;
	font-variant: small-caps;
	font-weight: 600;
	user-select: none;
}
.privacy-link {
	color: #4C9EBF;
	text-decoration: none;
	transition: color 0.3s ease;
}
.privacy-link:hover {
	color: #d4af37;
	text-decoration: underline;
}
/* ===== INDIVIDUAL GAME PAGE STYLES ===== */
/* Tight Hero Header - Minimal spacing after header */

/* Tight Articles Section - Minimal spacing between video and articles */
.articles-section {
	padding-top: 0.75rem !important;
	margin-top: 0 !important;
	padding-bottom: var(--spacing-2xl);
}
/* Other Games Navigation - Equal Width Buttons */

/* Ensure all buttons have same width on larger screens */
@media (min-width: 768px) {
	.other-games-list {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: var(--spacing-sm);
	}
	.other-game-btn {
		flex: none;
	}
}

/* ===== QUOTE STYLES ===== */
/* Political Article Quotes */
.political-article-quote {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
	border-left: 4px solid var(--primary-gold);
	padding: var(--spacing-lg);
	margin: var(--spacing-xl) 0;
	border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
	font-style: italic;
	color: var(--lighter-gray);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	position: relative;
}

.political-article-quote::before {
	content: '"';
	font-size: 4rem;
	color: var(--primary-gold);
	opacity: 0.3;
	position: absolute;
	top: -10px;
	left: 15px;
	font-family: Georgia, serif;
	line-height: 1;
}

.political-article-quote p {
	margin: 0;
	font-size: var(--font-size-lg);
	line-height: 1.6;
	position: relative;
	z-index: 1;
}

.political-article-quote cite {
	display: block;
	margin-top: var(--spacing-md);
	font-size: var(--font-size-sm);
	color: var(--primary-gold);
	font-style: normal;
	font-weight: 600;
}

/* Blog Article Quotes */
.blog-article-quote {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
	border-left: 3px solid var(--primary-gold);
	padding: var(--spacing-md) var(--spacing-lg);
	margin: var(--spacing-lg) 0;
	border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
	font-style: italic;
	color: var(--light-gray);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	position: relative;
}

.blog-article-quote::before {
	content: '"';
	font-size: 3rem;
	color: var(--primary-gold);
	opacity: 0.25;
	position: absolute;
	top: -5px;
	left: 12px;
	font-family: Georgia, serif;
	line-height: 1;
}

.blog-article-quote p {
	margin: 0;
	font-size: var(--font-size-base);
	line-height: 1.5;
	position: relative;
	z-index: 1;
}

.blog-article-quote cite {
	display: block;
	margin-top: var(--spacing-sm);
	font-size: var(--font-size-xs);
	color: var(--primary-gold);
	font-style: normal;
	font-weight: 500;
}

/* Responsive Quote Styles */
@media (max-width: 768px) {
	.political-article-quote,
	.blog-article-quote {
		padding: var(--spacing-md);
		margin: var(--spacing-md) 0;
	}
	
	.political-article-quote::before {
		font-size: 3rem;
		top: -8px;
		left: 10px;
	}
	
	.blog-article-quote::before {
		font-size: 2.5rem;
		top: -5px;
		left: 8px;
	}
}

/* ===== ACCESSIBILITY ===== */
*:focus {
	outline: 2px solid var(--primary-gold);
	outline-offset: 2px;
}
