/* Variables */
:root {
	--green: #014507;
	--green-dark: #004f07;
	--green-darker: #002804;
	--red: #ee1d23;
	--red-error: #ff0000;
	--gray: #d9d9d9;
	--white: #ffffff;

	/* Font sizes (rem, base 16px) */
	--fs-8: 0.5rem; /* 8px */
	--fs-10: 0.625rem; /* 10px */
	--fs-11: 0.6875rem; /* 11px */
	--fs-14: 0.875rem; /* 14px */
	--fs-15: 0.9375rem; /* 15px */
	--fs-16: 1rem; /* 16px */
	--fs-20: 1.25rem; /* 20px */
	--fs-24: 1.5rem; /* 24px */
	--fs-32: 2rem; /* 32px */
	--fs-36: 2.25rem; /* 36px */
	--fs-40: 2.5rem; /* 40px */
	--fs-48: 3rem; /* 48px */
	--fs-64: 4rem; /* 64px */
	--fs-80: 5rem; /* 80px */
	--fs-128: 8rem; /* 128px */
	--fs-150: 9.375rem; /* 150px */
	--fs-220: 13.75rem; /* 220px */
}

html {
	scroll-behavior: smooth;
}

/* Fonts */
@font-face {
	font-family: "Gothic";
	src: url("../fonts/gothic821cnbtrusbyme.otf") format("opentype");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

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

/* Base */
html,
body {
	overflow-x: hidden;
}

html, h1, h2, h3, h4, h5, h6, b, strong {
	font-family: "Gothic", Arial, sans-serif;
	font-weight: normal;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100vh;
}

img,
picture,
video,
svg {
	display: block;
	max-width: 100%;
}

/* Age Gate Page */
.age-gate {
	min-height: 100vh;
	background-color: var(--green);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-x: hidden;
}

.age-gate__bg {
	position: absolute;
	inset: 0;
	background-image: url("../images/pattern-1.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 1;
	pointer-events: none;
}

.age-gate__bush {
	position: absolute;
	bottom: 0;
	width: 600px;
	height: auto;
	z-index: 1;
}

.age-gate__bush--left {
	left: 0;
}

.age-gate__bush--right {
	right: 0;
}

.age-gate__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	position: relative;
	z-index: 2;
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
}

.age-gate__logo {
	width: 350px;
	height: auto;
}

.age-gate__abc {
	width: 350px;
	height: auto;
}

.age-gate__abc--mobile {
	display: none;
	width: 150px;
}

.age-gate__main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 40px 40px 40px;
	position: relative;
	z-index: 2;
}

.age-gate__title {
	color: var(--white);
	font-size: var(--fs-80);
	text-align: center;
	margin-bottom: 1rem;
}

.age-gate__form {
	display: flex;
	flex-direction: column;
	align-items: center;
	/* gap: 1rem; */
	width: 100%;
	max-width: 900px;
}

.age-gate__inputs {
	display: flex;
	gap: 7.5rem;
	width: 100%;
	justify-content: center;
}

.age-gate__inputs input {
	height: 130px;
	width: 400px;
	padding: 1.5rem 2rem;
	background-color: var(--green-darker);
	border-radius: 35px;
	color: var(--white);
	font-family: inherit;
	font-size: var(--fs-80);

	text-align: center;
	border: none;
}

.age-gate__inputs input::placeholder {
	color: var(--green-dark);
	opacity: 1;
}

.age-gate__inputs input:focus {
	outline: none;
	border-color: var(--white);
}

.age-gate__error {
	color: var(--red);
	font-size: var(--fs-32);
	text-align: center;
	font-family: Arial, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
}
.age-gate__error-container {
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.age-gate__error[hidden] {
	display: none;
}

.age-gate__checkbox {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--white);
	font-size: var(--fs-32);
	cursor: pointer;
	font-family: Arial, sans-serif;
	font-weight: 300;
	/* margin-top: 60px; */
	user-select: none;
	margin-bottom: 20px;
}

.age-gate__checkbox input {
	width: 1.25rem;
	height: 1.25rem;
	cursor: pointer;
	margin-top: 2px;
	appearance: none;
	background-color: var(--gray);
	border: none;
	border-radius: 2px;
}

.age-gate__checkbox input:checked {
	background-color: #018706;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
	background-size: 100%;
	background-position: center;
}

.age-gate__submit {
	background-color: var(--green-darker);
	border: none;
	border-radius: 35px;
	color: var(--white);
	font-family: inherit;
	font-size: var(--fs-64);

	padding: 1rem 5rem;
	cursor: pointer;
	transition: background-color 0.2s;
	height: 110px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	outline: none;
}
.hero {
	margin-top: -100px;
	padding-top: 100px;
}
.hero__button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	position: relative;
}

.hero__button {
	background-color: var(--green-darker);
	border: none;
	border-radius: 35px;
	color: var(--white);
	font-family: inherit;
	font-size: 76px;

	padding: 1rem 2.5rem;
	cursor: pointer;
	transition: background-color 0.2s;
	height: 110px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	outline: none;
	white-space: nowrap;
	text-decoration: none;
	margin: 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.age-gate__footer {
	text-align: center;
	padding: 0rem 1rem 2rem 1rem;
	color: var(--white);
	font-size: var(--fs-20);
	text-transform: uppercase;
	line-height: 1.8;
	position: relative;
	z-index: 2;
}
footer {
	padding-bottom: 3rem !important;
}

.age-gate__footer p {
	margin: 0;
}

.age-gate__footer a {
	color: inherit;
	text-decoration: none;
}

.age-gate__footer a:hover {
	text-decoration: underline;
}
.hero__button-container {
	margin-right: 30vw;
	margin-top: 0;
}

/* ===================== */
/* Hero Section          */
/* ===================== */

.hero {
	position: relative;
	background-image: url("../images/bg.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero__gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 400px;
	background: linear-gradient(to bottom, transparent, var(--green));
	pointer-events: none;
}

.prizes__gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 400px;
	background: linear-gradient(to top, transparent, var(--green));
	pointer-events: none;
}

.prizes__gradient--bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 400px;
	background: linear-gradient(to bottom, transparent, var(--green));
	pointer-events: none;
}
.hero__images {
	display: flex;
	justify-content: space-between;
	font-size: clamp(0.1rem, 0.84vw, 0.55rem);
	align-items: center;
	margin-left: -3em;
	z-index: 1;
	position: relative;
	max-width: 1070px;
	margin-left: auto;
	margin-right: auto;
}

.hero__container {
	max-width: 1920px;
	margin: 0 auto;
	padding-top: 2rem;
	padding-bottom: 12.5rem;
}
.hero__left {
	display: flex;
	flex-direction: column;
}

