:root {
	--primary-color: #0a3d2e;
	--secondary-color: #1a5c45;
	--accent-color: #ff6b00;
	--light-color: #f8f9fa;
	--dark-color: #212529;
	--gold-color: #ffd700;
	--bronze-color: #dda700;
	--card-bg: #0a3d2e;
	--card-border: #1a5c45;
	--text-color: #ffffff;
	--shadow-color: rgba(0, 0, 0, 0.3);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
  font-family: "myFontTitle";
  src: url("bernard2.otf");
}

@font-face {
  font-family: "myFontPoker";
  src: url("gills4.otf");
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: black;
	color: var(--bronze-color);
	font-family: 'myFontPoker';
	line-height: 1.6;
	min-height: 100vh;
	padding: 20px;
	text-align: center;
	margin: 0 auto;
	padding-top: 123px;
	font-size: 120%;
}

img, video {
	max-width: 90vw;
}

h1 {
	color: var(--gold-color);
	font-family: 'myFontTitle';
	padding-bottom: 5px;
	line-height: 1.2;
}
	
h2 {
	color: var(--bronze-color);
	font-family: 'myFontPoker';
	padding: 2px;
	line-height: 1;
}

p {
	text-shadow: 0px 0px 3px #000;
}

p b {
	color: var(--light-color);
}

a {
	color: var(--gold-color);
}

.background {
	width: 100vw;
	min-width: 1440px;
	height: 100vmin;
	position: fixed;
	left: 50%;
	top: 0px;
	transform: translate(-50%, 0px);
	margin: 0px;
	background-image: url(table.jpg);
	background-size: 100%;
	background-position: center bottom;
	background-position-y: 96vh;
	background-attachment: fixed; 
	filter: blur(2vh);
}

.background2 {
	position: fixed;
	top: 0px;
	left: 50%;
	width: 100vw;
	max-width: 1440px;
	height: 100%;
	transform: translate(-50%, 0px);
	background-image: url(table.jpg);
	background-size: cover;
	background-position: center top;
	background-attachment: fixed; 
	box-shadow: 0px 0px 10px #001600;
}

.titlediv {
	position: fixed;
	top: 0px;
	left: 50%;
	width: 512px;
	max-width: 110vw;
	height: 123px;
	transform: translate(-50%, -123px);
	background-image: url(tabletop.png);
	background-size: contain;
	background-position: center top;
	background-repeat: no-repeat;
	transition: all 1s ease-in-out;
	z-index: 100;
}

.titlediv img {
	position: absolute;
	left: 10%;
	bottom: 15%;
	height:64px;
}

.titlediv h1 {
	line-height:1;
	margin-bottom: -1vh;
}


.container {
	position: relative;
	max-width: 1200px;
	background-color: rgba(10,35,22,0.5);
	backdrop-filter: blur(10px);
	border-radius: 1vmin;
	box-shadow: 0px 0px 3px #000;
	margin:0 auto;
	margin-bottom: 10px;
}

.cscroll {
	min-height: 60vh;
	max-height: 100vh;
	overflow-y: auto;
}


.feature {
	position: relative;
	max-width: 1000px;
	background-color: rgba(10,35,22,0.2);
	backdrop-filter: blur(10px);
	border-radius: 1vmin;
	box-shadow: 0px 0px 3px #000;
	margin:10px auto;
}

.feature p{
	margin-top: 10px;
	line-height: 1;
}

.feature img{
	width: 90%;
	max-width: 770px;
	margin: 5px;
	box-shadow: 0px 0px 3px #080, 5px 5px 15px #000;
	border-radius: 5px;
}

.automat {
	position:relative;
	max-width:95vmin;
	overflow:hidden;
	margin:0 auto;
}

.automat div {
	background: radial-gradient(ellipse at center, rgba(0,0,0,0.5), transparent 60%);
	display:inline-block
}

.automat canvas {
	max-width: 90vmin;
	height: auto !important;
}

.anchor {
	position: relative;
	top: -15vh;
	display: block;
}

footer {
	text-align: center;
	padding: 30px;
	margin-top: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	position: relative;
	text-shadow: 0px 0px 6px #000, 0px 0px 2px #000;
}


@media (max-width: 600px) {
	.cscroll {
		min-height: 80vh;
		padding-top: 2vh;
		padding-bottom: 2vh;
		margin-bottom: 6vh;
		line-height: 1.3;
	}
}