:root {
	--bg-dark: #0F172A;
	--bg-darker: #0B1120;
	--accent-purple: #7C3AED;
	--neon-blue: #22D3EE;
	--pink-btn: #EC4899;
	--text-light: #F8FAFC;
	--text-muted: #94A3B8;
}

* {
	box-sizing: border-box;
}

body {
	background-color: var(--bg-dark);
	color: var(--text-light);
	font-family: 'Open Sans', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.text-neon {
	color: var(--neon-blue);
	text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

.text-pink {
	color: var(--pink-btn);
}

.section-padding {
	padding: 100px 0;
}

.bg-darker {
	background-color: var(--bg-darker);
}

.btn-pink {
	background-color: var(--pink-btn);
	color: white;
	border: none;
	transition: all 0.3s ease;
	font-weight: 700;
	text-transform: uppercase;
}

.btn-pink:hover {
	background-color: #d63384;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(236, 72, 153, 0.4);
	color: white;
}

.btn-neon {
	background-color: transparent;
	border: 2px solid var(--neon-blue);
	color: var(--neon-blue);
	font-weight: 700;
	transition: all 0.3s ease;
}

.btn-neon:hover {
	background-color: var(--neon-blue);
	color: var(--bg-dark);
}

/* Age Gate */
.age-gate-overlay {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(15, 23, 42, 0.98);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

.age-gate-content {
	max-width: 500px;
	background: #1E293B;
	padding: 40px;
	border-radius: 20px;
	border: 1px solid var(--accent-purple);
	box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

/* Top Bar */
.top-warning-bar {
	background: #ef4444;
	color: white;
	text-align: center;
	font-size: 0.85rem;
	padding: 5px 0;
	font-weight: 600;
}

/* Navbar */
.navbar {
	background: rgba(15, 23, 42, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 15px 0;
}

.navbar-brand .brand-text {
	font-size: 1.5rem;
	font-weight: 900;
	color: var(--text-light);
}

.nav-link {
	color: var(--text-light) !important;
	font-weight: 600;
	margin: 0 15px;
	transition: color 0.3s;
}

.nav-link:hover {
	color: var(--neon-blue) !important;
}

.navbar-toggler {
	color: var(--text-light);
	font-size: 2rem;
	border: none;
}

/* Hero */
.hero-wrapper {
	position: relative;
	height: 80vh;
	min-height: 600px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-bg-slider {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	z-index: 1;
	opacity: 0.3;
}

.slider-track {
	display: flex;
	width: calc(300px * 12);
	animation: scrollBg 40s linear infinite;
}

.game-card-img {
	width: 300px;
	height: 450px;
	object-fit: cover;
	margin: 10px;
	border-radius: 15px;
	filter: grayscale(0.5);
}

@keyframes scrollBg {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-300px * 6)); }
}

.hero-title {
	font-size: 4rem;
	margin-bottom: 20px;
}

.hero-lead {
	font-size: 1.25rem;
	max-width: 700px;
	margin: 0 auto 30px;
}

.hero-features li {
	display: inline-block;
	margin: 0 15px;
	font-weight: 600;
}

.hero-features i {
	color: var(--neon-blue);
	margin-right: 5px;
}

/* About */
.section-title {
	font-size: 2.5rem;
	position: relative;
	padding-bottom: 15px;
}



.text-center .section-title::after {
	left: 50%;
	transform: translateX(-50%);
}

.custom-list {
	list-style: none;
	padding: 0;
}

.custom-list li {
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.custom-list i {
	color: var(--accent-purple);
	font-size: 1.5rem;
	vertical-align: middle;
	margin-right: 10px;
}

/* Games */
.game-card {
	background: #1E293B;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.game-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.game-img-wrap {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.game-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.game-card:hover .game-img-wrap img {
	transform: scale(1.1);
}

.game-info {
	padding: 25px;
	flex-grow: 1;
}

.game-info h3 {
	font-size: 1.4rem;
	margin: 0;
}

.rating {
	color: #fbbf24;
	font-weight: 700;
}

.game-features-small {
	list-style: none;
	padding: 0;
	margin: 15px 0;
	font-size: 0.9rem;
	color: var(--text-muted);
}

.game-features-small li::before {
	content: '•';
	color: var(--neon-blue);
	margin-right: 8px;
}

/* Stats */
.stat-card {
	padding: 30px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
	font-size: 2.5rem;
	margin-bottom: 5px;
}

/* Reviews */
.review-card {
	background: #1E293B;
	padding: 30px;
	border-radius: 20px;
	height: 100%;
	border-left: 4px solid var(--pink-btn);
}

.avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--neon-blue);
}

/* Accordion */
.accordion-item {
	background: #1E293B;
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 10px;
	border-radius: 10px !important;
	overflow: hidden;
}

.accordion-button {
	background: #1E293B;
	color: var(--text-light);
	font-weight: 700;
	padding: 20px;
}

.accordion-button:not(.collapsed) {
	background: var(--accent-purple);
	color: white;
}

.accordion-button::after {
	filter: brightness(0) invert(1);
}

.accordion-body {
	color: var(--text-muted);
	padding: 20px;
}

/* Contact Form */
.contact-form-wrap {
	background: #1E293B;
	padding: 50px;
	border-radius: 30px;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.form-control {
	background: #0F172A;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	padding: 12px 20px;
}

.form-control:focus {
	background: #0F172A;
	border-color: var(--neon-blue);
	box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
	color: white;
}

/* Disclaimer */
.disclaimer-block {
	padding: 60px 0;
	background: #0B1120;
}

.disclaimer-inner {
	background: rgba(239, 68, 68, 0.05);
	border: 1px solid rgba(239, 68, 68, 0.3);
	padding: 40px;
	border-radius: 20px;
}

/* Footer */
.footer {
	background: #070B14;
	padding: 80px 0 30px;
}

.footer-brand .brand-text {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--text-light);
}

.footer-brand{
	text-decoration: none;
}

.footer-legal-text {
	color: var(--text-muted);
	font-size: 0.9rem;
}

.footer-logos img {
	max-width: 130px;
	height: auto;
	transition: transform 0.3s;
}

.footer-links a {
	color: var(--text-muted);
	text-decoration: none;
	margin: 0 15px;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: var(--neon-blue);
}

/* Game Modal */
.game-modal {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
}

.modal-content-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

#game-iframe {
	width: 100%;
	height: 100%;
}

.close-modal-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--pink-btn);
	border: none;
	color: white;
	font-size: 2.5rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	z-index: 10001;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Responsive */