.hero__logo {
	width: 38em;
	height: auto;
	margin-left: 6em;
}

.hero__title {
	width: 76em;
	height: auto;
	margin-left: 6em;
}

.hero__zubr {
	width: 40em;
	height: auto;
	margin-right: 3em;
}
.hero__left {
	gap: 10em;
}
.hero__abc {
	width: 10em;
	height: auto;
	margin-right: 3em;
	position: absolute;
	top: 4.5em;
	right: -5em;
}
.nav__container {
	background-color: var(--green);
	border-radius: 0 0 200px 200px !important;
	padding: 0 3.5rem !important;
}

/* Mobile styles */
@media (max-width: 1919px) {
	.hero__container {
		padding-bottom: 10em;
	}
}

@media (max-width: 1699px) {
	.hero__container {
		padding-bottom: 8em;
	}

	.age-gate__inputs {
		gap: 5rem;
	}
	.age-gate__inputs input {
		width: 300px;
		border-radius: 20px;
	}
	.age-gate__submit {
		border-radius: 30px;
	}
	.age-gate__checkbox {
		font-size: var(--fs-24);
	}
	.age-gate__abc {
		width: 300px;
	}
	.age-gate__logo {
		width: 300px;
	}
	.age-gate__bush {
		width: 500px;
	}
	.age-gate__error {
		font-size: var(--fs-24);
	}
	.age-gate__error-container {
		height: 64px;
	}
}

