/*
Theme Name: Daily1Game
Theme URI: https://daily1game.com
Author: Ajin B Nikam
Author URI: https://daily1game.com
Description: Modern, responsive gaming theme stylesheet for Daily1Game. Built with Bootstrap 5.3.3.
Version: 2.0.0
Text Domain: daily1game
*/

/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
	--d1g-bg: #0a0d14;
	--d1g-surface: #121824;
	--d1g-surface-elevated: #1a2233;
	--d1g-surface-hover: #222d44;
	--d1g-border: rgba(255, 255, 255, 0.08);
	--d1g-border-hover: rgba(0, 229, 255, 0.4);
	
	/* Gaming Accents */
	--d1g-accent: #ff4655;
	--d1g-accent-glow: rgba(255, 70, 85, 0.35);
	--d1g-cyan: #00e5ff;
	--d1g-cyan-glow: rgba(0, 229, 255, 0.3);
	--d1g-purple: #7928ca;
	--d1g-gold: #ffb703;
	--d1g-emerald: #10b981;
	
	/* Text */
	--d1g-text: #f8fafc;
	--d1g-text-muted: #94a3b8;
	--d1g-text-subtle: #64748b;
	
	/* Fonts */
	--d1g-font-ui: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--d1g-font-heading: 'Rajdhani', 'Outfit', sans-serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
	font-family: var(--d1g-font-ui);
	background-color: var(--d1g-bg);
	color: var(--d1g-text);
	overflow-x: hidden;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .heading-font {
	font-family: var(--d1g-font-heading);
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--d1g-text);
}

a {
	color: var(--d1g-cyan);
	text-decoration: none;
	transition: all 0.25s ease;
}

a:hover {
	color: #67e8f9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
	background: var(--d1g-bg);
}
::-webkit-scrollbar-thumb {
	background: #1e293b;
	border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--d1g-accent);
}

/* Accent Utilities */
.text-accent {
	color: var(--d1g-accent) !important;
}
.text-cyan {
	color: var(--d1g-cyan) !important;
}
.bg-accent {
	background-color: var(--d1g-accent) !important;
}
.bg-surface {
	background-color: var(--d1g-surface) !important;
}
.bg-surface-elevated {
	background-color: var(--d1g-surface-elevated) !important;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
	background: rgba(10, 13, 20, 0.88);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--d1g-border);
	transition: background 0.3s ease;
	z-index: 1030;
}

.brand-logo-text {
	font-family: var(--d1g-font-heading);
	font-size: 1.85rem;
	font-weight: 800;
	letter-spacing: 1px;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand-logo-text i {
	color: var(--d1g-accent);
	filter: drop-shadow(0 0 8px var(--d1g-accent-glow));
}

.brand-logo-text:hover {
	color: #ffffff;
}

.site-navbar .nav-link {
	font-weight: 500;
	font-size: 1.05rem;
	color: var(--d1g-text-muted);
	padding: 0.6rem 1rem !important;
	position: relative;
	transition: all 0.25s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
	color: #ffffff;
}

.site-navbar .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--d1g-cyan), var(--d1g-accent));
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
	width: 80%;
}

.navbar-toggler {
	border-color: var(--d1g-border);
	padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
	box-shadow: 0 0 0 0.25rem var(--d1g-accent-glow);
}

.btn-header-search {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--d1g-border);
	color: var(--d1g-text-muted);
	border-radius: 20px;
	padding: 0.4rem 1rem;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
	transition: all 0.25s ease;
}

.btn-header-search:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--d1g-cyan);
	color: #ffffff;
	box-shadow: 0 0 12px var(--d1g-cyan-glow);
}

.search-kbd {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	padding: 1px 6px;
	font-size: 0.75rem;
	margin-left: 8px;
	color: var(--d1g-text-muted);
}

/* Dropdown */
.dropdown-menu-dark {
	background-color: var(--d1g-surface-elevated);
	border: 1px solid var(--d1g-border);
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
	padding: 0.5rem 0;
}

