/* ============================================
   Vulcron Custom Styles
   Dark theme with accent color system
   ============================================ */

:root {
	--accent: #6c5ce7;
	--accent-light: #a29bfe;
	--accent-glow: rgba(108, 92, 231, 0.3);
	--surface: #12121f;
	--surface-raised: #1a1a2e;
	--surface-elevated: #222240;
	--text-primary: #f0f0f5;
	--text-secondary: #b8b8d0;
	--text-muted: #8585a8;
	--border-subtle: rgba(168, 148, 255, 0.08);
	--border-hover: rgba(168, 148, 255, 0.2);
}

/* ------------------------------------------
   Global Dark Overrides
   ------------------------------------------ */
.dark #wrapper {
	background-color: var(--surface);
}

.dark .content-wrap {
	background-color: var(--surface);
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5 {
	color: var(--text-primary);
}

.dark .emphasis-title h2 {
	color: var(--text-primary);
}

.dark .emphasis-title h2::after {
	background-color: var(--accent) !important;
}

.dark .line {
	border-color: var(--border-subtle);
}

/* ------------------------------------------
   Hero Section
   ------------------------------------------ */
.hero-section {
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 100vh;
}

.hero-section .video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(12, 12, 30, 0.7) 0%, rgba(30, 20, 60, 0.5) 100%);
	z-index: 1;
}

.hero-section .vertical-middle {
	z-index: 2;
}

.hero-section h1 {
	font-size: 64px;
	font-weight: 700;
	letter-spacing: 8px;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #fff;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-section .lead {
	font-size: 20px;
	font-weight: 300;
	color: var(--text-secondary);
	margin-bottom: 30px;
}

.hero-section .button-white {
	border-color: var(--accent-light) !important;
	color: var(--accent-light) !important;
}

.hero-section .button-white:hover {
	background-color: var(--accent) !important;
	border-color: var(--accent) !important;
	color: #fff !important;
}

/* ------------------------------------------
   Page Title / Game Page Heroes
   ------------------------------------------ */
.game-page-hero {
	padding: 120px 0 80px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.game-page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(12, 12, 30, 0.8) 0%, rgba(30, 20, 60, 0.6) 100%);
}

.game-page-hero .container {
	position: relative;
	z-index: 2;
}

.game-page-hero .game-logo {
	max-width: 350px;
	margin-bottom: 20px;
}

.game-page-hero .game-description {
	font-size: 18px;
	color: var(--text-secondary);
	max-width: 550px;
	margin-bottom: 25px;
}

.download-badge {
	display: inline-block;
	margin: 5px 8px 5px 0;
}

.download-badge img {
	width: 160px;
	height: auto;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.download-badge:hover img {
	transform: scale(1.05);
	filter: brightness(1.1);
}

/* ------------------------------------------
   About / Counters Section
   ------------------------------------------ */
.about-section {
	padding: 80px 0;
}

.about-section p.lead {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto 40px;
	color: var(--text-secondary);
}

.counter-box {
	padding: 20px;
}

.counter-box h3 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--accent-light);
}

.counter-box span {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-muted);
}

/* ------------------------------------------
   Game Cards
   ------------------------------------------ */
#section-games .row {
	display: flex;
	flex-wrap: wrap;
}

#section-games .row > [class*="col-"] {
	display: flex;
}

.game-card {
	background: var(--surface-raised);
	border: 1px solid var(--border-subtle);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.game-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 50px rgba(108, 92, 231, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3);
	border-color: var(--border-hover);
}

.game-card .game-card-img {
	position: relative;
	overflow: hidden;
	height: 220px;
}

.game-card .game-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.game-card:hover .game-card-img img {
	transform: scale(1.05);
}

.game-card .game-card-body {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.game-card .game-card-body h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-primary);
}

.game-card .game-card-body p {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 15px;
	line-height: 1.6;
	flex: 1;
}

.game-card .platform-icons i {
	font-size: 18px;
	margin-right: 10px;
	color: var(--text-muted);
	transition: color 0.3s;
}

.game-card:hover .platform-icons i {
	color: var(--accent-light);
}

.game-card .btn-learn-more {
	display: inline-block;
	margin-top: 15px;
	padding: 8px 24px;
	border: 1px solid var(--accent);
	border-radius: 25px;
	color: var(--accent-light);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}

.game-card .btn-learn-more:hover {
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 15px var(--accent-glow);
}

/* ------------------------------------------
   Coming Soon Badge
   ------------------------------------------ */
.badge-coming-soon {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 5;
	box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
}

/* ------------------------------------------
   Feature Boxes — Icon Style (PS3D)
   ------------------------------------------ */
.feature-section {
	padding: 80px 0;
}

.dark .feature-box .fbox-icon i {
	color: #fff !important;
}

.dark .feature-box.fbox-outline .fbox-icon {
	border-color: #2f3533 !important;
	background-color: #2f3533 !important;
}

.dark .feature-box h3 {
	color: var(--text-primary);
}

.dark .feature-box p {
	color: var(--text-secondary);
}

/* ------------------------------------------
   Feature Boxes — Image Style (BT, BAS)
   ------------------------------------------ */
.feature-image-box {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 30px;
	border: 1px solid var(--border-subtle);
	transition: border-color 0.3s, transform 0.3s;
}