@media (max-width: 1279px) {
	.hero__container {
		padding-bottom: 6em;
	}
	.hero__button-container {
		margin-right: 26vw;
		margin-top: 0;
	}

	.hero__button {
		background-color: var(--green-darker);
		border: none;
		border-radius: 30px;
		color: var(--white);
		font-family: inherit;
		font-size: 56px;
		padding: 1rem 2rem;
	
		cursor: pointer;
		transition: background-color 0.2s;
		height: 90px;
		box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
		outline: none;
		white-space: nowrap;
		text-decoration: none;
		margin: 0 auto;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.nav__container {
		padding: 0 4rem !important;
	}

	.age-gate__abc {
		width: 250px;
	}
	.age-gate__logo {
		width: 250px;
	}
	.age-gate__inputs input {
		font-size: var(--fs-36);
		height: 80px;
	}
	.age-gate__main {
		padding: 30px;
	}
	.age-gate__inputs {
		gap: 2rem;
	}
	.age-gate__inputs input {
		width: 200px;
		border-radius: 10px;
	}
	.age-gate__checkbox {
		font-size: var(--fs-20);
	}
	.age-gate__form {
		/* gap: 1rem; */
	}
	.age-gate__footer {
		font-size: var(--fs-16);
	}
	.age-gate__bush {
		width: 350px;
	}
	.age-gate__error {
		font-size: var(--fs-24);
	}
	.age-gate__error-container {
		height: 64px;
	}
}

@media (max-width: 767px) {
	.hero__gradient {
		height: 250px;
	}

	.prizes__gradient,
	.prizes__gradient--bottom {
		height: 250px;
	}
	.hero__container {
		padding-bottom: 4em;
	}
	.hero__button-container {
		margin-top: 2em;
		margin-right: 0;
	}
	.hero__button {
		background-color: var(--green-darker);
		border: none;
		border-radius: 20px;
		color: var(--white);
		font-family: inherit;
		font-size: var(--fs-40);
	
		padding: 1rem 2rem;
		cursor: pointer;
		transition: background-color 0.2s;
		height: 70px;
		box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
		outline: none;
		white-space: nowrap;
		text-decoration: none;
		margin: 0 auto;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
	.age-gate__footer {
		font-size: var(--fs-15);
	}
	.age-gate__inputs input {
		width: 100%;
		border-radius: 5px;
	}
	.age-gate__main {
		padding: 20px;
	}
	.age-gate__bush {
		display: none;
	}

	.age-gate__header {
		justify-content: center;
	}

	.age-gate__abc--desktop {
		display: none;
	}

	.age-gate__abc--mobile {
		display: block;
		margin-top: 2rem;
	}

	.age-gate__title {
		font-size: var(--fs-40);
	}

	.age-gate__inputs {
		gap: 1rem;
	}

	.age-gate__inputs input {
		padding: 0.75rem 0.5rem;
		font-size: var(--fs-24);
		height: 44px;
	}

	.age-gate__submit {
		height: 80px;
		padding: 0.75rem 3rem;
		width: 232px;
		line-height: 0;
		border-radius: 20px;
	}

	.age-gate__abc {
		width: 150px;
	}
	.age-gate__logo {
		width: 200px;
	}
	.age-gate__form {
		/* gap: 1.5rem; */
	}
	.age-gate__bush {
		width: 300px;
	}
	.age-gate__error {
		font-size: var(--fs-15);
	}
	.age-gate__error-container {
		height: 42px;
	}
	.hero {
		min-height: 0;
	}
}
@media (max-width: 479px) {
	.age-gate__footer {
		font-size: var(--fs-11);
	}
}

/* ===================== */
/* Homepage Header/Nav   */
/* ===================== */

.homepage {
	min-height: 100vh;
	background-color: var(--green);
}

.header {
	position: relative;
	z-index: 10;
}

.nav {
	background-color: var(--green);
	position: relative;
	border-radius: 0 0 100px 100px;
}

.nav__container {
	max-width: 1920px;
	margin: 0 auto;
	height: 100px;
	padding: 0 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* @media (min-width: 1600px) {
	.nav__container {
		height: 180px;
	}
} */

.nav__menu {
	display: flex;
	gap: 1.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
	width: 100%;
}

.nav__link {
	display: inline-block;
	background-color: var(--green-darker);
	color: var(--white);
	text-decoration: none;
	font-size: 20px;

	padding: 0.75rem 35px;
	border-radius: 20px;
	transition: background-color 0.2s;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	white-space: nowrap;
}

@media (min-width: 1280px) {
	.nav__link {
		font-size: 30px;
	}
	.prizes__content {
		font-size: 1rem !important; /* Change this at breakpoints to scale everything */
	}
}

@media (min-width: 1920px) {
	.nav__menu {
		gap: 80px;
	}
	.nav__link {
		font-size: 48px;
	}
}@media (min-width: 1600px) {
	.nav__menu {
		gap: 80px;
	}
	/* .nav__link {
		font-size: 48px;
	} */
	.prizes__content {
		font-size: 1.25rem !important; /* Change this at breakpoints to scale everything */
	}
}

.nav__link:hover {
	background-color: var(--green-dark);
}

/* Mobile toggle - hidden on desktop */
.nav__toggle {
	display: none;
}

/* Hero title - hidden on desktop */
.nav__hero {
	display: none;
}

/* Overlay and topbar - hidden on desktop */
.nav__overlay,
.nav__topbar {
	display: none;
}

/* Body no-scroll when menu open */
body.nav-open {
	overflow: hidden;
}

/* Mobile/tablet styles for nav */
@media (min-width: 1024px) {
	.prizes__amount {
		font-size: 1.75em !important;
	}
}

@media (max-width: 1023px) {
	.nav__container {
		background-color: transparent !important;
		border-radius: 0 !important;
	}
	.hero {
		margin-top: 0;
		padding-top: 0;
	}
	.nav__container {
		position: relative;
		padding: 1rem;
		min-height: 50px;
		box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	}

	.nav__toggle {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		background: none;
		border: none;
		color: var(--green-darker);
		font-family: inherit;
		font-size: var(--fs-32);
	
		cursor: pointer;
		padding: 0.5rem;
		position: absolute;
		top: 50%;
		right: 1rem;
		transform: translateY(-50%);
		z-index: 105;
	}

	.nav__toggle-text {
		display: inline-block;
		max-width: 100px;
		overflow: hidden;
		opacity: 1;
		transform: translateX(0);
		transition:
			opacity 0.3s,
			transform 0.3s,
			max-width 0.3s;
	}

	.nav.is-open .nav__toggle-text {
		opacity: 0;
		max-width: 0;
		transform: translateX(10px);
	}

	.nav__hamburger {
		display: flex;
		flex-direction: row;
		gap: 4px;
		transition: transform 0.3s;
	}

	.nav__hamburger span {
		display: block;
		width: 7px;
		height: 32px;
		background-color: var(--green-darker);
		border-radius: 2px;
	}

	.nav.is-open .nav__hamburger {
		transform: rotate(90deg);
	}

	/* Top bar - solid green */
	.nav__topbar {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 115px;
		background-color: var(--green);
		z-index: 103;
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 0.4s,
			visibility 0.4s;
	}

	.nav.is-open .nav__topbar {
		opacity: 1;
		visibility: visible;
	}

	/* Fullscreen overlay for mobile menu - with pattern */
	.nav__overlay {
		display: block;
		position: fixed;
		top: 115px;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: var(--green);
		z-index: 101;
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 0.4s,
			visibility 0.4s;
	}

	.nav__overlay-pattern {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url("../images/pattern-1.webp") center / cover no-repeat;
		opacity: 1;
		pointer-events: none;
	}

	.nav.is-open .nav__overlay {
		opacity: 1;
		visibility: visible;
	}

	.nav__hero {
		display: block;
		position: fixed;
		top: 17.5px;
		left: 0;
		right: 0;
		text-align: center;
		z-index: 105;
		opacity: 0;
		transform: translateY(-10px);
		visibility: hidden;
		transition:
			opacity 0.15s,
			transform 0.15s,
			visibility 0.15s;
		pointer-events: none;
	}

	.nav.is-open .nav__hero {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity 0.3s 0.15s,
			transform 0.3s 0.15s,
			visibility 0.3s 0.15s;
		visibility: visible;
	}

	.nav__hero-img {
		height: 80px;
		width: auto;
		margin: 0 auto;
	}

	.nav__menu {
		position: fixed;
		top: 115px;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1.75rem;
		z-index: 102;
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 0.3s,
			visibility 0.3s;
		overflow-y: auto;
		padding: 1rem 0;
	}

	.nav__container {
		height: 115px;
		padding: 0 1rem;
	}

	.nav__menu::before,
	.nav__menu::after {
		content: "";
		flex: 1 0 0px;
	}

	.nav.is-open .nav__menu {
		opacity: 1;
		visibility: visible;
	}

	.nav__menu li {
		opacity: 0;
		transform: translateY(-20px);
		transition:
			opacity 0.3s,
			transform 0.3s;
	}

	.nav.is-open .nav__menu li {
		opacity: 1;
		transform: translateY(0);
	}

	.nav.is-open .nav__menu li:nth-child(1) {
		transition-delay: 0.15s;
	}
	.nav.is-open .nav__menu li:nth-child(2) {
		transition-delay: 0.2s;
	}
	.nav.is-open .nav__menu li:nth-child(3) {
		transition-delay: 0.25s;
	}
	.nav.is-open .nav__menu li:nth-child(4) {
		transition-delay: 0.3s;
	}
	.nav.is-open .nav__menu li:nth-child(5) {
		transition-delay: 0.35s;
	}

	.nav__link {
		font-size: 28px;
		padding: 0.75rem 1.5rem;
		text-align: center;
	}
}

/* ===================== */
/* Prizes Section        */
/* ===================== */

.prizes {
	position: relative;
	z-index: 5;
	background: url("../images/pattern-1.webp") center / cover no-repeat;
}

.prizes__title {
	display: inline-block;
	background-color: var(--red);
	color: var(--white);
	font-size: 80px;

	height: 106px;
	line-height: 106px;
	padding: 0 0.75em 0 0.5em;
	margin: 0;
	clip-path: polygon(0 0, 100% 0, calc(100% - 0.3em) 100%, 0 100%);
	max-width: max-content;
	position: relative;
	z-index: 3;
}

.prizes__content {
	font-size: 0.85rem; /* Change this at breakpoints to scale everything */
	padding: 2em;
	padding-bottom: 4em;
	position: relative;
	z-index: 2;
	margin-top: 1rem;
}

.prizes__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25em;
	margin-bottom: 2em;
}

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

.prizes__img {
	width: 12.5em; /* 200px at 16px base */
	height: auto;
	max-width: 400px;
}

.prizes__label {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--red);
	color: var(--white);
	font-size: 2.25em; /* 36px at 16px base */

	padding: 0.2em 0.5em;
	margin-top: -0.6em;
	border-radius: 10px;
	height: 1.5em;
	white-space: nowrap;
}

.prizes__amount {
	display: flex;
	align-items: baseline;

	white-space: nowrap;
}

.prizes__number {
	font-size: 3em; /* 64px at 16px base */
	color: var(--red);
}

.prizes__x {
	font-size: 2.5em;
	color: var(--red);
	margin: 0 0.15em;
}

.prizes__value {
	font-size: 4em; /* 64px at 16px base */
	color: var(--white);
}
.cta__form-container {
	padding-bottom: 15em !important;
}

/* 768px+ row layout */
@media (min-width: 768px) {
	.prizes__item {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin-top: 2em;
		gap: 2em;
	}
	.prizes__amount {
		font-size: 1.25em;
	}
	.cta__form-container,
	.contact__form-container {
		margin-top: 2em !important;
		padding: 0em 2em 0em 2em;
		display: flex;
		justify-content: center;
	}
	.form__container {
		width: 100% !important;
		max-width: 850px !important;
		margin: 0 auto !important;
	}
	.form__submit {
		width: fit-content !important;
		padding-left: 0.8em;
		padding-right: 0.8em;
	}
	.form__container--contact {
		max-width: 950px !important;
	}
}

/* 1920px+ */
@media (min-width: 1920px) {
	.prizes__title {
		font-size: 90px;
		height: 120px;
		line-height: 120px;
	}
}

/* 1280px */
@media (max-width: 1279px) {
	.prizes__title {
		font-size: 48px;
		height: 64px;
		line-height: 64px;
	}
	.cta__form-container {
		padding-bottom: 10em !important;
	}
	
}

/* 768px */
@media (max-width: 767px) {
	.prizes__title {
		font-size: 40px;
		height: 52px;
		line-height: 52px;
	}
	.prizes__content {
		padding-bottom: 2em;
	}
	.cta__form-container {
		padding-bottom: 6em !important;
	}
	
}

/* 480px */
@media (max-width: 479px) {
	.prizes__title {
		font-size: 32px;
		height: 40px;
		line-height: 40px;
	}
}

/* ===================== */
/* Rules Section         */
/* ===================== */

.rules {
	position: relative;
	z-index: 4;
	background: url("../images/bg-2.webp") center / cover no-repeat;
}

.rules__gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 400px;
	background: linear-gradient(to top, transparent, var(--green));
	pointer-events: none;
}