.dropdown-item {
	color: var(--d1g-text-muted);
	padding: 0.6rem 1.25rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
	background-color: var(--d1g-surface-hover);
	color: var(--d1g-cyan);
	padding-left: 1.5rem;
}

/* ==========================================================================
   Hero & Featured Games Section
   ========================================================================== */
.hero-section {
	position: relative;
	padding: 35px 0 20px;
}

.hero-carousel {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid var(--d1g-border);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
	background-color: var(--d1g-surface);
}

.hero-slide-item {
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: flex-end;
}

.hero-slide-item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%;
	transition: transform 6s cubic-bezier(0.2, 0, 0, 1);
}

.carousel-item.active .hero-slide-item img {
	transform: scale(1.05);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 13, 20, 0.2) 0%,
		rgba(10, 13, 20, 0.6) 40%,
		rgba(10, 13, 20, 0.96) 95%
	);
	z-index: 1;
}

.hero-caption {
	position: relative;
	z-index: 2;
	padding: 3.5rem 3rem 2.5rem;
	max-width: 820px;
}

.hero-caption h2 {
	font-size: 2.8rem;
	line-height: 1.15;
	margin-bottom: 0.85rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-caption h2 a {
	color: #ffffff;
}

.hero-caption h2 a:hover {
	color: var(--d1g-cyan);
}

.hero-caption p {
	font-size: 1.15rem;
	color: #cbd5e1;
	max-width: 680px;
	margin-bottom: 1.5rem;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin: 0 5px;
	background-color: rgba(255, 255, 255, 0.4);
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.carousel-indicators .active {
	width: 32px;
	border-radius: 6px;
	background-color: var(--d1g-accent);
}

.carousel-control-prev,
.carousel-control-next {
	width: 55px;
	height: 55px;
	background: rgba(18, 24, 36, 0.7);
	backdrop-filter: blur(8px);
	border: 1px solid var(--d1g-border);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 1.5rem;
	opacity: 0.7;
	transition: all 0.25s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	opacity: 1;
	background: var(--d1g-accent);
	border-color: var(--d1g-accent);
	box-shadow: 0 0 16px var(--d1g-accent-glow);
}

/* ==========================================================================
   Platform Filter Pills
   ========================================================================== */
.platform-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 1.75rem;
}

.platform-filter-btn {
	background: var(--d1g-surface);
	border: 1px solid var(--d1g-border);
	color: var(--d1g-text-muted);
	padding: 0.45rem 1.15rem;
	border-radius: 30px;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.platform-filter-btn:hover {
	background: var(--d1g-surface-elevated);
	border-color: var(--d1g-cyan);
	color: #ffffff;
}

.platform-filter-btn.active {
	background: linear-gradient(135deg, var(--d1g-accent), #e11d48);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 4px 14px var(--d1g-accent-glow);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.75rem;
	position: relative;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--d1g-border);
}

.section-header::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--d1g-accent);
	border-radius: 2px;
}

.section-title {
	font-size: 1.85rem;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-title i {
	color: var(--d1g-accent);
}

.section-link {
	font-weight: 600;
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--d1g-text-muted);
}

.section-link:hover {
	color: var(--d1g-cyan);
}

/* ==========================================================================
   Game Cards
   ========================================================================== */
.game-card {
	background: var(--d1g-surface);
	border: 1px solid var(--d1g-border);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
}

.game-card:hover {
	transform: translateY(-6px);
	border-color: var(--d1g-cyan);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px var(--d1g-cyan-glow);
}

.game-card-thumb {
	position: relative;
	overflow: hidden;
}

.game-card-thumb img {
	transition: transform 0.5s cubic-bezier(0.2, 0, 0, 1);
}

.game-card:hover .game-card-thumb img {
	transform: scale(1.08);
}

.game-placeholder {
	background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
	height: 100%;
}

.game-card-badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	z-index: 2;
}

