@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 8px;
}

body {
  font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  shape-rendering: geometricPrecision;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 250ms ease-in-out;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 250ms ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-10px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(-50px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.05);
  }
  80% {
    transform: translateY(-5px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes floatVertical {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* ==========================================
   ============ LAYOUT - CONTAINER =========
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

section {
  position: relative;
  overflow-x: clip;
}

/* ==========================================
   ============ LAYOUT - HEADER ============
   ========================================== */
.header {
  position: fixed;
  width: 100vw;
  top: -2px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .header {
    padding: 1.5rem 0;
    min-height: 11rem;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 992px) {
  .header .container {
    max-width: none;
    padding: 0 22rem 0 3rem;
    margin: 0;
  }
}
.header .logo {
  height: 5rem;
  width: auto;
}
@media (min-width: 992px) {
  .header .logo {
    height: 7.5rem;
  }
}
.header .social-links {
  display: flex;
  gap: 1rem;
}
.header .social-links .social-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .header .social-links .social-icon {
    height: 7.5rem;
    width: 7.5rem;
  }
}
.header .social-links .social-icon:hover {
  transform: scale(1.1);
}
.header .social-links .social-icon img {
  width: 100%;
  height: auto;
}

/* ==========================================
   ============ LAYOUT - CTA ============
   ========================================== */
.cta {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 1000;
  background-color: #000;
  color: #3684ec;
  padding: 1rem 1rem;
  font-size: 2.5rem;
  line-height: 1.25em;
  font-weight: 700;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .cta {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
    font-size: 3rem;
    padding: 1.5rem 4rem 1.5rem 3rem;
    transform: skewX(-15deg);
    margin-right: -2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    min-height: 11rem;
  }
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .cta-btn {
    transform: skewX(15deg);
  }
}
.cta-btn img {
  width: 4rem;
  animation: float 2s ease-in-out infinite;
}

/* ==========================================
   ============ SECTIONS - HERO ============
   ========================================== */
.hero {
  position: relative;
  padding-top: 8rem;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero {
    padding-top: 16rem;
  }
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: -35%;
  height: 100%;
  transform: rotate(20deg);
}
@media (min-width: 992px) {
  .hero-bg-image {
    right: 0%;
    transform: rotate(0deg);
  }
}
.hero-bg-star {
  position: absolute;
  top: 20%;
  left: 0%;
  display: none;
}
@media (min-width: 992px) {
  .hero-bg-star {
    display: block;
  }
}
.hero-spokesperson {
  position: absolute;
  right: -20%;
  bottom: 0;
  max-width: none;
  width: 175%;
}
@media (min-width: 768px) {
  .hero-spokesperson {
    right: 0;
    width: 92%;
  }
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  height: 146vw;
}
@media (min-width: 768px) {
  .hero .container {
    height: 95vw;
  }
}
@media (min-width: 992px) {
  .hero .container {
    height: 55vw;
    min-height: 660px;
  }
}
.hero-title {
  width: 100%;
  animation: heroEntrance 1s ease-out forwards, gentleFloat 4s ease-in-out 1s infinite;
}
@media (min-width: 992px) {
  .hero-title {
    width: 65%;
  }
}
.hero-subtitle {
  width: 55%;
  animation: popup 0.6s ease-out 0.3s backwards, breathe 3s ease-in-out 0.9s infinite;
}
@media (min-width: 992px) {
  .hero-subtitle {
    width: 30%;
    margin: -3% auto 0;
    z-index: 9;
    position: relative;
  }
}
.hero-player {
  position: absolute;
  left: -3%;
  bottom: 0;
  max-width: none;
  width: 105%;
  animation: float 3s ease-in-out infinite;
}
@media (min-width: 768px) {
  .hero-player {
    left: 5%;
    width: 65%;
  }
}

/* ==========================================
   ======== SECTIONS - REGISTRATION ========
   ========================================== */
.registration {
  position: relative;
  padding: 8rem 0;
  scroll-margin-top: 7rem;
}
@media (min-width: 992px) {
  .registration {
    padding: 4rem 0 20rem;
    scroll-margin-top: 11rem;
  }
}
.registration-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.registration-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.registration-bg-top {
  position: absolute;
  top: 5%;
  left: 5%;
  right: 5%;
  width: 90%;
}
.registration-bg-bottom {
  position: absolute;
  bottom: 7.5%;
  left: 5%;
  right: 5%;
  width: 90%;
}
@media (min-width: 992px) {
  .registration-bg-bottom {
    bottom: 10%;
  }
}
.registration .container {
  position: relative;
  z-index: 1;
}
.registration-title {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  animation: popup 0.6s ease-out 0.3s backwards, breathe 3s ease-in-out 0.9s infinite;
}
@media (min-width: 992px) {
  .registration-title {
    width: 468px;
  }
}
.registration-form {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 8rem auto 0;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 4px 22.7px rgba(0, 0, 0, 0.25));
}
@media (min-width: 992px) {
  .registration-form {
    margin: 4rem auto 0;
    transform: translateX(20%);
  }
}
.registration-form .form-art-top,
.registration-form .form-art-bottom {
  width: 100%;
  display: block;
}
.registration-form .form-top-wrapper {
  position: relative;
}
.registration-form .form-top-wrapper .social-links {
  position: absolute;
  bottom: 10%;
  right: 2em;
  display: flex;
  gap: 1rem;
  z-index: 2;
}
@media (min-width: 768px) {
  .registration-form .form-top-wrapper .social-links {
    bottom: 2em;
    right: 6em;
    gap: 1.5rem;
  }
}
.registration-form .form-top-wrapper .social-links .social-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .registration-form .form-top-wrapper .social-links .social-icon {
    width: 5rem;
    height: 5rem;
  }
}
.registration-form .form-top-wrapper .social-links .social-icon:hover {
  transform: scale(1.1);
}
.registration-form .form-top-wrapper .social-links .social-icon img {
  width: 100%;
  height: auto;
}
.registration-form-wrapper {
  padding: 0 6% 0 6.5%;
}
.registration-form .form-container {
  width: 100%;
  padding: 2rem 2rem;
  background-color: #efefef;
  background-image: url("../images/registration-form-middle-in.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}
@media (min-width: 992px) {
  .registration-form .form-container {
    padding: 2rem 2rem 2rem 7rem;
  }
}
.registration-form .form-inputs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 992px) {
  .registration-form .form-inputs-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
.registration-form .form-label {
  width: 52%;
  padding-left: 3rem;
}
@media (min-width: 768px) {
  .registration-form .form-label {
    padding-left: 8rem;
  }
}
@media (min-width: 992px) {
  .registration-form .form-label {
    padding-left: 3rem;
  }
}
.registration-form .form-inputs {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.registration-form .form-row {
  display: flex;
  gap: 1rem;
}
.registration-form .form-row .form-group {
  flex: 1;
}
.registration-form .form-control {
  width: 100%;
  padding: 1.5rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 1rem;
  font-size: 2rem;
  color: #fff;
}
.registration-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.registration-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.registration-form select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  font-size: max(16px, 2rem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 1.2rem;
  padding-right: 4rem;
}
.registration-form select.form-control option {
  background-color: #000;
  color: #fff;
  padding: 1rem;
}
.registration-form .form-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.registration-form .form-check-input {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.registration-form .form-check-label {
  font-size: 1.8rem;
}
.registration-form .form-submit {
  flex-shrink: 0;
}
.registration-form .btn-submit {
  background-color: #ff6b00;
  color: white;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  border-radius: 1rem;
  transition: background-color 0.3s ease;
}
@media (min-width: 992px) {
  .registration-form .btn-submit {
    width: auto;
    padding: 2rem 4rem;
  }
}
.registration-form .btn-submit:hover {
  background-color: #cc5600;
}
.registration-player {
  position: absolute;
  top: 16rem;
  right: -5%;
  width: 60%;
  z-index: 0;
  animation: float 3s ease-in-out infinite;
}
@media (min-width: 768px) {
  .registration-player {
    top: 35rem;
  }
}
@media (min-width: 992px) {
  .registration-player {
    top: 32rem;
    left: 0%;
    width: 40%;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
  }
}

@keyframes marquee-label {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ==========================================
   =========== SECTIONS - LABEL ==========
   ========================================== */
.label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 10;
  overflow: visible;
}
@media (min-width: 992px) {
  .label {
    width: 100%;
  }
}
.label-wrapper {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 150%;
  height: 12.5vw;
  z-index: 1;
  transform-origin: center center;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .label-wrapper {
    height: 10vw;
  }
}
@media (min-width: 992px) {
  .label-wrapper {
    height: 4.5vw;
  }
}
.label-image {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 200%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
}
.label-text-container {
  display: flex;
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  animation: marquee-label 10s linear infinite;
}
.label-text {
  width: 50%;
  flex-shrink: 0;
}
.label.left {
  bottom: -8%;
}
@media (min-width: 992px) {
  .label.left {
    bottom: -15%;
  }
}
.label.left .label-wrapper {
  transform: translateY(50%) rotate(4deg);
}
@media (min-width: 992px) {
  .label.left .label-wrapper {
    transform: translateY(50%) rotate(1.5deg);
  }
}
.label.right {
  bottom: 0%;
}
@media (min-width: 992px) {
  .label.right {
    bottom: -5%;
  }
}
.label.right .label-wrapper {
  transform: translateY(50%) rotate(-4deg);
}
@media (min-width: 992px) {
  .label.right .label-wrapper {
    transform: translateY(50%) rotate(-1.5deg);
  }
}

/* ==========================================
   =========== SECTIONS - REWARDS ==========
   ========================================== */
.rewards {
  position: relative;
  padding: 8rem 0;
  margin-top: -8rem;
  background-color: #fff;
}
@media (min-width: 992px) {
  .rewards {
    padding: 12rem 0 32rem;
    margin-top: -15rem;
  }
}
.rewards-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.rewards-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rewards .container {
  position: relative;
  z-index: 1;
}
.rewards-title {
  height: 4rem;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
@media (min-width: 992px) {
  .rewards-title {
    height: 12rem;
  }
}
.rewards-subtitle {
  font-size: 2.25rem;
  text-align: center;
  color: #666666;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .rewards-subtitle {
    font-size: 4rem;
    margin-bottom: 10rem;
  }
}
.rewards-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}
.rewards-grid .rewards-player-left {
  width: 45%;
  position: absolute;
  bottom: 0;
  left: -15%;
  transform: rotate(-15deg);
  animation: floatVertical 3s ease-in-out infinite;
}
@media (min-width: 992px) {
  .rewards-grid .rewards-player-left {
    width: 40%;
    bottom: auto;
    top: -12%;
    transform: rotate(0deg);
    animation: floatVertical 4s ease-in-out infinite;
  }
}
.rewards-grid .rewards-player-right {
  width: 50%;
  position: absolute;
  top: 25%;
  right: -20%;
  animation: gentleFloat 3.5s ease-in-out infinite;
}
@media (min-width: 992px) {
  .rewards-grid .rewards-player-right {
    top: -15%;
    width: 40%;
    animation: gentleFloat 4.5s ease-in-out infinite;
  }
}

.rewards-featured {
  position: relative;
  width: 90vw;
  max-width: 990px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
  background: #262626;
}
@media (min-width: 768px) {
  .rewards-featured {
    padding: 2rem 12rem;
  }
}
@media (min-width: 992px) {
  .rewards-featured {
    width: 90%;
    padding: 6rem 24rem 2rem;
  }
}
.rewards-featured-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.rewards-featured-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media (min-width: 992px) {
  .rewards-featured-bg img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.rewards-featured-item {
  position: relative;
  z-index: 1;
  text-align: center;
}
.rewards-featured-item img {
  width: 100%;
}
.rewards-featured-item .rewards-item-label {
  background-image: url("../images/rewards-item-label.jpg");
  background-size: cover;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 0.5rem 1rem;
}
@media (min-width: 992px) {
  .rewards-featured-item .rewards-item-label {
    font-size: 3rem;
  }
}
.rewards-featured-item .rewards-item-label span {
  color: #f4ce1f;
}

.rewards-prograse {
  position: relative;
  width: 90vw;
  max-width: 990px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: max-content 1rem minmax(auto, 200px);
  justify-content: center;
}
@media (min-width: 992px) {
  .rewards-prograse {
    width: 90%;
    grid-template-columns: 1fr;
  }
}
.rewards-prograse-board {
  position: relative;
  background: #fff;
  text-align: center;
}
.rewards-prograse-board-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.rewards-prograse-board-bg-mobile {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (min-width: 992px) {
  .rewards-prograse-board-bg-mobile {
    display: none;
  }
}
.rewards-prograse-board-bg-desktop {
  display: none;
}
@media (min-width: 992px) {
  .rewards-prograse-board-bg-desktop {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}
.rewards-prograse-board-content {
  padding: 1rem;
}
.rewards-prograse-board-content p {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.rewards-prograse-board-content p span {
  font-size: 1.5em;
}
@media (min-width: 992px) {
  .rewards-prograse-board-content p {
    font-size: 5.5rem;
  }
}
.rewards-prograse-percentage {
  background: #000;
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 992px) {
  .rewards-prograse-percentage {
    padding: 0 10%;
    height: 24px;
  }
}
.rewards-prograse-percentage-bar {
  background: #d5482b;
  transition: all 250ms ease-in-out;
}
.rewards-prograse-percentage-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: #d5482b;
  z-index: 0;
}
@media (min-width: 992px) {
  .rewards-prograse-percentage-bar:before {
    width: 10%;
    height: 100%;
  }
}
.rewards-prograse-percentage-bar.full::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 10%;
  background: #d5482b;
  z-index: 0;
}
@media (min-width: 992px) {
  .rewards-prograse-percentage-bar.full::after {
    width: 10%;
    height: 100%;
  }
}
.rewards-prograse-percentage-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: absolute;
  top: 0;
  left: -0.5rem;
  height: 100%;
  padding: 10% 0;
}
@media (min-width: 992px) {
  .rewards-prograse-percentage-content {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 0 10%;
    left: 0;
    top: -1rem;
  }
}
.rewards-prograse-percentage-content .point-wrapper {
  position: relative;
}
.rewards-prograse-percentage-content .point-wrapper img {
  width: 2rem;
}
@media (min-width: 992px) {
  .rewards-prograse-percentage-content .point-wrapper img {
    width: 5rem;
  }
}
.rewards-prograse-percentage-content .point-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20rem;
  height: 0.5rem;
  background: #d5482b;
  z-index: -1;
}
@media (min-width: 992px) {
  .rewards-prograse-percentage-content .point-wrapper::after {
    width: 1rem;
    height: 20rem;
  }
}
.rewards-prograse-item-wraper {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .rewards-prograse-item-wraper {
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    padding: 0 2.5%;
    margin-top: 5rem;
  }
}
.rewards-prograse-item {
  background: url(../images/rewards-prograse-item-bg.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  display: grid;
  justify-content: center;
  justify-items: center;
  padding: 0.75rem 1rem;
}
.rewards-prograse-item img {
  width: 5rem;
}
@media (min-width: 992px) {
  .rewards-prograse-item img {
    width: 9rem;
  }
}
.rewards-prograse-item .rewards-item-label {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}
@media (min-width: 992px) {
  .rewards-prograse-item .rewards-item-label {
    font-size: 2rem;
  }
}
.rewards-prograse-item:nth-child(1) {
  transform: rotate(-8deg);
}
.rewards-prograse-item:nth-child(2) {
  transform: rotate(5deg);
}
.rewards-prograse-item:nth-child(3) {
  transform: rotate(-3deg);
}
.rewards-prograse-item:nth-child(4) {
  transform: rotate(7deg);
}
.rewards-prograse-item:nth-child(5) {
  transform: rotate(-6deg);
}
.rewards-prograse-item.achieve::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 6rem;
  background: url(../images/rewards-prograse-item-achieve.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.75));
}
@media (min-width: 992px) {
  .rewards-prograse-item.achieve::after {
    width: 12rem;
    height: 10rem;
  }
}

/* ==========================================
   ========= SECTIONS - CHARACTERS =========
   ========================================== */
.characters {
  position: relative;
  padding: 8rem 0 4rem;
  background: #fff;
  overflow: hidden;
}
@media (min-width: 992px) {
  .characters {
    padding: 8rem 0;
    margin-top: -12rem;
  }
}
.characters-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.characters-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.characters-bg-frame {
  display: none;
}
@media (min-width: 992px) {
  .characters-bg-frame {
    display: block;
    position: absolute;
    top: 43%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%) rotate(-4deg);
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 1;
  }
}
.characters .container {
  position: relative;
  z-index: 2;
  padding: 0;
}
.characters-title, .characters-subtitle {
  height: 4rem;
  width: auto;
  margin: 0 auto 4rem;
  display: block;
}
@media (min-width: 992px) {
  .characters-title, .characters-subtitle {
    height: 12rem;
    margin-bottom: 8rem;
  }
}
.characters-content {
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .characters-content {
    margin-bottom: 8rem;
  }
}
.characters-item {
  text-align: center;
}
.characters-item img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.characters-cta {
  height: 8rem;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  animation: float 2s ease-in-out infinite;
}
@media (min-width: 992px) {
  .characters-cta {
    height: 12rem;
  }
}
.characters-cta:hover {
  animation-play-state: paused;
}

/* ==========================================
   ============ LAYOUT - FOOTER ============
   ========================================== */
.footer {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}
@media (min-width: 992px) {
  .footer {
    padding: 4rem 0;
  }
}
.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.footer-bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
}
.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #3b3b3b;
}
@media (min-width: 992px) {
  .footer-brand {
    gap: 6rem;
    margin-bottom: 5rem;
  }
}
.footer-logo {
  height: 6rem;
  width: auto;
}
@media (min-width: 992px) {
  .footer-logo {
    height: 15rem;
  }
}
.footer-content ul {
  list-style: none;
  padding: 0;
}
.footer-content ul li {
  font-size: 2rem;
  line-height: 1.8;
  color: #666666;
  padding-left: 1.5em;
  position: relative;
}
@media (min-width: 992px) {
  .footer-content ul li {
    font-size: 3rem;
  }
}
.footer-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b00;
}
.footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .footer-bottom {
    flex-direction: row;
    gap: 2rem;
  }
}
.footer-rating {
  display: flex;
  justify-content: center;
}
.footer-rating .rating-badge {
  height: 5rem;
  width: auto;
}
@media (min-width: 992px) {
  .footer-rating .rating-badge {
    height: 6rem;
  }
}
.footer-copyright {
  text-align: center;
}
.footer-copyright p {
  font-size: 2rem;
  color: #999;
  margin: 0;
}