.rules__gradient--bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 400px;
	background: linear-gradient(to bottom, transparent, var(--green-darker));
	pointer-events: none;
	opacity: 0.5;
}

.rules__title {
	display: inline-block;
	background-color: var(--red);
	color: var(--white);
	font-size: 80px;

	height: 106px;
	line-height: 106px;
	padding: 0 0.75em 0 0.5em;
	margin: 0;
	clip-path: polygon(0 0, 100% 0, calc(100% - 0.3em) 100%, 0 100%);
	max-width: max-content;
	position: relative;
	z-index: 3;
}

.rules__content {
	position: relative;
	z-index: 2;
	padding: 2em;
	padding-top: 4em;
	font-size: 1rem; /* Change this at breakpoints to scale everything */
}

.rules__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 3.5em;
}

.rules__box-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
}

.rules__bush {
	position: absolute;
	pointer-events: none;
}

.rules__bush--top {
	z-index: 0;
	width: 20em;
	max-width: 700px;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -40%);
}

.rules__bush--bottom {
	z-index: 2;
	width: 12em;
	max-width: 400px;
	top: 45%;
	left: 50%;
	transform: translate(-50%, 20%);
}

.rules__box {
	position: relative;
	z-index: 1;
	width: 5.625em; /* 90px */
	height: 5.625em;
	background-color: var(--red);
	color: var(--white);

	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	max-width: 190px;
	max-height: 190px;
}
.rules__box span {
	font-size: 3.25em; /* 64px */
}

@media (min-width: 1280px) {
	.rules__box {
		border-radius: 30px;
	}
}

.rules__text {
	position: relative;
	z-index: 3;
	color: var(--white);
	font-size: 1.75em; /* 24px */

	text-align: center;
	margin: 0.75em 0 0;
	line-height: 1.2;
	text-shadow: 0 0 35px rgba(0, 0, 0, 0.25);
}

.rules__subtext {
	position: relative;
	z-index: 3;
	color: var(--gray);
	font-size: 1em; /* 16px */
	text-align: center;
	margin: 0;
	text-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

/* Rules title responsive */
@media (min-width: 1920px) {
	.rules__title {
		font-size: 90px;
		height: 120px;
		line-height: 120px;
	}
}

@media (max-width: 1279px) {
	.rules__title {
		font-size: 48px;
		height: 64px;
		line-height: 64px;
	}
}

@media (max-width: 767px) {
	.rules__gradient,
	.rules__gradient--bottom {
		height: 250px;
	}
	.rules__title {
		font-size: 40px;
		height: 52px;
		line-height: 52px;
	}
}

@media (max-width: 479px) {
	.rules__title {
		font-size: 32px;
		height: 40px;
		line-height: 40px;
	}
	.rules {
		background: url("../images/bg-2-sm.webp") center / cover no-repeat;
	}
}
@media (min-width: 1600px) {
	.nav__menu {
		gap: 1.5rem;
	}
	/* .nav__link {
		font-size: var(--fs-40);
	} */
}
@media (min-width: 1920px) {
	.rules__content {
		padding-top: 2em;
	}
}

/* ===================== */
/* CTA Section           */
/* ===================== */

.cta {
	--form-base: 1rem; /* Change this to scale form */
	position: relative;
	z-index: 3;
	background: url("../images/bg-3.webp") center / cover no-repeat;
}

@media (max-width: 767px) {
	.cta {
		padding-left: 0;
		padding-right: 0;
	}
	.cta__info,
	.cta__title {
		margin-left: 1em;
		margin-right: 1em;
	}
}

.cta__gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 500px;
	background: linear-gradient(to top, transparent, #002804BB, var(--green-darker));
	pointer-events: none;
}

.cta__bush {
	display: none;
}

.cta__info {
	position: relative;
	z-index: 2;
	color: var(--white);
	font-size: 64px;

	text-align: center;
	margin: 0 0 1.5em;
	line-height: 1.2;
	padding: 2rem 2em 0em 2em;
}

.cta__title {
	display: inline-block;
	background-color: var(--red);
	color: var(--white);
	font-size: 80px;

	height: 106px;
	line-height: 106px;
	padding: 0 0.75em 0 0.5em;
	margin: 0;
	scroll-margin-top: 20px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 0.3em) 100%, 0 100%);
	max-width: max-content;
	position: relative;
	z-index: 2;
}

@media (min-width: 1920px) {
	.cta__title {
		font-size: 90px;
		height: 120px;
		line-height: 120px;
	}

	.cta__info {
		margin: 0 0 1em;
	}
}

