/*******************/
/***** GENERAL *****/
/*******************/

@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --c0: #113D68;
  --c1: #FDEE02;
  --c2: #9b9991;
  --c3: #FFC78B;
  --c4: #3BA549;
  --c5: #F99D25;
  --f01: 'Inter';
}

body {
	font-family: var(--f01), sans-serif;
  	font-size: 15px;
	padding: 0;
	margin: 0;
	background-size: contain;
	background-position: center;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background: var(--c1);
	color: var(--c0);
	/* background: rgb(252, 214, 15);
	background: linear-gradient(
		0deg,
		rgba(252, 214, 15, 1) 0%,
		rgba(255, 245, 195, 1) 100%
	); */
}

* {
	/* Works on Firefox */
	scrollbar-width: thin;
	scrollbar-color: var(--c0) white;
}

*::-webkit-scrollbar {
	width: 12px;
}

*::-webkit-scrollbar-track {
	background: var(--c0);
}

*::-webkit-scrollbar-thumb {
	background-color: var(--c0);
	border-radius: 10px;
	border: 3px solid white;
}

*:focus {
	outline: none !important;
	box-shadow: none;
}

.top-bar {
	background: var(--c4);
	color: white;
	display: flex;
    padding: 0.5em 1em;
}

.top-bar .logo-disney {
	margin-left: auto;
}

.language__switcher {
	position: fixed;
    left: 1em;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    aspect-ratio: 1;
	z-index: 9999;
}

.language__switcher a {
	background: var(--c0);
    color: var(--c1);
    position: relative;
    text-decoration: none;
    font-family: var(--f01), sans-serif;
    letter-spacing: 0.5px;
    line-height: 24px;
    border-radius: 100%;
    text-align: center !important;
    margin: 0 auto !important;
    flex-direction: column;
    padding: 10px;
    width: 20px;
    height: 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language__switcher a.active {
	display: none;
}

a {
	text-decoration: none;
}

section {
	padding: 2em;
}

.container {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
}

p {
	font-family: var(--f01), sans-serif;
	font-weight: bold;
}

.char_01,
.char_02,
.char_03 {
	position: absolute;
    max-width: 500px;
    width: 100%;
    height: auto;
	top: 10%;
}

.char_01 {
	right: 50%;
    transform: translate(-60%);
}

.char_02 {
    left: 50%;
    transform: translate(60%);
}

.content {
	text-align: center;
	/* overflow: hidden; */
	overflow-x: clip;
}

.content .backgrounds {
	position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.content .backgrounds img {
	position: absolute;
}

.content .backgrounds .bg-left {
	left: 0;
	bottom: 0;
}

.content .backgrounds .bg-top {
	left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
}

.content .backgrounds .bg-right {
	right: 0;
	bottom: 0;
}

.content .backgrounds .bg-bottom {
	left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.content .container {
	position: relative;
	margin-top: -30px;
	border-radius: 30px 30px 0 0;
}

.content .container .logo {
	max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

.characters {
	bottom: 40px;
	position: absolute;
	left: -70px;
}

.content .inner {
	max-width: 650px;
	width: 100%;
	margin: 0 auto;
}

.content .inner-wide {
	max-width: 750px;
}

.content .divide {
	margin: 2em auto;
	filter: brightness(100) saturate(100%);
}

.content .heading {
	font-family: var(--f01);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 32px;
    margin: 0 auto 2em;
    color: var(--c5);
    line-height: 120%;
}

.content .heading span {
	color: var(--c0);
}

.content .subheading {
	font-size: 30px;
}

.content p:first-of-type {
	margin-top: 0;
}

/*************/
/**** AGE ****/
/*************/

#age  {
    margin-top: 3em;
}

#age .inner {
	margin: 1em auto;
	padding: 0 3em 3em 3em;
}

#age .fields  {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 1em;
}

#age .arrow {
    position: relative;
    width: 100%;
    height: auto;
}

#age .arrow:after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--c5);
    font-size: 20px;
    pointer-events: none;
}

#age select {
    font-size: 16px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    border: 1px solid var(--c5);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 1em;
    appearance: none;
    cursor: pointer;
}

#age .btn-continue {
    font-family: var(--f01), sans-serif;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 30px;
	padding: 0.5em 2em;
	border-radius: 100px;
	width: 100%;
	margin: 2em auto 1em;
	cursor: pointer;
	display: block;
	border: 0;
	max-width: fit-content;
	line-height: 100%;
	background: var(--c4);
	color: white;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