/* ==========================================
   ============ OVERLAY & POPUP ============
   ========================================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: flex;
  opacity: 1;
}

.popup {
  position: relative;
  background: #fff;
  max-width: 90%;
  width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 22.7px rgba(0, 0, 0, 0.25);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
@media (min-width: 992px) {
  .popup {
    width: 800px;
  }
}
.overlay.active .popup {
  transform: scale(1);
}
.popup-header {
  height: 40px;
  background-color: #3684ed;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.popup-content {
  font-size: 2rem;
  color: #1a1a1a;
  text-align: center;
  padding: 2rem;
  background-color: #efefef;
  background-image: url(../images/registration-form-middle-in.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}
@media (min-width: 992px) {
  .popup-content {
    font-size: 2.4rem;
  }
}
.popup-close {
  width: 4rem;
  height: 4rem;
  background: none;
  border: none;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  color: #666666;
  transition: color 0.3s ease;
}
.popup-close:hover {
  color: #000;
}

.btn-close {
  background-color: #ff6b00;
  color: #fff;
  border: none;
  padding: 1.5rem 4rem;
  font-size: 2.4rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 1rem;
  margin-top: 2rem;
  transition: background-color 0.3s ease;
}
@media (min-width: 992px) {
  .btn-close {
    padding: 2rem 6rem;
    font-size: 2.8rem;
  }
}
.btn-close:hover {
  background-color: #cc5600;
}/*# sourceMappingURL=main.css.map */