@font-face {
	font-family: graphik-bold;
	src: url(https://skinnyserver.co.nz/fdspm/Graphik-Bold.otf);
}

@font-face {
	font-family: graphik-regular;
	src: url(https://skinnyserver.co.nz/fdspm/Graphik-Regular.otf);
}

@font-face {
	font-family: graphik-semibold;
	src: url(https://skinnyserver.co.nz/fdspm/Graphik-Semibold.otf);
}

* {
	box-sizing: border-box;
	outline: none;
}

html,
body {
	margin: 0;
	padding: 0;
	font-size: 62.5%;
	color: #113d60;
	font-family: "graphik-regular";
	min-height: 100%;
}

body {
	background-color: #652d91;
	font-family: "graphik-regular", sans-serif;
	background-image: url("https://skinnyserver.co.nz/fdspm/DesktopBackground.png");
	background-size: cover;
	background-position: top center;
	padding-top: 5rem;
}

.bold {
	font-family: "graphik-bold", sans-serif;
}

#loadingVideo {
	width: 100%;
	height: 100%;
	min-width: 100vw;
	min-height: 100vh;
}

.cloakContainer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999999;
	background: rgb(254,84,14);
	background: -moz-linear-gradient(180deg, rgba(254,84,14,1) 0%, rgba(177,25,118,1) 43%, rgba(104,13,176,1) 95%);
	background: -webkit-linear-gradient(180deg, rgba(254,84,14,1) 0%, rgba(177,25,118,1) 43%, rgba(104,13,176,1) 95%);
	background: linear-gradient(180deg, rgba(254,84,14,1) 0%, rgba(177,25,118,1) 43%, rgba(104,13,176,1) 95%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fe540e",endColorstr="#680db0",GradientType=1);
	/* background-image: url("https://skinnyserver.co.nz/fdspm/DesktopBackground.png"); */
	background-size: cover;
	background-position: top center;
	overflow: hidden;  /* Add this */
	max-height: 100vh;  /* Add this */
	/* transition: all 0.3s ease;  Add this for smoother animation */
}

.cloakImage {
	width: 100%;
	height: 100%;
	display:flex;
	justify-content: center;
	align-items: center;
	background-size: cover;
	background-position: top center;
	overflow: hidden;
}

.spin-image {
	width: 300px;
	height: 300px;
	animation: spin 2s linear infinite;
	transform-style: preserve-3d;
}

@keyframes spin {
	from {
		transform: rotateY(0deg);
	}

	to {
		transform: rotateY(360deg);
	}
}

.container {
	max-width: 1024px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	text-align: center;
	padding: 40px 0px;
	z-index: 99;
}

.matchandwinlogo {
	max-width: 400px;
	width: 90%;
}

.partnerlogo {
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}

p.keyboard {
	color: #ffffff;
	font-size: 1.7rem;
}

p {
	color: #ffffff;
	font-size: 2rem;
}

.number-keyboard {
	display: inline-block;
	border-radius: 5px;
	padding: 10px;
	max-width: 350px;
	width: 100%;
	margin: 10px auto;
}

.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.row:last-child {
	justify-content: space-between;
}

.number-keyboard button {
	width: 31%;
	padding: 9% 0;
	font-size: 40px;
	border: none;
	background-color: #ffffff;
	border-radius: 5px;
	cursor: pointer;
	font-family: "graphik-bold", sans-serif;
	color: #5a5a5a;
}

.hiddenButton {
	opacity: 0.7;
}

.keyboardFlyNumber {
	margin-top: 2rem;
}

.flyNumContainer {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.flyeach {
	font-family: "graphik-bold", sans-serif;
	color: #ffffff;
	font-size: 2rem;
}

.flyeach:nth-child(4n) {
	margin-right: 2rem; /* Adjust the margin value to your preference */
}

.lineUnder {
	border-bottom: 1px solid #fff;
	min-width: 2rem;
	margin-right: 0.5rem;
}

.goButton {
	margin-top: 2rem;
}

.goButton button {
	background-color: #ffffff;
	border-radius: 5px;
	padding: 10px 20px;
	font-size: 2rem;
	border: none;
	cursor: pointer;
	font-family: "graphik-bold", sans-serif;
	color: #5a5a5a;
}

.scoreHeading {
	margin-top: 2rem;
	color: #ffffff;
	font-size: 2rem;
	font-family: "graphik-bold", sans-serif;
}

.scoretable {
	margin-top: 2rem;
	color: #ffffff;
	font-size: 1.7rem;
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
}

.scoretable li {
	margin-bottom: 1rem;
	margin-left: 0;
	padding-left: 0;
}

.tempHiddenFB {
	margin-top: 5rem;
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: none;
	margin: 1rem auto;
	background-color: #ffffff;
	max-width: 200px;
	text-align: center;
	font-family: "graphik-bold", sans-serif;
	text-transform: uppercase;
	color: #333333;
	opacity: 0.4;
}

.instructionsContainer {
	max-width: 400px;
	width: 90%;
	margin: 2rem auto;
}

.instructicon {
	margin: 0rem auto 4rem auto;
}

.prizeDescription {
	color: #FFFFFF;
	font-size: 4rem;
	font-family: "graphik-bold", sans-serif;
	text-transform: uppercase;
}


@media (max-width: 768px) {
	.prizeDescription {
		font-size: 3rem;
	}
}

.thanks {
	color: #FFFFFF;
	font-size: 2.5rem;
	font-family: "graphik-bold", sans-serif;
	text-transform: uppercase;
}

.tempButton {
	background-color: #173557;
	color: #ffffff;
	border: none;
	padding: 15px 40px;
	font-size: 1.7rem;
	font-family: Arial;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	text-decoration: none;
	text-align: center;
	margin: 20px auto;
	position: relative;
}

.playHeading {
	margin-top: 2rem;
	color: #ffffff;
	font-size: 2rem;
	font-family: "graphik-bold", sans-serif;
}

.highScoreCover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 999;
	display: none;
}

.highScorePopup {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	padding: 2rem;
	border-radius: 5px;
	z-index: 9999;
	background-color: #652d91;
	text-align: center;
	color: #ffffff;
	font-size: 1rem;
	max-width: 350px;
	width: 90%;
}

/* .bpcoin {
	position: relative;
	margin: 2rem auto;
	max-width: 200px;
	width: 100%;
} */

#initials {
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	border: none;
	margin: 1rem auto;
	background-color: #ffffff;
	max-width: 80px;
	text-align: center;
	font-family: "graphik-bold", sans-serif;
	text-transform: uppercase;
	color: #333333;
}

#submitinitials {
	border: none;
	max-width: 100px !important;
	padding: 1.2rem 1rem !important;
}

.joinnow {
	margin-top: 30px;
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: -15px;
}

.terms {
	margin-top: 30px;
	font-size: 1.5rem;
	color: #ffffff;
}

.brandLogo {
	padding: 0.5rem 1rem;
	background-color: #ffffff;
	border-radius: 15px;
	width: fit-content;
	margin: 0 auto;
}

.initialsDIV {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.initialsDIV input {
	text-align: center;
	font-size: 2rem;
	border-radius: 5px;
	border: none;
	padding: 1rem 2rem;
}