.feature-image-box:hover {
	border-color: var(--border-hover);
	transform: translateY(-4px);
}

.feature-image-box img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.4s ease;
}

.feature-image-box:hover img {
	transform: scale(1.03);
}

.feature-image-box .feature-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 25px 20px 20px;
	background: linear-gradient(transparent, rgba(12, 12, 30, 0.9));
}

.feature-image-box .feature-overlay h4 {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ------------------------------------------
   Testimonials
   ------------------------------------------ */
.dark .testimonial.testimonial-full .testi-content p {
	font-size: 20px;
	font-style: italic;
	color: var(--text-secondary);
}

.testimonials-section {
	padding: 60px 0;
	background: var(--surface-raised);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

/* ------------------------------------------
   Contact Form
   ------------------------------------------ */
.contact-section {
	padding: 80px 0;
}

.contact-section h2 {
	margin-bottom: 10px;
	color: var(--text-primary);
}

.contact-section .lead {
	color: var(--text-muted);
	margin-bottom: 40px;
}

.dark .sm-form-control,
.dark .form-control {
	background-color: var(--surface-raised);
	border-color: var(--border-subtle);
	color: var(--text-primary);
}

.dark .sm-form-control:focus,
.dark .form-control:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-glow);
}

.dark select.sm-form-control {
	background-color: var(--surface-raised);
	color: var(--text-primary);
}

.dark label {
	color: var(--text-secondary);
}

.contact-section .button {
	background-color: var(--accent) !important;
	border-color: var(--accent) !important;
	color: #fff !important;
}

.contact-section .button:hover {
	background-color: var(--accent-light) !important;
	border-color: var(--accent-light) !important;
	box-shadow: 0 4px 15px var(--accent-glow);
}

/* ------------------------------------------
   Footer
   ------------------------------------------ */
.dark #footer {
	background-color: var(--surface-raised);
	border-top: 1px solid var(--border-subtle);
}

#footer .footer-widgets-wrap {
	padding: 50px 0;
}

#footer .widget h4 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	color: var(--text-primary);
}

#footer .widget p {
	color: var(--text-muted);
}

#footer .widget ul li {
	margin-bottom: 8px;
}

#footer .widget ul li a {
	color: var(--text-muted);
	transition: color 0.3s;
}

#footer .widget ul li a:hover {
	color: var(--accent-light);
}

.dark #copyrights {
	background-color: var(--surface);
	border-top: 1px solid var(--border-subtle);
	color: var(--text-muted);
}

.dark #copyrights small {
	color: var(--text-muted);
}

/* ------------------------------------------
   Social Icons
   ------------------------------------------ */
#footer .social-icon {
	border-color: var(--border-subtle) !important;
}

#footer .social-icon:hover {
	background-color: var(--accent) !important;
}

/* ------------------------------------------
   Screenshot Gallery
   ------------------------------------------ */
.gallery-section {
	padding: 60px 0;
}

.gallery-section .owl-carousel .oc-item img {
	border-radius: 8px;
	border: 1px solid var(--border-subtle);
}

/* ------------------------------------------
   CTA Section
   ------------------------------------------ */
.cta-section {
	padding: 60px 0;
	background: var(--surface-raised);
	border-top: 1px solid var(--border-subtle);
	border-bottom: 1px solid var(--border-subtle);
}

.cta-section h3 {
	color: var(--text-primary);
}

.cta-section .lead {
	color: var(--text-muted);
}

/* ------------------------------------------
   Video Section
   ------------------------------------------ */
.video-section {
	padding: 60px 0;
}

.video-section .video-placeholder {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	max-width: 800px;
	margin: 0 auto;
	border: 1px solid var(--border-subtle);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.video-section .video-placeholder img {
	width: 100%;
}

/* ------------------------------------------
   Text Helpers — replace inline opacity
   ------------------------------------------ */
.text-body-secondary {
	color: var(--text-secondary) !important;
}

.text-body-muted {
	color: var(--text-muted) !important;
}

/* ------------------------------------------
   Responsive
   ------------------------------------------ */
@media (max-width: 991px) {
	#header.dark.transparent-header,
	#header.dark.semi-transparent {
		background-color: var(--surface-raised);
		border-bottom: 1px solid var(--border-subtle);
	}

	#header.dark #header-wrap {
		background-color: var(--surface-raised);
	}

	.dark #primary-menu ul li {
		border-top-color: var(--border-subtle);
	}

	.hero-section h1 {
		font-size: 42px;
		letter-spacing: 4px;
	}

	.game-page-hero {
		padding: 100px 0 60px;
		text-align: center;
	}

	.game-page-hero .game-description {
		margin-left: auto;
		margin-right: auto;
	}

	.game-page-hero .game-logo {
		max-width: 280px;
	}

	.counter-box {
		margin-bottom: 30px;
	}
}

@media (max-width: 767px) {
	.hero-section h1 {
		font-size: 32px;
		letter-spacing: 3px;
	}

	.hero-section .lead {
		font-size: 16px;
	}

	.game-card .game-card-img {
		height: 180px;
	}

	.game-page-hero .game-logo {
		max-width: 220px;
	}

	.download-badge img {
		width: 140px;
	}
}

@media (max-width: 575px) {
	.hero-section h1 {
		font-size: 26px;
		letter-spacing: 2px;
	}

	.counter-box h3 {
		font-size: 32px;
	}
}