.badge-platform {
	background: rgba(10, 13, 20, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #e2e8f0;
	font-weight: 600;
	font-size: 0.75rem;
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rating-badge {
	font-weight: 700;
	font-size: 0.82rem;
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.rating-badge-masterpiece {
	background: linear-gradient(135deg, #059669, #10b981);
	color: #ffffff;
}

.rating-badge-great {
	background: linear-gradient(135deg, #0284c7, #00e5ff);
	color: #0b0e17;
}

.rating-badge-good {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
	color: #ffffff;
}

.rating-badge-mediocre {
	background: linear-gradient(135deg, #d97706, #f59e0b);
	color: #ffffff;
}

.rating-badge-poor {
	background: linear-gradient(135deg, #dc2626, #ef4444);
	color: #ffffff;
}

.game-card-title {
	font-size: 1.18rem;
	line-height: 1.35;
}

.game-card-title a {
	color: #ffffff;
}

.game-card-title a:hover {
	color: var(--d1g-cyan);
}

.btn-play-link {
	color: var(--d1g-cyan);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	transition: transform 0.2s ease;
}

.btn-play-link:hover {
	transform: translateX(4px);
	color: #ffffff;
}

/* ==========================================================================
   Popular Games Ranking Feed
   ========================================================================== */
.trending-feed-item {
	background: var(--d1g-surface);
	border: 1px solid var(--d1g-border);
	border-radius: 12px;
	padding: 12px 16px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.25s ease;
}

.trending-feed-item:hover {
	background: var(--d1g-surface-elevated);
	border-color: var(--d1g-border-hover);
	transform: translateX(6px);
}

.trending-rank {
	font-family: var(--d1g-font-heading);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--d1g-accent);
	width: 32px;
	text-align: center;
	flex-shrink: 0;
}

.trending-thumb {
	width: 80px;
	height: 48px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.trending-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trending-title {
	font-size: 1rem;
	margin: 0;
	flex-grow: 1;
}

.trending-title a {
	color: #ffffff;
}

.trending-title a:hover {
	color: var(--d1g-cyan);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-card {
	background: radial-gradient(circle at 10% 20%, rgba(255, 70, 85, 0.15), transparent 45%),
	            radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.15), transparent 45%),
	            var(--d1g-surface-elevated);
	border: 1px solid var(--d1g-border);
	border-radius: 20px;
	padding: 3rem 2rem;
	position: relative;
	overflow: hidden;
}

.newsletter-card h3 {
	font-size: 2.2rem;
}

.newsletter-form .form-control {
	background: rgba(10, 13, 20, 0.7);
	border: 1px solid var(--d1g-border);
	color: #ffffff;
	border-radius: 30px;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
}

.newsletter-form .form-control:focus {
	background: rgba(10, 13, 20, 0.95);
	border-color: var(--d1g-cyan);
	box-shadow: 0 0 16px var(--d1g-cyan-glow);
	color: #ffffff;
}

.newsletter-form .btn {
	border-radius: 30px;
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--d1g-accent), #e11d48);
	border: none;
	color: #ffffff;
	box-shadow: 0 4px 15px var(--d1g-accent-glow);
	transition: all 0.25s ease;
}

.newsletter-form .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 22px var(--d1g-accent-glow);
}

/* ==========================================================================
   Single Post & Game Detail Page
   ========================================================================== */
.game-single-hero {
	padding: 30px 0 15px;
}

.game-title-header h1 {
	font-size: 2.8rem;
	margin-bottom: 0.5rem;
	color: #ffffff;
}

.game-meta-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 1.5rem;
}

.game-score-card {
	background: var(--d1g-surface);
	border: 1px solid var(--d1g-border);
	border-radius: 16px;
	padding: 1.5rem;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.game-score-circle {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	border: 3px solid var(--d1g-cyan);
	box-shadow: 0 0 20px var(--d1g-cyan-glow);
	background: rgba(0, 229, 255, 0.08);
}

.game-score-number {
	font-family: var(--d1g-font-heading);
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1;
	color: #ffffff;
}

.game-score-label {
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Specs Table / Box */
.game-specs-card {
	background: var(--d1g-surface);
	border: 1px solid var(--d1g-border);
	border-radius: 16px;
	padding: 1.5rem;
	margin-bottom: 2rem;
}

.game-specs-list dt {
	color: var(--d1g-text-muted);
	font-weight: 500;
	font-size: 0.9rem;
	margin-top: 0.75rem;
}

.game-specs-list dd {
	color: #ffffff;
	font-weight: 600;
	font-size: 1.05rem;
	margin-bottom: 0.75rem;
}

/* ESRB Box */
.esrb-box {
	background: var(--d1g-surface-elevated);
	border: 1px solid var(--d1g-border);
	border-radius: 12px;
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 16px;
}

.esrb-box img {
	max-height: 64px;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

/* Video Trailer */
.trailer-container {
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--d1g-border);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
	margin-bottom: 2.5rem;
}

/* Screenshot Lightbox Gallery */
.screenshot-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
	margin-bottom: 2.5rem;
}

.game-screenshot-item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--d1g-border);
	display: block;
	cursor: pointer;
}

.game-screenshot-item img {
	transition: transform 0.4s ease;
}

.game-screenshot-item:hover img {
	transform: scale(1.08);
}

.screenshot-zoom-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 13, 20, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.game-screenshot-item:hover .screenshot-zoom-overlay {
	opacity: 1;
}

.screenshot-zoom-overlay i {
	font-size: 2rem;
	color: var(--d1g-cyan);
}

/* Post Body Content Styling */
.game-content-body {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #cbd5e1;
}

.game-content-body p {
	margin-bottom: 1.4rem;
}

.game-content-body h2 {
	font-size: 2rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--d1g-border);
	padding-bottom: 0.5rem;
}

.game-content-body h3 {
	font-size: 1.5rem;
	margin-top: 1.8rem;
	margin-bottom: 0.8rem;
}

.game-content-body img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 1.5rem 0;
}

