* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;

}
section{
	overflow: hidden;
}
:root {
	--index: calc(1vw + 1vh);
	--transition: 1.5s cubic-bezier(.05, .5, 0, 1);
	--color-dark: #352913;
}
a{
	text-decoration: none;
}
@font-face {
	font-family: Rock;
	src: url(../fonts/chinese-rocks-rg.woff2);
	font-weight: 400;
}
@font-face {
	font-family: 'Condiment';
	src: url(../fonts/Condiment-Regular.ttf);
	font-weight: 400;
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Charmonman:wght@400;700&display=swap');

#orientation-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orientation-popup {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  max-width: 300px;
  width: 90%;
  font-family: sans-serif;
}

.orientation-popup p {
  margin-bottom: 1rem;
}

#allow-orientation {
  margin-bottom: 0.5rem;
  padding: 0.5rem 1rem;
}

#deny-orientation {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
}

body {
	background-color: #FFFEFD;
	color: #fff;
	font-family: Rock;
}

p, ul{
	margin-bottom: 15px;
	color: #4d3e2e
}
p span{
	color: #E0725A
}
p, li{
	font-family: "Cormorant Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 33px;
    font-size: 18px;
}
.container {
    margin: 0 auto;
    max-width: 1440px;
    padding: 0 10px;
}


ul{
	padding-left: 40px;
}
h3{
	font-family: 'Gill Sans';
	color: var(--color-dark)
}
.logo {
	--logo-size: calc(var(--index) * 7.8);
	width: var(--logo-size);
	height: var(--logo-size);
	background-repeat: no-repeat;
	position: absolute;
	left: calc(51% - calc(var(--logo-size) / 2));
	top: calc(var(--index) * 2.8);
	z-index: 1;
}
.layers {
	perspective: 1000px;
	-webkit-perspective: 1000px;
	overflow: hidden;
	padding-bottom: 100px;
}
.layers__container {
	height: 100vh;
	min-height: 500px;
	transform: rotateX(var(--move-y)) rotateY(var(--move-x)) translate3d(0, 0, 0);
	will-change: transform;
	transition: transform var(--transition);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform-style: preserve-3d;
}
.layers__item {
	position: absolute;
	inset: -12vw;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.layer-1 {
	transform: translateZ(-525px) scale(1.58);
}
.layer-2 {
	/* transform: translateZ(330px) scale(1.6); */
	transform: translateZ(50px) scale(1.2); 
left: 0;
top: 0;
	
}
.layer-3 {
	transform: translateZ(80px) scale(.88);
}
.layer-4 {
	transform: translateZ(190px) scale(.9);
}
.layer-5 {
    transform: translateZ(calc(var(--index) * 10)) scale(.63)
}
.layer-6 {
	transform: translateZ(380px);
}
.hero-content {
	font-size: calc(var(--index) * 2.1);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: calc(var(--index) * .25);
	line-height: 1.45em;
	margin-top: calc(var(--index) * 5.5);
	position: relative;
	padding: 20px;
}
.hero-content:before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #000000c7;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	border-radius: 50px;
	filter: blur(100px);
}
.hero__subtitle{
	letter-spacing: calc(var(--index) * .05);
	font-size: calc(var(--index) * 1.8);
}
.condiment-regular {
	font-family: "Condiment", cursive;
	font-weight: 400;
	text-transform: capitalize;
	font-style: normal;
  }