/*******************/
/**** FORBIDDEN ****/
/*******************/

#forbidden {
	padding: 5em 2em;
}

#forbidden .inner {
	max-width: 750px;
}

#forbidden .heading {
	font-size: 40px;
	line-height: normal;
	margin-bottom: 1em;
	color: var(--c0);
}

#forbidden .subheading {
    font-size: 18px;
	color: var(--c5);
}

#forbidden .btn-return {
    font-family: var(--f01), sans-serif;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 30px;
	padding: 0.5em 2em;
	border-radius: 100px;
	width: 100%;
	margin: 2em auto 1em;
	cursor: pointer;
	display: block;
	border: 0;
	max-width: fit-content;
	line-height: 100%;
	background: var(--c4);
	color: white;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/********************************/
/**** PRELAUNCH & POSTLAUNCH ****/
/********************************/

.prelaunch .content .container .logo,
.postlaunch .content .container .logo {
	max-width: 400px;
}

#prelaunch > .inner,
#postlaunch > .inner  {
	max-width: 520px;
}

#prelaunch .char_01,
#prelaunch .char_02,
#postlaunch .char_01,
#postlaunch .char_02 {
	max-width: 400px;
}

#prelaunch .char_01,
#postlaunch .char_01 {
	right: 55%;
}

#prelaunch .char_02,
#postlaunch .char_02 {
	left: 55%;
}

#prelaunch .heading,
#postlaunch .heading {
	font-size: 48px;
	margin: 0 auto 1em auto;
}

#prelaunch .heading span,
#postlaunch .heading span {
	color: var(--c0);
}

#prelaunch .subheading,
#postlaunch .subheading {
	color: var(--c0);
	font-weight: normal;
	font-size: 20px;
}

#prelaunch .images,
#postlaunch .images {
	bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: auto;
    right: auto;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

#prelaunch .images img,
#postlaunch .images img {
	width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/********************/
/****** PRIZES ******/
/********************/

#prizes {
	margin-bottom: -4em;
}

#prizes .title {
	max-width: 500px;
    width: 100%;
}

#prizes .btn-register {
	font-family: var(--f01), sans-serif;
	text-transform: uppercase;
	font-size: 28px;
	color: white;
	padding: 0.5em 1em;
	border-radius: 100px;
	width: 100%;
	margin: 1em auto;
	cursor: pointer;
	display: block;
	max-width: fit-content;
	line-height: 100%;
	background-color: var(--c4);
	z-index: 1;
	position: relative;
	top: 0;
	font-weight: 600;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#prizes .btn-register:after {
	content: "";
	border: 8px solid var(--c1);
	border-radius: 100px;
	position: absolute;
	left: -17px;
	right: -17px;
	top: -17px;
	bottom: -17px;
}

#prizes .grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	display: grid;
	margin-top: 3em;
	gap: 5em 3em;
}

#prizes .item {
	background: white;
	border-radius: 15px;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	position: relative;
}

#prizes .item .icon {
	position: relative;
	z-index: 1;
	max-width: 275px;
	width: 100%;
	max-height: 250px;
	height: 100%;
	object-fit: contain;
	top: -30px;
}

#prizes .item:nth-child(3) .icon {
	top: 0;
	max-height: 220px;
}

#prizes .item .lines {
	position: absolute;
	top: -1em;
	right: -1em;
}

#prizes .item .heading {
	font-size: 36px;
	color: #e12726;
	transform: rotate(-5deg);
	margin-top: 0.5em;
	position: absolute;
	bottom: -25px;
}

#prizes .heading {
	font-size: 45px;
	color: var(--c1);
	text-transform: uppercase;
	line-height: 110%;
}

#prizes .heading span {
	font-size: 90px;
	line-height: 90%;
	display: block;
	color: white;
	font-weight: 100;
}

#prizes .images {
	bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: auto;
    right: auto;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

#prizes .images img {
	width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

#prizes .images .characters-animate {
	position: relative;
}

#prizes .images .characters-animate .base {
	z-index: 3;
	position: relative;
}

#prizes .images .characters-animate .eye {
	position: absolute;
	left: 190px;
	z-index: 4;
	top: 38px;
}