@media (max-width: 1679px) {
	.cta__info {
		font-size: 48px;
	}
	.cta__gradient {
		height: 450px;
	}
}
@media (max-width: 1279px) {
	.cta__title {
		font-size: 48px;
		height: 64px;
		line-height: 64px;
	}
	.cta__info {
		font-size: 32px;
	}
	.cta__gradient {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.cta__gradient {
		height: 250px;
	}
	.cta__title {
		font-size: 40px;
		height: 52px;
		line-height: 52px;
		margin-bottom: -1.5em;
		z-index: 3;
	}
	.cta__info {
		font-size: 24px;
	}
	.cta__form-container {
		margin-top: -0.75rem;
	}
	.cta__info {
		margin: 0 0 3.5em;
	}
}

@media (max-width: 479px) {
	.cta__bush {
		display: block;
		position: absolute;
		top: 3em;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		max-width: 400px;
		z-index: 2;
		pointer-events: none;
	}
	.cta__title {
		font-size: 32px;
		height: 40px;
		line-height: 40px;
	}
	.cta__info {
		font-size: 20px;
		padding-top: 1.25rem  !important;
	}
}

/* ===================== */
/* Form (inside CTA)     */
/* ===================== */

.form__container {
	width: 100%;
	max-width: 850px;
	background-color: var(--green);
	border-radius: 35px;
	padding: 2.5em;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}

.form__group {
	margin-bottom: 0.75em;
}

.form__label {
	display: block;
	color: var(--white);
	font-size: 1.25em;

	margin-bottom: 0.15em;
	letter-spacing: 0.03em;
}

.form__input {
	width: 100%;
	height: 2em;
	padding: 0 0.75em;
	background-color: var(--green-darker);
	border-radius: 5px;
	color: var(--white);
	font-family: inherit;
	font-size: 1.15em;
	border: none;
	outline: none;
}

.form__input::placeholder {
	color: var(--white);
	opacity: 0.23;
}

.form__input:focus {
	outline: none;
}

/* Date/time input styling */
.form__input[type="date"],
.form__input[type="time"] {
	color-scheme: dark;
	padding-right: 0.35em;
}

.form__input[type="date"]::-webkit-calendar-picker-indicator,
.form__input[type="time"]::-webkit-calendar-picker-indicator {
	filter: brightness(0) invert(1);
	cursor: pointer;
}

.form__input[type="date"]::-webkit-datetime-edit,
.form__input[type="time"]::-webkit-datetime-edit {
	opacity: 0.23;
}

.form__input[type="date"]:focus::-webkit-datetime-edit,
.form__input[type="time"]:focus::-webkit-datetime-edit,
.form__input[type="date"]:valid::-webkit-datetime-edit,
.form__input[type="time"]:valid::-webkit-datetime-edit {
	opacity: 1;
}

/* Input row with help button */
.form__group--with-help .form__input-row {
	display: flex;
	align-items: center;
	gap: 0.5em;
}

.form__group--with-help .form__input {
	flex: 1;
}

.form__help-btn {
	width: 1.75em;
	height: 1.75em;
	border: 3px solid var(--green-darker);
	border-radius: 50%;
	background-color: transparent;
	color: var(--green-darker);
	font-family: Arial, sans-serif;
	font-size: 1.25em;

	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s, color 0.2s;
}

.form__help-btn:hover {
	border-color: var(--white);
	color: var(--white);
}

/* File dropzone */
.form__dropzone {
	width: 100%;
	min-height: 10em;
	background-color: var(--green-darker);
	border: none;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	cursor: pointer;
	transition: background-color 0.2s;
	position: relative;
}

.form__dropzone:hover,
.form__dropzone:focus,
.form__dropzone.is-dragover {
	background-color: #002f05;
	outline: none;
}

.form__dropzone.has-file {
	background-color: #002f05;
}

.form__file-input {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.form__dropzone-icon {
	width: 86px;
	height: 70px;
	pointer-events: none;
	margin-bottom: 0.25em;
}

.form__dropzone-text {
	color: var(--white);
	font-size: 1em;
	opacity: 0.8;
	pointer-events: none;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 1em;
}

.form__dropzone-warning {
	color: var(--white);
	font-size: 0.75em;
	margin-top: 0;
	line-height: 1.3;
	opacity: 0.7;
	padding: 0 2em;
	text-align: center;
}

.form__dropzone-warning strong {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.form__dropzone {
		padding: 1.5em 1em;
	}
	.form__dropzone-warning {
		font-size: 0.85em;
	}
}

.form__hint {
	color: var(--white);
	font-size: 0.8em;
	margin-top: 0.75em;
	line-height: 1.25;
	opacity: 0.9;
	font-family: Arial, sans-serif;
}

.margin-top {
	margin-top: 2em;
}
/* Checkboxes */
.form__checkboxes {
	margin-top: 1.5em;
	margin-bottom: 0.em;
}

.form__checkbox {
	display: flex;
	align-items: center;
	gap: 0.75em;
	cursor: pointer;
	margin-bottom: 0.75em;
	user-select: none;
}

.form__checkbox input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.form__checkbox-box {
	width: 1em;
	height: 1em;
	background-color: var(--gray);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.1em;
	transition: background-color 0.2s;
	flex-shrink: 0;
}

.form__checkbox input:checked + .form__checkbox-box {
	background-color: #018706;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
	background-size: 100%;
	background-position: center;
}

.form__checkbox input:focus + .form__checkbox-box {
	outline: none;
}

.form__checkbox-text {
	color: var(--white);
	font-size: 0.9em;
	line-height: 1.25;
	margin-top: 4px;
	font-family: Arial, sans-serif;
}

.form__checkbox-text a {
	color: var(--white);
}

/* Error messages */
.form__error {
	display: none;
	color: var(--red);
	font-size: 1em;
	font-family: Arial, sans-serif;
	margin-top: 0.25em;
}

.form__error.is-visible {
	display: block;
}

.form__error--checkbox {
	margin-top: 0;
	margin-bottom: 1em;
}

/* Submit button */
.form__submit-wrapper {
	display: flex;
	justify-content: center;
}

.form__submit {
	width: 100%;
	height: 2em;
	background-color: var(--green-darker);
	border: none;
	border-radius: 25px;
	color: var(--white);
	font-family: inherit;
	font-size: 2em;

	cursor: pointer;
	transition: background-color 0.2s;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	margin-top: 0.5em;
}

.form__submit:hover {
	background-color: var(--green-dark);
}

.form__submit:focus {
	outline: none;
}

.form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
}

.form__submit-spinner {
	width: 0;
	height: 1em;
	opacity: 0;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-top-color: var(--white);
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
	transition: width 0.3s ease, opacity 0.3s ease;
	overflow: hidden;
}

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

.form--loading {
	pointer-events: none;
}

.form--loading .form__submit-spinner {
	width: 1em;
	margin-left: 0.4em;
	opacity: 1;
}

.form__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.cta__gradient--bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: linear-gradient(to bottom, transparent, var(--green));
}
/* Form responsive */
@media (max-width: 767px) {
	.form__container {
		padding: 2em 1.5em;
		border-radius: 0 30px 30px 30px;
	}
}

@media (min-width: 1280px) {
	.cta {
		/* --form-base: 1.125rem; */
	}
	.form__container {
		font-size: 1.25rem;
	}
}

@media (min-width: 1600px) {
	.cta {
		/* --form-base: 1.25rem; */
	}
}

