/* Reset */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	min-height: -webkit-fill-available;
}

body {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	font-family: 'Segoe UI', sans-serif;
	line-height: 1.6;
	scroll-behavior: smooth;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgb(15, 23, 42);
	border-bottom: 1px solid rgb(30, 41, 59);
	z-index: 999;
	padding: 1rem 0;
	backdrop-filter: blur(8px);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media (max-width: 768px) {
	.site-header-container{
		margin: 0 auto;
		width: 100%;
	}
}

.logo {
	font-weight: bold;
	font-size: 1.5rem;
}

.logo img {
	height: 40px;
	width: auto;
	display: block;
}

.site-nav a {
	margin-left: 1.5rem;
	font-weight: 500;
}

.site-nav a:hover {
	color: rgb(243, 253, 255);
}

/* Sections */
.section {
	padding: 1rem 4rem 0;
}

.full-height {
	min-height: calc(100vh - 100px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.full-height .btn-primary{
	font-size: 1.2rem;
}

h1, h2 {
	margin-bottom: 0;
	font-size: 2.5rem;
	font-weight: 700;
}

ul {
	list-style: disc;
	padding-left: 1.5rem;
}

@media (max-width: 768px) {
	.site-nav a {
		margin-left: 0.5rem;
		font-size: 0.9rem;
	}

	.logo {
		font-size: 1.2rem;
	}
}



.card-body-head{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.8rem;
}
.circles{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap:1rem;
}


@media (max-width: 1326px) {
	.section {
		padding: 1rem 1rem 0;
		width: 100%;
	}
}
@media (max-width: 1226px) {
	.section .container{
		width: 100%;
	}
}
@media (max-width: 560px) {
	.section .container{
		width: 100%;
		margin: 0 0;
		padding: 0 0;
	}
}


.error-notification,
.game-interface-notification,
.loading-spinner-holder{
	display: flex;
	align-items: center;
	justify-content: center;
}


.section-about {
	padding: 1rem 4rem;
}
.section-about .container{
	width: 100%;
}
@media (max-width: 768px) {
	.section-about {
		padding: 4rem 0.5rem 0;
	}
}
.section-about .container.container-features{
	max-width: 1600px;
}

#features, #demo{
	height: 100px;
}
@media (max-width: 768px) {
	#features, #demo{
		height: 0;
	}
}

#features, #contact{
	height: 100px;
}
@media (max-width: 768px) {
	#features, #contact{
		height: 0;
	}
}

.subheader-links{
	display: flex;
	flex-direction: row;
	gap: 2rem;
	justify-content: center;
}

.psyloom_ad{
	margin: 0.5rem 0;
	text-align: right;
}