/* Breadcrumbs */
.breadcrumb-item a {
	color: var(--d1g-text-muted);
}
.breadcrumb-item a:hover {
	color: var(--d1g-cyan);
}
.breadcrumb-item.active {
	color: var(--d1g-accent);
}
.breadcrumb-item + .breadcrumb-item::before {
	color: var(--d1g-text-subtle);
	content: "›";
	font-size: 1.1rem;
}

/* ==========================================================================
   Review Single Spec: Pros & Cons Widget
   ========================================================================== */
.pros-cons-box {
	background: var(--d1g-surface);
	border: 1px solid var(--d1g-border);
	border-radius: 16px;
	padding: 1.75rem;
	margin: 2rem 0;
}

.pros-list li {
	list-style-type: none;
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	color: #e2e8f0;
}
.pros-list li::before {
	content: "\F633";
	font-family: "bootstrap-icons";
	position: absolute;
	left: 0;
	color: var(--d1g-emerald);
	font-weight: bold;
}

.cons-list li {
	list-style-type: none;
	position: relative;
	padding-left: 28px;
	margin-bottom: 10px;
	color: #e2e8f0;
}
.cons-list li::before {
	content: "\F62A";
	font-family: "bootstrap-icons";
	position: absolute;
	left: 0;
	color: var(--d1g-accent);
	font-weight: bold;
}

/* ==========================================================================
   Archive & Category Header
   ========================================================================== */
.archive-hero-header {
	background: radial-gradient(circle at 10% 20%, rgba(0, 229, 255, 0.1), transparent 50%),
	            var(--d1g-surface);
	border-bottom: 1px solid var(--d1g-border);
	padding: 3.5rem 0 2.5rem;
	margin-bottom: 3rem;
}