@media (min-width: 1920px) {
	.cta {
		/* --form-base: 1.5rem; */
	}
}

/* ===================== */
/* Help Popup            */
/* ===================== */

.help-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	pointer-events: none;
}

.help-popup.is-open {
	visibility: visible;
	pointer-events: auto;
}

.help-popup__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.help-popup.is-open .help-popup__overlay {
	opacity: 1;
}

.help-popup__content {
	position: relative;
	background-color: var(--green);
	border-radius: 35px;
	padding: 1em;
	max-width: 90vw;
	max-height: 90vh;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.help-popup.is-open .help-popup__content {
	opacity: 1;
	transform: scale(1);
}

.help-popup__close {
	position: absolute;
	top: -0.5em;
	right: -0.5em;
	width: 2em;
	height: 2em;
	background-color: var(--green-darker);
	border: none;
	border-radius: 50%;
	color: var(--white);
	font-size: 1.5em;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.help-popup__close:hover {
	transform: rotate(90deg);
	opacity: 0.7;
}

.help-popup__img {
	display: block;
	max-width: 100%;
	max-height: 80vh;
	border-radius: 20px;
}

/* ===================== */
/* Result Popup          */
/* ===================== */

.result-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	pointer-events: none;
}

.result-popup.is-open {
	visibility: visible;
	pointer-events: auto;
}

.result-popup__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.result-popup.is-open .result-popup__overlay {
	opacity: 1;
}

.result-popup__content {
	position: relative;
	background-color: var(--green);
	border-radius: 35px;
	padding: 1.25em 1.5em;
	max-width: 90vw;
	width: 600px;
	max-height: 90vh;
	overflow-y: auto;
	opacity: 0;
	transform: scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease;
	text-align: center;
}

.result-popup.is-open .result-popup__content {
	opacity: 1;
	transform: scale(1);
}

.result-popup__close {
	position: absolute;
	top: 1.5em;
	right: 1.5em;
	width: 1.5em;
	height: 1.5em;
	background: none;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.result-popup__close:hover {
	transform: rotate(90deg);
	opacity: 0.7;
}

.result-popup__close::before,
.result-popup__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 2px;
	background-color: var(--green-darker);
}

.result-popup__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.result-popup__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.result-popup__title {
	font-family: var(--font-secondary);
	font-size: 2.5rem;
	color: var(--white);
	margin: 0;
}

.result-popup__subtitle {
	font-size: 1.6rem;
	color: var(--white);
	margin: 0;
}

.result-popup__subtitle--lottery {
	font-family: var(--font-secondary);
	font-size: 1.6rem;

	text-transform: uppercase;
	margin-bottom: 1em;
}

.result-popup__badge {
	display: inline-block;
	background-color: var(--red);
	color: var(--white);
	font-family: var(--font-secondary);
	font-size: 2.8rem;
	text-transform: uppercase;
	padding: 0 0.35em;
	border-radius: 10px !important;
	line-height: 1.25;
	margin-bottom: 0.3em;
}

.result-popup__btn {
	display: block;
	width: fit-content;
	margin: 0 auto 0.6em;
	background-color: var(--green-darker);
	color: var(--white);
	font-family: var(--font-secondary);
	font-size: 2rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	padding: 0.3em 2em;
	border-radius: 15px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	transition: background-color 0.2s ease;
}

.result-popup__btn:hover {
	background-color: var(--green-dark);
}

.result-popup__img-wrapper {
	position: relative;
	max-width: 360px;
	margin: 0 auto 0.5em;
}

.result-popup__bon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 55%;
	height: auto;
	z-index: 1;
}

.result-popup__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.result-popup__win-text {
	font-family: var(--font-secondary);
	font-size: 2.5rem;
	color: var(--white);
	line-height: 1.2;
	margin: 0 0 0.15em;
}

.result-popup__instructions {
	font-size: 1.6rem;
	color: var(--white);
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
	line-height: 1.2;
}

.result-popup__fail-text {
	font-family: var(--font-secondary);
	font-size: 2rem;
	line-height: 1.2;
	color: var(--white);
	margin: 0.8em 0 0.5em;
}

#result-popup-fail .result-popup__content {
	padding: 1.5em 1.5em 2em;
}

#result-popup-fail .result-popup__subtitle--lottery {
	margin-bottom: 1.5em;
}

#result-popup-error .result-popup__content {
	padding: 2.5em 1.5em 3em;
}

/* ----- Result Popup Responsive ----- */
/* Edit these breakpoints to adjust popup sizing */


@media (max-width: 600px) {
	.result-popup__content {
		padding: 1em 1em;
		border-radius: 25px;
	}
	.result-popup__close {
		top: 1em;
		right: 0.8em;
	}
	.result-popup__title {
		font-size: 1.9rem;
	}
	.result-popup__subtitle {
		font-size: 1.25rem;
	}
	.result-popup__badge {
		font-size: 2rem;
		border-radius: 10px;
	}
	.result-popup__win-text {
		font-size: 1.9rem;
	}
	.result-popup__instructions {
		font-size: 1.3rem;
	}
	.result-popup__fail-text {
		font-size: 1.5rem;
	}
	.result-popup__img-wrapper {
		max-width: 320px;
	}
}

/* ===================== */
/* Contact Section       */
/* ===================== */

.contact {
	position: relative;
	z-index: 2;
	background: url("../images/pattern-1.webp") center / cover no-repeat;
	padding: 2em 0 6em;
}

@media (min-width: 1280px) {
	.contact {
		padding: 2em 0 12em;
	}
}

@media (min-width: 1600px) {
	.contact {
		padding: 2em 0 16em;
	}
}

.contact__title {
	display: inline-block;
	background-color: var(--red);
	color: var(--white);
	font-size: 80px;

	height: 106px;
	line-height: 106px;
	padding: 0 0.75em 0 0.5em;
	margin: 0;
	clip-path: polygon(0 0, 100% 0, calc(100% - 0.3em) 100%, 0 100%);
	max-width: max-content;
	position: relative;
	z-index: 2;
}