.hero-content span {
	display: block;
}
.hero-content__p {
	text-transform: none;
	font-family: merriweather-italic-3d;
	letter-spacing: normal;
	font-size: calc(var(--index) * .83);
	line-height: 3;
}
.button-start {
	font-family: Arial;
	font-weight: 600;
	text-transform: uppercase;
	font-size: calc(var(--index) * .71);
	letter-spacing: -.02vw;
	padding: calc(var(--index) * .7) calc(var(--index) * 1.25);
	background-color: transparent;
	color: #fff;
	border-radius: 10em;
	border: rgb(255 255 255 / .4) 2px solid;
	outline: none;
	cursor: pointer;
	margin-top: calc(var(--index) * 2.5);
	transition: all .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.button-start:hover{
	background: #ffffff5c;
	border-color: #ffffffd3;
}
.layer-2, .layer-4, .layer-5, .layer-6 {
	pointer-events: none;
}
.inset-0{
	inset: 0;
}
.pointers-none{
	pointer-events: none;
}
.bait-selection{
	position: absolute;
	right: 0;
	top: 0;
	pointer-events: none;

}
.bait-selection img{
	width: 89vw;
    max-width: 400px;
}
.timer{
	display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-right: 30px;
}
.time{
	letter-spacing: .1em;
}
.timer svg{
	position: absolute;
    right: 70px;
}
.stream{
	position: absolute;
	left: 20px;
    bottom: 30px;
	z-index: 12;
}
.stream__background{
	position: absolute;
	top: -58px;
	width: 105%;
}
.stream__background svg{
	width: 104%;
}

.mute-btn{
	padding: 5px 10px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    outline: none;
    background-color: #ffffff38;
    border: none;
    border-radius: 9px;
    backdrop-filter: blur(1px);
	opacity: .6;
	transition: .1s ease;

}
.mute-btn:hover{
	opacity: 1;
	backdrop-filter: blur(5px);
}
.mute-btn svg{
	stroke: #fff;
	fill: transparent;
	width: 25px;
}
.mute-btn.muted svg{
	fill: #fff;
}

.stream__info{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: calc(var(--index) * .5);
	letter-spacing: calc(var(--index) * .15);
	position: relative;
	max-width: 380px;
	transform: translate(50px, -10px);
	padding-right: 20px;
}

.stream__info-live{
	flex: 100%;
	display: flex;
	align-items: center;
}
.stream__info-icon{
	margin-right: 10px;
}
.stream__info-icon svg{
	width: calc(var(--index) * 1.4);
}
.stream__info-viewers, .stream__info-weather{
	display: flex;
	align-items: center;	
	flex: 50%;
}
.stream__info-viewers .stream__info-icon{
	margin-right: 3px;
}
.stream__info-weather{
	font-size: calc(var(--index) * .6);
}
.stream__info-label{
	margin-right: 10px;
}
.stream-record{
	animation: pulse 1.3s infinite ease-in-out;
}
@keyframes pulse {
	0% {
	  opacity: 1;
	}
	50% {
	  opacity: 0.3;
	}
	100% {
	  opacity: 1;
	}
  }
.stream__info-clock{
	margin-right: 5px;
	display: block;
}
.stream__info-icon--sun svg{
	width: calc(var(--index) * 0.878);
}
.layers::after{
	content: '';
	width: 100%;
	z-index: 2;
	height: 300px;
	background: url('/lp/img/bottom-overlay.png') no-repeat center center / cover;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	mix-blend-mode: screen;
	pointer-events: none
}
.relative{
	position: relative;
}
.features{
	color: var(--color-dark);
	counter-reset: item;
}
.features__item-left{
	z-index: 3;
	position: relative;
}
.features__item .feature-counter{
	position: absolute;
	left: -45px;
	z-index: 0;
	width: 150px;
	opacity: .6;
}
.features__item:nth-child(even) .feature-counter{
	left: unset;
	right: -45px
}
.features__item:nth-child(even) .feature__name{
	text-align: right;
}
.features__item:nth-child(even){
	flex-direction: row-reverse;
}
.features__item:nth-child(even) .features__item-left{
	flex-direction: row-reverse;
}
.features__item:nth-child(even) .feature__name:before{
	left: 0;
	right: unset;
}
.features__item:nth-child(even) .features__item-name{
	padding: 12px 0 12px 12px;
}
.features__item:nth-child(even) .feature__img{
	padding-left: 0;
	padding-right: 25px;
}
.features__item:nth-child(even) .features__item-name:before{
	left: -7%;
}
.features__item:nth-child(even) .features__item-subtitle:after{
	left: -30%;
}
.features__item:nth-child(even){
	padding-left: 0;
	padding-right: 50px;
}
.features__item{
	display: flex;
	padding-left: 50px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 230px;
	position: relative;
}
.features__item-left{
	display: flex;
	position: relative;
	align-items: center;
	width: 50%;
}
.features__item-text{
	width: 50%;
}
.features__item-name{
	text-transform: uppercase;	
	width: 100%;
	font-size: 28px;
	position: relative;
	padding: 12px  12px 12px 0;
	max-width: 385px;
}
.feature__img{
	position: relative;
	padding-left: 25px;
}
.feature__img img{
	width: 140px;
}
.feature__name{
	position: relative;
}
.feature__name:before{
	content: '';
    position: absolute;
    right: 0;
    width: 2px;
    height: 190px;
    background: #333;
	top: -40px;
}
.features__item-text{
	flex: 50%
}

.features__item-subtitle{
	font-family: "Charmonman", cursive;
	font-weight: 400;
  font-style: normal;
  padding: 12px 0;
  border-top: 2px solid;
  position: relative;
	font-size: 20px;

}


.features__item-subtitle:after {
    content: '';
    width: 130%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    bottom: 0;
}
.features__item-name:before {
    content: '';
    width: 107%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    top: 0;
}
.row-reverse{
	flex-direction: row-reverse;
}
.rod{
	transform: translateY(-70px);
}

.rod-feature::after {
    content: '';
    position: absolute;
    left: 0;
    top: -200px;
    background: url('/lp/img/fish.webp') no-repeat center top / contain;
    width: 400px;
    height: 400px;
    z-index: -1;
}
.spot-feature:after{
	content: '';
    position: absolute;
    right: 0;
    top: -200px;
    background: url('/lp/img/spot.webp') no-repeat center top / contain;
    width: 400px;
    height: 400px;
    z-index: -1;
}
.earn-feature:after{
	content: '';
    position: absolute;
    left: 0;
    top: -100px;
    background: url('/lp/img/gift.svg') no-repeat center top / contain;
    width: 340px;
    height: 340px;
    z-index: -1;
}

.event__timer{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.timer__text, .timer__countdown{
	width: 50%;
}
.timer__text h3{
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 15px;
}
.timer__countdown-title{
	font-size: 44px;
	color: var(--color-dark)
}

  
.timer__countdown{
	transform: rotate(-3deg);
	position: relative;
    overflow: visible;
    padding-bottom: 200px;
}
.timer__countdown-inner{
	position: absolute;
}
  .counter {
	display: flex;
	align-items: flex-end;
	gap: 20px;
  }
  
  .counter__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
  .counter__number {
	font-size: 72px;
	color: #F26C4F;
  }
  
  .counter__label {
	font-size: 14px;
	color: #5C4A3F;
	letter-spacing: 1px;
	margin-top: 5px;
  }
  
  .counter__separator {
	font-size: 48px;
	color: #F26C4F;
	align-self: center;
	margin-bottom: 10px;
  }
  
.leaderboard{
	text-align: center;
	margin: 150px 0;
}
 h2{
	color: var(--color-dark);
	font-size: 48px;
	font-family: 'Gill Sans';
	margin-bottom: 15px;
}
.leaderboard img{
	transform: rotate(1.5deg);
	width: 50%;
	margin-top: 25px;
}
.form{
	min-height: 500px;
	background: url('/lp/img/form-bg.webp') no-repeat center center / cover;
}
.form__inner{
	padding: 125px 0;
}
.form__inner p {
	font-size: 20px;
}

form button{
	background-color: #b41f1f;
	outline: none;
	border-radius: 2px;
	padding: 15px 21px;
	border: none;
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: calc(var(--index) * .8);
	letter-spacing: 2px;
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	transform: translateX(-200px);
	height: 51px;
	margin-top: auto;
	margin-bottom: auto;
	white-space: nowrap;
}
form button svg{
	width: calc(var(--index) * .9);
}
form{
	display: flex;
	margin-top: 30px;
}
input{
	border: 2px solid #35291313;
	border-radius: 4px;
	background-color: #ffffff1d;
	padding: 20px;
	width: 100%;
	font-size: 20px;
	font-family: "Cormorant Garamond", serif;
	color: #A39D92;
	padding-right: 200px;
}
#form input{
    max-width: 600px;
}
#form button{
	font-size: 21px;
	transform: translateX(-220px);
}
*{
	outline: none
}