#prizes .images .characters-animate .frame {
	position: absolute;
	left: 171px;
	top: 12px;
	z-index: 5;
}

/********************/
/*** REGISTRATION ***/
/********************/

#registration {
	/* padding-bottom: 0; */
}

#registration .char_01 {
	max-width: 400px;
    right: 70%;
	left: inherit;
	top: 60%;
	transform: translate(-60%);
}

#registration .char_02 {
	max-width: 400px;
    right: 70%;
	left: inherit;
	transform: translate(-60%);
}

#registration .char_03 {
	left: 55%;
    right: inherit;
    transform: translate(60%);
}

#registration .fields {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 2em;
}

#registration label {
	text-align: left;
    margin: 0 auto 1em 0;
    color: var(--c0);
    font-size: 16px;
    font-weight: bold;
}

#registration input,
#registration textarea,
#registration select {
	font-family: var(--f01), sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: black;
    text-align: left;
    border-radius: 15px;
    box-shadow: none;
    padding: 1em 1.5em;
    margin-bottom: 1em;
    width: 100%;
    border: 2px solid #D1D6E2;
}

#registration select {
	width: 100%;
	appearance: none;
}

#registration select:after {
	content: "&";
	position: absolute;
	right: 0;
	top: 40%;
}

#registration .checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

#registration .checkbox:last-of-type {
	margin-bottom: 0;
}

#registration .checkbox input {
	display: none;
	visibility: none;
}

#registration .checkbox label {
	display: flex;
	align-items: center;
	position: relative;
	text-align: left;
	font-weight: bold;
	cursor: pointer;
}

#registration .checkbox label:before {
	content: "";
	border-radius: 100%;
	border: 3px solid var(--c5);
	width: 20px;
	height: 20px;
	aspect-ratio: 1;
	display: inline-block;
	margin-right: 0.5em;
	cursor: pointer;
}

#registration .checkbox label:after {
	content: "";
	font-family: "Font Awesome 6 Pro";
	color: var(--c0);
	font-size: 26px;
	position: relative;
	font-weight: bold;
	cursor: pointer;
}

#registration .checkbox input:checked + label:after {
	content: "\f00c";
	left: 6px;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	bottom: 3px;
}

#registration input::placeholder,
#registration textarea::placeholder,
#registration select::placeholder {
	opacity: 0.25;
	color: inherit;
}

#registration .upc-code {
	margin-top: 2em;
	border-radius: 15px;
	width: calc(100% - 4em);
	padding: 2em;
	max-width: 100%;
	display: block;
	box-shadow: inset 0 0 0 3px var(--c0);
}

#registration .upc-code .heading {
	font-size: 30px;
}

#registration .upc-code .subheading {
	font-size: 20px;
	font-weight: normal;
	margin-top: 0.5em;
}

#registration .upc-code input {
	background-color: white;
	border: 0;
	box-shadow: none;
	color: var(--c0);
}

#registration button[type="submit"] {
	font-family: var(--f01), sans-serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 30px;
	color: white;
	padding: 0.5em 1em;
	background: var(--c4);
	border-radius: 15px;
	border: 0;
	width: 100%;
	margin-top: 1em;
	cursor: pointer;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

#registration button[type="submit"]:hover {
	transform: translate(0, -5px);
}

#registration .disclaimer {
	margin-top: 2em;
}

#registration .disclaimer p {
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}

#registration .error-message {
	color: var(--c0);
	margin-top: 1em;
	font-style: italic;
}

#registration .characters-animate {
	bottom: 0;
	position: absolute;
	left: -50px;
}

#registration .characters-animate .base {
	z-index: 3;
	position: relative;
}

#registration .characters-animate .eye {
	position: absolute;
	left: 74px;
	z-index: 4;
	top: 241px;
}

#registration .characters-animate .frame {
	position: absolute;
	left: 50%;
	top: 215px;
	z-index: 5;
	transform: translate(-48px, 0);
}

.spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-left: 10px;
	border: 3px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s ease-in-out infinite;
	vertical-align: middle;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.btn-loading {
	opacity: 0.7;
	cursor: not-allowed;
}

.btn .spinner {
	display: none;
}

.btn-loading .spinner {
	display: inline-block !important;
}

/*******************/
/**** THANK YOU ****/
/*******************/

.thankyou .content .container .logo {
	max-width: 400px;
}

#thankyou > .inner {
	max-width: 520px;
}

