* {
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

:root {
	--primary-indigo: #1E1B3A;
	--deep-indigo: #2A1E5C;
	--neon-pink: #FF2E9F;
	--neon-blue: #00E5FF;
	--text-light: #F8F9FA;
	--bg-gradient: linear-gradient(135deg, #1E1B3A 0%, #2A1E5C 100%);
}

body {
	background: var(--bg-gradient);
	color: var(--text-light);
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	line-height: 1.6;
}

.age-gate-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 8, 30, 0.98);
	z-index: 10000;
	d-flex: flex;
	justify-content: center;
	align-items: center;
	display: flex;
}

.age-gate-content {
	max-width: 500px;
	padding: 2rem;
	background: var(--deep-indigo);
	border: 2px solid var(--neon-pink);
	border-radius: 20px;
	box-shadow: 0 0 30px rgba(255, 46, 159, 0.3);
}

.top-warning-bar {
	background: #ff0000;
	color: white;
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}

header.navbar {
	background: rgba(30, 27, 58, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 229, 255, 0.2);
	padding: 1rem 0;
}

.brand-name {
	font-weight: 800;
	font-size: 1.5rem;
	background: linear-gradient(to right, var(--neon-pink), var(--neon-blue));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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

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

.btn-neon-pink {
	background: var(--neon-pink);
	color: white;
	border: none;
	font-weight: 700;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn-neon-pink:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 46, 159, 0.4);
	color: white;
}

.btn-neon-blue {
	background: var(--neon-blue);
	color: var(--primary-indigo);
	border: none;
	font-weight: 700;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn-neon-blue:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 229, 255, 0.4);
	color: var(--primary-indigo);
}

.hero-section {
	padding: 100px 0;
	position: relative;
}

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

.avatar-group img {
	width: 45px;
	height: 45px;
	object-fit: cover;
}

.ms-n3 { margin-left: -15px; }

.recent-activity {
	background: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
	font-weight: 800;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
}

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

.custom-list li {
	margin-bottom: 10px;
	font-weight: 500;
}

.game-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.3s;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.game-card:hover {
	transform: translateY(-10px);
	border-color: var(--neon-blue);
}

.game-img-container {
	height: 250px;
	overflow: hidden;
}

.game-img-container img {
	height: 100%;
	object-fit: cover;
}

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

.small-list {
	font-size: 0.85rem;
	padding-left: 1.2rem;
	color: #ccc;
}

.bg-dark-indigo {
	background: #16142e;
}

.stat-item h2 {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.review-card {
	background: rgba(255, 255, 255, 0.03);
	border-radius: 15px;
	border-left: 4px solid var(--neon-pink);
}

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

.accordion-button {
	background: rgba(255, 255, 255, 0.05);
	color: white;
	font-weight: 600;
}

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

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

.contact-form-wrapper {
	background: var(--deep-indigo);
	border: 1px solid rgba(0, 225, 255, 0.3);
}

.form-control {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: white;
	padding: 0.8rem;
}

.form-control:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--neon-blue);
	color: white;
	box-shadow: none;
}

.disclaimer-inner {
	background: rgba(255, 193, 7, 0.05);
	font-size: 0.9rem;
}

.footer {
	background: #0a081e;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
	color: #aaa;
	text-decoration: none;
	font-size: 0.9rem;
}

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

.game-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 11000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.game-modal-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.game-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--neon-pink);
	border: none;
	color: white;
	font-size: 2rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	z-index: 11001;
	cursor: pointer;
}

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

@media (max-width: 1200px) {
	.hero-section h1 { font-size: 2.5rem; }
	.section-title { font-size: 1.8rem; }
}

@media (max-width: 768px) {
	.hero-section { padding: 60px 0; }
	.hero-section h1 { font-size: 1.8rem; }
	.stat-item h2 { font-size: 2rem; }
	.brand-name { font-size: 1.2rem; }
}/* --- Base Typography for lawMatrixNode --- */

.lawMatrixNode {
    /* Main container spacing: top and sides */
    padding: 20px 15px 0 15px;
    /* Light color for dark theme compatibility */
    color: #d1d1d1;
    line-height: 1.6;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Moderate sizes for headings to prevent layout breaking */
.lawMatrixNode h1 {
    font-size: 1.5rem;
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-weight: 600;
}

.lawMatrixNode h2 {
    font-size: 1.3rem;
    margin-top: 1.1rem;
    margin-bottom: 0.7rem;
    color: #ffffff;
    font-weight: 600;
}

.lawMatrixNode h3 {
    font-size: 1.15rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #ececec;
    font-weight: 500;
}

.lawMatrixNode h4 {
    font-size: 1.05rem;
    margin-top: 0.9rem;
    margin-bottom: 0.5rem;
    color: #ececec;
    font-weight: 500;
}

.lawMatrixNode h5 {
    font-size: 1rem;
    margin-top: 0.8rem;
    margin-bottom: 0.4rem;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragraph styling */
.lawMatrixNode p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: justify;
}

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

.lawMatrixNode li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Optional: remove margin from the last element in the container */
.lawMatrixNode > *:last-child {
    margin-bottom: 0;
}


.form-control::placeholder,
.accordion-body{
	color: #fff !important;
}

.navbar-toggler{
	filter: invert(1);
	--webkit-filter: invert(1);
}

footer .footer-brand {
	text-decoration: none !important;
	color: #fff !important;
}