.notification-popup {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #fff9e1;
    border: 2px solid #1e1e1e;
    box-shadow: 4px 4px 0 #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    display: none;
    z-index: 9999;
	text-align: center;	
  }
  .notification-popup p, .notification-popup span{
	display: block;
	font-family: "Cormorant Garamond", serif;
  }
  .popup-close{
	margin-top: 10px;
	opacity: .4;
  }

  .notification-popup.visible {
    display: block;
    animation: fadeIn 0.4s ease;
  }

  .notification-popup h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
    color: #2b2b2b;
  }

  .notification-popup p {
    font-size: 15px;
    line-height: 1.4;
	margin-top: 10px;
    color: #444;
  }

  .notification-popup button {
    background: #b41f1f;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 0 #000;
  }

  .notification-popup .popup-close {
    cursor: pointer;
    color: #777;
  }
.notification-popup img{
	width: 100px;
}
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

.subscribe{
	list-style: none;
	display: flex;
	gap: 25px;
	padding: 0;
	margin-top: 10px;
}
.subscribe svg{
	width: 25px;
}
.layers form{
	position: relative;
}
.layers form button{
	transform: none;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
}
.layers form input{
	color: #fff
}

.layers input::placeholder {
	opacity: 0.5;
	color: #fff;
	font-size: calc(var(--index) * .75);
}
input::placeholder {
	font-size: 19px;
	
}
.status-message{
	position: absolute;
    bottom: -25px;
}
form{
	position: relative;
}
.layers .status-message{
	font-size: calc(var(--index) * .65);
}
.status-message{
	
	color: #b65a5a;
    line-height: 1;
	text-align: left;
    font-family: 'Gill Sans';
    text-transform: none;
    letter-spacing: .1em;
    opacity: .9;
}