@media (max-width: 1200px) {
	.hero-title { font-size: 3rem; }
	.section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
	.hero-title { font-size: 2.2rem; }
	.hero-features li { display: block; margin: 10px 0; }
	.contact-form-wrap { padding: 30px; }
	.footer-links a { display: block; margin: 10px 0; }
}/* Container padding: top and sides */
.lawMatrixNode {
    padding: 25px 20px 0 20px;
    box-sizing: border-box;
}

/* Typography: Headers with controlled sizes */
.lawMatrixNode h1, 
.lawMatrixNode h2, 
.lawMatrixNode h3, 
.lawMatrixNode h4, 
.lawMatrixNode h5 {
    color: #fff; /* Dark text for light theme */
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.lawMatrixNode h1 { font-size: 1.50rem; }
.lawMatrixNode h2 { font-size: 1.35rem; }
.lawMatrixNode h3 { font-size: 1.20rem; }
.lawMatrixNode h4 { font-size: 1.10rem; }
.lawMatrixNode h5 { font-size: 1.00rem; }

/* Paragraph styling */
.lawMatrixNode p {
    font-size: 1rem;
    line-height: 1.6;
    color: #fff; /* Slightly softer black for readability */
    margin-bottom: 1.2rem;
}

/* List styling */
.lawMatrixNode ul {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    list-style-type: disc;
}

.lawMatrixNode li {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Reset top margin for the first element in the container */
.lawMatrixNode > *:first-child {
    margin-top: 0;
}

.form-control::placeholder{
	color: #fff;
}

main{
	overflow: hidden !important;
}