.archive-hero-header h1 {
	font-size: 2.8rem;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination .page-link {
	background-color: var(--d1g-surface);
	border-color: var(--d1g-border);
	color: var(--d1g-text);
	padding: 0.6rem 1rem;
	font-weight: 600;
	margin: 0 3px;
	border-radius: 8px !important;
	transition: all 0.2s ease;
}

.pagination .page-link:hover {
	background-color: var(--d1g-surface-elevated);
	border-color: var(--d1g-cyan);
	color: var(--d1g-cyan);
}

.pagination .page-item.active .page-link {
	background: linear-gradient(135deg, var(--d1g-accent), #e11d48);
	border-color: transparent;
	color: #ffffff;
	box-shadow: 0 4px 14px var(--d1g-accent-glow);
}

.pagination .page-item.disabled .page-link {
	background-color: transparent;
	border-color: var(--d1g-border);
	color: var(--d1g-text-subtle);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background-color: #07090e;
	border-top: 1px solid var(--d1g-border);
	padding-top: 4.5rem;
	margin-top: 5rem;
	position: relative;
}

.footer-brand p {
	color: var(--d1g-text-muted);
	font-size: 0.95rem;
	margin-top: 1rem;
	max-width: 320px;
}

.footer-col-title {
	font-family: var(--d1g-font-heading);
	font-size: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.footer-col-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--d1g-accent);
}

.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-nav li {
	margin-bottom: 0.75rem;
}

.footer-nav a {
	color: var(--d1g-text-muted);
	font-size: 0.95rem;
	display: inline-flex;
	align-items: center;
	transition: all 0.2s ease;
}

.footer-nav a:hover {
	color: var(--d1g-cyan);
	transform: translateX(4px);
}

.social-links-bar a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--d1g-surface);
	border: 1px solid var(--d1g-border);
	color: var(--d1g-text-muted);
	font-size: 1.2rem;
	margin-right: 8px;
	transition: all 0.25s ease;
}

.social-links-bar a:hover {
	background: var(--d1g-accent);
	color: #ffffff;
	border-color: var(--d1g-accent);
	transform: translateY(-4px);
	box-shadow: 0 6px 16px var(--d1g-accent-glow);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 1.75rem 0;
	margin-top: 3.5rem;
	font-size: 0.9rem;
	color: var(--d1g-text-subtle);
}

/* ==========================================================================
   Back to Top & Search Modal
   ========================================================================== */
.back-to-top-btn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--d1g-accent);
	border: none;
	color: #ffffff;
	font-size: 1.3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 18px var(--d1g-accent-glow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
	z-index: 1000;
	cursor: pointer;
}

.back-to-top-btn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top-btn:hover {
	background: #e11d48;
	transform: translateY(-4px);
	box-shadow: 0 8px 25px var(--d1g-accent-glow);
}

/* Search Modal */
.modal-content-gaming {
	background: rgba(18, 24, 36, 0.96);
	backdrop-filter: blur(20px);
	border: 1px solid var(--d1g-border);
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-search-input {
	background: rgba(10, 13, 20, 0.8);
	border: 2px solid var(--d1g-border);
	border-radius: 12px;
	color: #ffffff;
	padding: 1rem 1.25rem;
	font-size: 1.25rem;
}

.modal-search-input:focus {
	background: rgba(10, 13, 20, 0.98);
	border-color: var(--d1g-cyan);
	color: #ffffff;
	box-shadow: 0 0 20px var(--d1g-cyan-glow);
}

/* 404 Page */
.page-404-container {
	padding: 100px 0;
	text-align: center;
}

.page-404-code {
	font-family: var(--d1g-font-heading);
	font-size: 8rem;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, var(--d1g-accent), var(--d1g-cyan));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(0 0 25px var(--d1g-accent-glow));
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
	.hero-caption {
		padding: 2rem 1.5rem;
	}
	.hero-caption h2 {
		font-size: 2rem;
	}
	.game-title-header h1 {
		font-size: 2.2rem;
	}
	.site-navbar {
		padding: 1rem 0;
	}
}

@media (max-width: 575.98px) {
	.hero-slide-item {
		min-height: 380px;
	}
	.hero-caption h2 {
		font-size: 1.5rem;
	}
	.hero-caption p {
		display: none;
	}
	.page-404-code {
		font-size: 5rem;
	}
}