@media screen and (max-width:2000px){
	.layer-5{
		/* transform: translateZ(calc(var(--index) * 19)) scale(0.75); */
		transform: translateZ(calc(var(--index) * 19)) scale(0.35);
		
	}
	.is-ios .layer-5{
		transform: translateZ(calc(var(--index) * 19)) scale(0.7);
	}
}
@media screen and (max-width:1124px){
	.layer-5 {
		transform: translateZ(calc(var(--index) * 28)) scale(0.21)
    }
	.is-ios .layer-5{
		transform: translateZ(calc(var(--index) * 19)) scale(0.6);
	}
}
@media screen and (max-width:890px){
	    .layer-5 {
        transform: translateZ(calc(var(--index) * 15)) scale(.3) translateY(500px)
    }
	.is-ios .layer-5{
		transform: translateZ(calc(var(--index) * 15)) scale(.4) translateY(500px)
	}
	.features__item-name{
		font-size: 23px;
	}
	.features__item-subtitle{
		font-size: 17px;
	}
	.features__item:before{
		font-size: calc(var(--index) * 8);
	}
	.feature__img.rod svg{
		width: 80px;
	}
	.layers input::placeholder {
		font-size: calc(var(--index) * 1.2);
	}
	.layers input{
		padding: 12px;
		padding-right: 170px;
	}
	
	form button{
		font-size: calc(var(--index) * 1.3);
	}
	.hero-content__p{
		    font-size: calc(var(--index) * 1.43);
	}
	.hero__subtitle{
		margin-top: 10px;	
		font-size: calc(var(--index) * 2);
		letter-spacing: calc(var(--index) * .1);
	}
	.leaderboard img{
		width: 80%;
	}
}
@media screen and (max-width:767px){
	.features{
		padding-top: 100px;
	}
	.layers{
		height: 100vh;
	}
	.layers::after{
		height: 100px;
	}
	.layer-5 {
			transform: translateZ(calc(var(--index) * 24)) scale(.65) translateY(260px);
    }
	.is-ios .layer-5{
		transform: translateZ(calc(var(--index) * 24)) scale(1.1) translateY(260px);
	}
	#form form{
		flex-direction: column;
	}
	#form button {
		transform: unset;
		text-align: center;
		margin: auto;
		width: 100%;
		align-items: center;
		justify-content: center;
	}

}
@media screen and (max-width:740px){
	input{
		padding: 12px;
		padding-right: 0;

	}
	form{
		gap: 7px
	}
	form button{
		transform: unset;
	}
	.features__item{
		flex-direction: column;
		align-items: self-start;
		gap: 40px;
		margin-bottom: 100px;

	}
	.features__item-text{
		width: 100%;
		flex: 100%
	}
	.feature__name:before{
		height: 170px;
	}
	.timer__text h3{
		font-size: 31px;
	}
	.counter__number{
		font-size: 50px;
	}
	.counter{
		gap: 8px;
	}
	h2{
		font-size: 36px;
	}
	.leaderboard{
		margin: 85px 0;
	}
	.form__inner{
		padding: 0;
	}
	.features__item-left{
		width: 100%;
	}

	.features__item:before{
		left: -28px;
	}
	.features__item:nth-child(even):before{
		right: -28px;
	}
	.layer-3 {
    	transform: translateZ(380px) scale(.6)
	}
	.is-ios .layer-3 {
		transform: translateZ(380px) scale(.9);
	}
}
@media screen and (max-width:630px){
	.event__timer{
		flex-direction: column;
	}
	.timer__text, .timer__countdown{
		width: 100%;
	}
	.timer__countdown-title{
		text-align: center;
	}
	.counter{
		justify-content: center;
		padding: 20px;
	}
	.timer__countdown-inner {
		position: static;
		margin-top: 25px;
	}
	.timer__countdown{
		padding-bottom: 0;
	}
	
	.features__item{
		padding-left: 20px;
	}
	.features__item:nth-child(even){
		padding-right: 20px;
	}
	.rod-feature::after{
		width: 54vw;
        height: 300px;
	}
	.hero-content {
		padding: 0 50px;
	}
	.hero-content__p{
		line-height: 1.5;
	}
	.stream__info{
		font-size: calc(var(--index) * .8);
	}
	.stream__info-weather {
    	font-size: calc(var(--index) * .8);
	}
	.layer-5 {

    
	}
	.layer-2 {
  	  transform: translateZ(230px) scale(.8);
	}
	
}
@media screen and (max-width:450px) {
    .is-ios .layer-5 {
		transform: translateZ(calc(var(--index) * 24)) scale(.7) translateY(260px);
	}
}