@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&amp;family=Roboto:wght@400;500;700;900&amp;display=swap');

body { font-family: "Roboto", sans-serif; line-height:1.2; font-size:15px; color:#fff; background: url("../images/bg.jpg")no-repeat top center; background-size: cover;}

a { text-decoration: none; cursor:pointer; -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }

a:hover, a:focus, button:focus, button:hover { text-decoration: none; outline: none; }

img { max-width:100%;}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], textarea, select {
    color: #666;
    width: 100%;
}
button {
	background: none;
	border: none;
	padding: 0;
}
.t-body {
	overflow: hidden;
}
.deco {
	position: absolute;
}
.max-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}
.top-sec {
	background: url("../images/top-bg.png")no-repeat top center;
	background-size: 100%;
	padding: 5px 0 45px;
	text-align: center;
}
.logo {
    filter: drop-shadow(2px 3px 1px rgb(0, 0, 0, 0.8));
}
.title-top {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 30px;
}
.subtitle-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 72%;
    font-family: 'Luckiest Guy';
    font-size: 38px;
    color: #c40012;
    text-shadow: 2px 2px 0 #6e0003;
    letter-spacing: 1px;
}
.date-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 88%;
    font-size: 27px;
    font-weight: 700;
    text-shadow: 3px 2px 1px rgb(0, 0, 0, 0.8);
}
.deco.bell {
    left: -2%;
    bottom: -12%;
    max-width: 17%;
	animation: shake 2s ease-in-out infinite;
}
.deco.cookie {
    right: 0%;
    bottom: -8%;
    max-width: 14%;
	animation: float 2.1s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-12px);
    }
    100% {
        transform: translatey(0px);
    }
}
.token-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto -4%;
    z-index: 2;
}
.token-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 37%;
    font-size: 40px;
    font-family: 'Luckiest Guy';
    text-shadow: 1px 2px 1px rgb(0, 0, 0, 0.5);
}
.reward-frame-container {
    position: relative;
    max-width: 1080px;
    margin: 0 auto 20px;
}
.reward-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
    left: 0;
    right: 0;
    top: 27%;
    max-width: 69%;
    margin: 0 auto;
}
.reward-card {
    cursor: pointer;
}
.reward-card:hover {
	animation: shake 0.8s ease-in-out infinite;
}
.reward-card:hover img {
	transform: scale(1.03);
	filter: brightness(1.07);
}
@keyframes shake {
    0% {
        transform: rotate(-10deg);
    }
	50% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(-10deg);
    }
}
.how-wrap {
    display: inline-block;
    position: relative;
    max-width: 530px;
    margin: 10px 10px;
}
.how-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 39%;
    font-size: 20px;
    font-weight: 700;
    max-width: 75%;
    margin: 0 auto;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tnc-wrapper {
    position: relative;
    background: url(../images/tnc-base.png) no-repeat;
    background-size: 100% 100%;
    max-width: 1100px;
    min-height: 400px;
    margin: 0 auto;
    padding: 85px 70px 30px;
    color: #000;
}
.tnc-title {
    margin-bottom: 15px;
}
ul.terms {
    text-align: left;
    padding-left: 17px;
    font-size: 18px;
    font-weight: 500;
}
ul.terms li {
    padding: 1px 0;
}
.deco.candle {
    right: -4%;
    bottom: -1%;
    max-width: 15%;
}








/** Modal **/
button.close-x {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    color: #fff;
}
.modal-content.reward {
    background: none;
    border: none;
    max-width: 320px;
    margin: 0 auto;
}
.reward-box {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}
.prize {
    position: absolute;
    left: 8%;
    right: 0;
    top: 61%;
    z-index: 3;
	font-family: 'Luckiest Guy';
    font-size: 23px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.3);
}
img.open {
    position: absolute;
    left: 0;
    right: 0;
    transition: 0.2s;
}
img.open {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.reward-box.active img.closed {
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
}
.reward-box.active img.open {
    opacity: 1;
    visibility: visible;
    transition: 0.2s;
}
.reward-box.active .prize {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: 0.3s;
    transition-delay: 0.3s;
}

@media(max-width: 1080px) {
.logo {
    max-width: 33%;
    margin: 0 auto;
}	
.subtitle-wrap {
    font-size: 3.5vw;
	text-shadow: 0.2vw 0.2vw 0 #6e0003;
}
.date-text {
    font-size: 2.5vw;
	text-shadow: 0.3vw 0.2vw 0.1vw rgb(0, 0, 0, 0.8);
}	
}

@media(max-width: 767px) {
.tnc-wrapper {
    background: #fff;
    border: 3px solid #c90505;
    border-radius: 10px;
    box-shadow: inset 0 0 0 3px #266403;
    padding: 20px 15px;
}
ul.terms {
    font-size: 15px;
}	
.token-wrap {
    max-width: 400px;
}	
.token-text {
    font-size: 34px;
}
	
}

@media(max-width: 560px) {
.how-text {
    height: 12vw;
    font-size: 3.6vw;
}	
}

@media(max-width: 480px) {
.title-img {
    margin: 0 -10px;
    height: 79vw;
}
.title-img img {
    object-fit: cover;
    height: 100%;
}
.token-wrap {
    max-width: 85%;
}	
.token-text {
    font-size: 7vw;
}	
.subtitle-wrap {
	top: 73%;
	font-size: 3.8vw;
}
.date-text {
	font-size: 2.8vw;
}
.frame-img {
    margin: 0 -10px;
    height: 67vw;
}	
.frame-img img {
    object-fit: cover;
    height: 100%;
}	
.reward-card-wrapper {
    max-width: 87%;
}
.tnc-title {
    max-width: 85%;
    margin: 0 auto 15px;
}	
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