#thankyou .char_01,
#thankyou .char_02 {
	max-width: 400px;
}

#thankyou .char_01 {
	right: 55%;
}

#thankyou .char_02 {
	left: 55%;
}

#thankyou .heading {
	font-size: 48px;
	margin: 0 auto 1em auto;
}

#thankyou .heading span {
	color: var(--c0);
}

#thankyou .subheading {
	color: var(--c0);
	font-weight: normal;
	font-size: 20px;
}

#thankyou .images {
	bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    left: auto;
    right: auto;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

#thankyou .images img {
	width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/*************/
/*** RULES ***/
/*************/

#rules {
	max-width: 620px;
    margin: 3em auto;
	background: var(--c3);
    border-radius: 20px;

	* {
		color: var(--c0) !important;
		font-family: var(--f01), sans-serif !important;
		font-weight: normal !important;
		line-height: 140% !important;
		text-align: left !important;
	}

	.inner {
		width: 100%;
	}

	h1 {
		text-align: center !important;
		font-weight: bold !important;
		text-transform: uppercase;
	}

	h2 {
		font-size: 18px !important;
		text-transform: uppercase !important;
		font-weight: bold !important;
	}

	h3 {
		font-size: 14px !important;
		text-transform: uppercase !important;
		font-weight: bold !important;
	}       

	p, ul, li {
		font-size: 12px !important;
	}

	strong {
		font-weight: bold !important;
	}

	.product-section {
		margin-bottom: 40px;
	}

	.product-section h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.product-section table {
		width: 100%;
		border-collapse: collapse;
		background: #0898d7;
		border-radius: 10px;
		overflow: hidden;
	}

	.product-section th {
		background: rgba(67, 90, 154, 0.8);
		padding: 15px;
		text-align: left;
		font-weight: bold;
	}

	.product-section td {
		padding: 15px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
	}
}

/**************/
/*** FOOTER ***/
/**************/

footer {
	text-align: center;
	padding: 4em 2em;
	position: relative;
	margin-top: auto;
}

footer nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1em;
}

footer nav a {
	font-family: var(--f01), sans-serif;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
	text-decoration: none;
	color: #113D68;
	background: var(--c1);
	border-radius: 20px;
	padding: 1em 2em;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

footer .copyright {
	position: absolute;
    right: 2em;
    bottom: 2em;
}

/********************/
/**** RESPONSIVE ****/
/********************/

@media only screen and (max-width: 960px) {

	#age .inner {
		padding: 0;
	}

	#age .fields {
		grid-template-columns: 1fr;
	}

	#forbidden .heading,
	#prelaunch .heading,
	#postlaunch .heading,
	#thankyou .heading {
		font-size: 30px;
	}

	footer {
		padding-bottom: 6em;
	}
}

@media only screen and (max-width: 800px) {
	.content .backgrounds {
		opacity: 0.2;
	}
}

@media only screen and (max-width: 600px) {
	body {
		min-height: auto;
	}

	#registration .characters-animate .eye {
		left: 47%;
	}

	.content .container:before {
		-webkit-clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
		clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
	}

	.content .container .logo {
		max-width: 90%;
	}

	.characters {
		left: 0;
	}

	#prizes .btn-register {
		font-size: 26px;
	}

	#prizes .item {
		height: 190px;
	}

	#prizes .item .icon {
		max-height: 190px;
	}

	#prizes .item:nth-child(3) .icon {
		max-height: 160px;
	}

	#prizes .heading {
		font-size: 30px;
	}

	#prizes .heading span {
		font-size: 70px;
	}

	#prizes .images {
		flex-direction: column;
	}

	#registration input,
	#registration textarea {
		font-size: 16px;
	}

	#recipes .grid {
		display: block;
	}

	#recipes .grid a {
		margin-bottom: 1em;
		display: block;
	}

	#recipes .grid a img {
		max-height: 250px;
		height: 100%;
		object-fit: cover;
	}

	#postlaunch .characters-animate .frame {
		left: 48%;
	}

	footer {
		margin-top: 0;
	}

	footer nav {
		flex-direction: column;
	}

	footer nav a {
		opacity: 1;
	}
}

@media only screen and (max-width: 450px) {
	.content .container {
		margin-top: 130px;
	}

	.content .container .logo {
		margin: -70px 0 0 calc(10% - 10px);
	}
}