.contact__form-container {
	margin-top: 2em;
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.contact__subtitle {
	color: var(--white);
	font-size: 2em;

	margin-bottom: 1em;
	line-height: 1.25;
	text-align: center;
}

@media (min-width: 768px) {
	.contact__subtitle {
		text-align: left;
	}
}

@media (min-width: 1600px) {
	.contact__subtitle {
		font-size: 2.5em;
	}
}

.form__textarea {
	height: auto;
	min-height: 10em;
	padding: 0.75em;
	resize: vertical;
}

@media (min-width: 1920px) {
	.contact__title {
		font-size: 90px;
		height: 120px;
		line-height: 120px;
	}
}

@media (max-width: 1279px) {
	.contact__title {
		font-size: 48px;
		height: 64px;
		line-height: 64px;
	}
}

@media (max-width: 767px) {
	.contact__title {
		font-size: 40px;
		height: 52px;
		line-height: 52px;
		margin-bottom: -1.5em;
		position: relative;
		z-index: 3;
	}
	.contact__form-container {
		margin-top: -0.75rem;
	}
	.cta__gradient--bottom {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		height: 200px;
		background: linear-gradient(to bottom, transparent, var(--green));
	}
}

@media (max-width: 479px) {
	.contact__title {
		font-size: 32px;
		height: 40px;
		line-height: 40px;
	}
}

/* ===================== */
/* Contact Result Overlay */
/* ===================== */

.contact-result {
	position: absolute;
	inset: 0;
	z-index: 10;
	background-color: var(--green);
	border-radius: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2.5em;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-result.is-visible {
	opacity: 1;
	visibility: visible;
}

.contact-result__title {
	font-family: var(--font-secondary);
	font-size: 2.5rem;
	color: var(--white);
	margin: 0 0 0.4em;
}

.contact-result__badge {
	display: inline-block;
	background-color: var(--red);
	color: var(--white);
	font-family: var(--font-secondary);
	font-size: 2.5rem;
	text-transform: uppercase;
	padding: 0 0.35em;
	border-radius: 10px;
	line-height: 1.25;
	margin-bottom: 0.4em;
}

.contact-result__text {
	font-size: 1.6rem;
	color: var(--white);
	line-height: 1.4;
	margin: 0 0 1.2em;
	max-width: 600px;
}

.contact-result__btn {
	background-color: var(--green-darker);
	color: var(--white);
	font-family: var(--font-secondary);
	font-size: 2rem;
	border: none;
	padding: 0.3em 2em;
	border-radius: 15px;
	cursor: pointer;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	transition: background-color 0.2s ease;
}

.contact-result__btn:hover {
	background-color: var(--green-dark);
}

@media (max-width: 600px) {
	.contact-result__title {
		font-size: 2rem;
	}
	.contact-result__badge {
		font-size: 2rem;
	}
	.contact-result__text {
		font-size: 1.35rem;
	}
}

/* ===================== */
/* Laureaci Section      */
/* ===================== */

.laureaci {
	position: relative;
	z-index: 2;
	background: url("../images/pattern-1.webp") center / cover no-repeat;
	padding: 0em 0 4em;
}
@media (min-width: 1280px) {
	.laureaci {
		padding: 0em 0 8em;
	}
}
@media (min-width: 1600px) {
	.laureaci {
		padding: 0em 0 10em;
	}
}
@media (min-width: 1920px) {
	.laureaci {
		padding: 0em 0 12em;
	}
}
.laureaci__gradient--top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 300px;
	background: linear-gradient(to top, transparent, var(--green));
}

.laureaci__title {
	display: inline-block;
	background-color: var(--red);
	color: var(--white);
	font-size: 80px;

	height: 106px;
	line-height: 106px;
	padding: 0 0.75em 0 0.5em;
	margin: 0;
	clip-path: polygon(0 0, 100% 0, calc(100% - 0.3em) 100%, 0 100%);
	max-width: max-content;
}

.laureaci__accordions {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	gap: 1.25em; /* 30px */
	margin-top: 3em;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 1em;
}
@media (min-width: 1280px) {
	.laureaci__accordions {
		margin-top: 5em;
	}
}@media (min-width: 1600px) {
	.laureaci__accordions {
		margin-top: 7em;
	}
}
.laureaci__accordion {
	font-size: 1rem; /* User adjusts this to scale */
	max-width: 700px;
	width: 100%;
}

.laureaci__header {
	width: 100%;
	height: 5em; /* 80px */
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	background-color: #1a5a1f;
	border: none;
	border-radius: 5px;
	padding: 0 2.5em;
	cursor: pointer;
	transition: background-color 0.2s;
	position: relative;
	z-index: 2;
}

.laureaci__header:hover {
	background-color: #1e6a23;
}

.laureaci__header-text {
	color: var(--white);
	font-family: "Gothic", Arial, sans-serif;
	font-size: 2.75em; /* 20px */

	text-align: left;
}
.laureaci__header {
	height: 8em !important;
}

@media (max-width: 1920px) {
	.laureaci__header-text {
		font-size: 2em;
	}
	.laureaci__header {
		height: 4em;
		padding: 0 2.5em !important;
	}
	.laureaci__header {
		height: 7em !important;
	}
}
@media (max-width: 1279px) {
	.laureaci__header-text {
		font-size: 1.5em;
	}
	.laureaci__header {
		height: 4em;
		padding: 0 1.5em !important;
	}
	.laureaci__header {
		height: 5em !important;
	}
}

.laureaci__triangle {
	width: 2.25em; /* 36px */
	height: 2.25em;
	flex-shrink: 0;
	background-color: #0d3d10;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.6));
	transition: transform 0.3s ease, filter 0.3s ease;
}

.laureaci__accordion.is-open .laureaci__triangle {
	transform: rotate(180deg);
}

.laureaci__content {
	max-height: 0;
	overflow: hidden;
	background-color: var(--green-darker);
	border-radius: 0 0 5px 5px;
	position: relative;
	z-index: 1;
	transition: max-height 0.3s ease;
}

.laureaci__accordion.is-open .laureaci__content {
	max-height: 50vh;
	overflow-y: auto;
	scrollbar-color: var(--green) var(--green-darker);
	scrollbar-width: thin;
}

.laureaci__content::-webkit-scrollbar {
	width: 8px;
}

.laureaci__content::-webkit-scrollbar-track {
	background: var(--green-darker);
	border-radius: 4px;
}

.laureaci__content::-webkit-scrollbar-thumb {
	background: var(--green);
	border-radius: 4px;
}

.laureaci__content::-webkit-scrollbar-thumb:hover {
	background: var(--green-dark);
}

@media (min-width: 1280px) {
	.laureaci__accordion.is-open .laureaci__content {
		max-height: 50em;
	}
}

.laureaci__list {
	list-style: none;
	padding: 1.5em;
	margin: 0;
	text-align: center;
}

.laureaci__list li {
	color: var(--white);
	font-size: 1.5em;

	margin-bottom: 0.5em;
}

@media (min-width: 1280px) {
	.laureaci__list li {
		font-size: 2em;
	}
}

@media (min-width: 1600px) {
	.laureaci__list li {
		font-size: 2.5em;
	}
}

.laureaci__list li:last-child {
	margin-bottom: 0;
}

/* Laureaci responsive */
@media (min-width: 768px) {
	.laureaci__accordions {
		flex-direction: row;
		padding: 0 2em;
	}
}

@media (min-width: 1024px) {
	.laureaci__accordions {
		padding: 0 5em;
	}
}

@media (min-width: 1920px) {
	.laureaci__title {
		font-size: 90px;
		height: 120px;
		line-height: 120px;
	}
}

@media (max-width: 1279px) {
	.laureaci__title {
		font-size: 48px;
		height: 64px;
		line-height: 64px;
	}
}

@media (max-width: 767px) {
	.laureaci__title {
		font-size: 40px;
		height: 52px;
		line-height: 52px;
	}
}

@media (max-width: 479px) {
	.laureaci__title {
		font-size: 32px;
		height: 40px;
		line-height: 40px;
	}
}

/* ===================== */
/* Footer                */
/* ===================== */

.footer {
	background-color: var(--green-darker);
	padding: 2em 1em;
	font-size: 1rem;
	letter-spacing: 0.03em;
}

.footer__container {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 1em;
	display: flex;
	flex-direction: column;
}

.footer__top {
	display: contents;
}

.footer__info {
	order: 10;
	text-align: center;
	margin-top: 2em;
}

.footer__info p {
	color: var(--white);
	font-size: 1.25em;
	line-height: 1.4;
	margin: 0;
}

.footer__info a {
	color: var(--white);
	text-decoration: underline;
}

.footer__warning {
	width: 200px;
	height: auto;
	order: 1;
}

.footer__top > a {
	align-self: center;
	order: 1;
}

.footer__copyright {
	color: var(--white);
	font-size: 0.875em;
	text-align: center;
	margin: 2em 0 1.5em;
	order: 2;
}

.footer__social {
	display: flex;
	justify-content: center;
	gap: 1.5em;
	margin-bottom: 2em;
	order: 3;
}

.footer__social a {
	display: block;
}

.footer__social img {
	width: 60px;
	height: 60px;
}

.footer__bottom {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1em;
	text-align: center;
	order: 4;
}

.footer__link {
	color: var(--white);
	font-size: 1em;

	text-decoration: underline;
	white-space: nowrap;
}

.footer__company {
	color: var(--white);
	font-size: 1.05em;

	margin: 0;
	text-align: right;
}

@media (max-width: 767px) {
	.footer__company {
		font-size: 1.1em;
		font-style: normal;
		text-align: center;
		width: 100%;
	}
	.footer__info p {
		font-size: 1em;
	}
}

@media (min-width: 768px) {
	.footer__container {
		padding: 0 3em;
	}
}

@media (min-width: 1024px) {
	.footer__container {
		padding: 0 5em;
	}
}

/* Footer desktop */
@media (min-width: 768px) {
	.footer {
		padding: 3em 0 2em;
	}

	.footer__container {
		display: block;
	}

	.footer__top {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		margin-bottom: 1em;
		gap: 2em;
	}

	.footer__info {
		order: unset;
		text-align: left;
		margin-top: 0;
	}

	.footer__info p {
		font-size: 1em;
	}

	.footer__warning {
		width: 150px;
		min-width: 150px;
		flex-shrink: 0;
		order: unset;
		align-self: auto;
	}

	.footer__top > a {
		order: unset;
		align-self: auto;
	}

	.footer__copyright {
		order: unset;
		text-align: left;
		margin: 0 0 1.5em;
	}

	.footer__social {
		justify-content: flex-start;
		gap: 1em;
		order: unset;
	}

	.footer__social img {
		width: 40px;
		height: 40px;
	}

	.footer__bottom {
		flex-direction: row;
		justify-content: flex-start;
		gap: 2em;
		order: unset;
	}

	.footer__company {
		margin-left: auto;
	}
}

@media (min-width: 1024px) {
	.footer__warning {
		width: 200px;
		min-width: 200px;
	}
}

@media (min-width: 1280px) {
	.footer {
		padding: 5em 0 2em;
	}

	.footer__info {
		max-width: 1050px;
	}

	.footer__info p {
		font-size: 1.25em;
	}

	.footer__copyright {
		font-size: 1em;
	}

	.footer__company {
		font-size: 1.1em;
	}
}

@media (min-width: 1600px) {
	.footer {
		padding: 7em 0 2em;
	}
}

@media (min-width: 1600px) {
	.footer__warning {
		width: 250px;
		min-width: 250px;
	}
}
@media (min-width: 768px) {
	.rules__content {
		font-size: 1.25rem;
	}
	.prizes__item {
		margin-bottom: 4em;
	}
}@media (min-width: 1280px) {
	.rules__content {
		font-size: 1.5rem;
	}
	.hero__button-container {
		margin-right: 300px;
	}
	.nav__container {
		height: 110px;
	}
}@media (min-width: 1600px) {
	.rules__content {
		font-size: 1.75rem;
	}
}
@media (min-width: 1440px) {
	.nav__menu {
		gap: 3rem;
	}
}
@media (min-width: 1024px) {
	.nav__menu {
		margin-top: -0.5rem;
	}
}
@media (min-width: 1600px) {
	.nav__container {
		height: 140px;
	}
}
@media(max-width: 1279px) {
	.hero__abc {
		width: 10em;
		margin-right: 3em;
		position: absolute;
		top: -4.5em;
		right: 0em;
	}
}@media(min-width: 800px) {
	.hero__container {
		padding-top: 2.75em;
	}
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1em;
	visibility: hidden;
	opacity: 0;
	transform: translateY(100%);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.is-open {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.cookie-banner__content {
	max-width: 900px;
	margin: 0 auto;
	background-color: var(--green);
	border-radius: 15px;
	padding: 1.25em 1.5em;
	display: flex;
	align-items: center;
	gap: 1.5em;
	box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.5);
}

.cookie-banner__text {
	color: var(--white);
	font-family: Arial, sans-serif;
	font-size: var(--fs-16);
	line-height: 1.3;
	text-pretty: auto;
}

.cookie-banner__buttons {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.cookie-banner__btn {
	background-color: var(--green-darker);
	color: var(--white);
	font-family: "Gothic", Arial, sans-serif;
	font-size: var(--fs-20);
	border: none;
	cursor: pointer;
	padding: 0.3em 2em;
	border-radius: 15px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
	transition: background-color 0.2s ease;
}

.cookie-banner__btn:hover {
	background-color: var(--green-dark);
}

@media (max-width: 767px) {
	.cookie-banner__content {
		flex-direction: column;
		text-align: center;
		gap: 1em;
		padding: 1em;
	}

	.cookie-banner__buttons {
		flex-direction: row;
	}

	.cookie-banner__text {
		font-size: 0.8125rem;
	}
}

@media (max-width: 480px) {
	.cookie-banner__buttons {
		width: 100%;
	}

	.cookie-banner__btn {
		flex: 1;
	}
}