@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
nav {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding: 12px 0;
  position: fixed;
  top: 15px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-wrap: wrap;
  overflow: hidden;
}
nav.expanded {
  padding: 12px 0 20px 0;
}
nav .nav-links {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
nav .nav-links li {
  margin: 0 15px;
  display: flex;
  align-items: center;
}
nav .nav-links li img {
  border-radius: 50%;
  max-height: 40px;
  display: block;
}
nav .nav-links a {
  color: #ececec;
  text-decoration: none;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav .nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .nav-links a:hover {
  color: white;
}
nav .nav-links a:hover::after {
  width: 100%;
  left: 0;
}
nav .nav-links a:has(img)::after {
  display: none;
}
nav .expanded-menu-items {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .expanded-menu-items li {
  display: flex;
  align-items: center;
  width: 100%;
}
nav .expanded-menu-items li a {
  color: #ececec;
  text-decoration: none;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 20px;
  border-radius: 8px;
  width: calc(100% - 40px);
  background: rgba(255, 255, 255, 0.05);
  gap: 10px;
}
nav .expanded-menu-items li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(2px);
}
nav .expanded-menu-items li a.premium-mobile {
  background: linear-gradient(135deg, #daa520, #ffd700, #ffec8b);
  color: #2a2a2a;
  box-shadow: 0 0 8px rgba(218, 165, 32, 0.4);
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav .expanded-menu-items li a.premium-mobile span {
  color: #2a2a2a;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
nav .expanded-menu-items li a.premium-mobile .premium-icon {
  color: #2a2a2a;
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
nav .expanded-menu-items li a.premium-mobile:hover {
  transform: translateX(2px) translateY(-1px);
}
nav .expanded-menu-items li a.premium-mobile:hover .premium-icon {
  transform: scale(1.1) rotate(10deg);
}
nav .expanded-menu-items li a.premium-mobile:hover span {
  color: #2a2a2a;
}
nav .expanded-menu-items li a.invite-mobile {
  background: rgb(0, 140, 255);
  color: white;
  box-shadow: 0 0 8px rgba(0, 140, 255, 0.4);
}
nav .expanded-menu-items li a.invite-mobile span {
  color: white;
}
nav .expanded-menu-items li a.invite-mobile .icon {
  color: white;
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
nav .expanded-menu-items li a.invite-mobile:hover {
  transform: translateX(2px) translateY(-1px);
}
nav .expanded-menu-items li a.invite-mobile:hover .icon {
  rotate: -30deg;
  transform: translateX(1px);
}
nav .expanded-menu-items li a.invite-mobile:hover span {
  color: white;
}
nav .expanded-menu-items.show {
  max-height: 400px;
  opacity: 1;
  margin-top: 15px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s, margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .menu-icon {
  display: none;
  position: absolute;
  right: 20px;
  top: 16px;
}
nav #checkbox {
  display: none;
}
nav .toggle {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.5s;
}
nav .bars {
  width: 100%;
  height: 4px;
  background-color: white;
  border-radius: 4px;
}
nav #bar2 {
  transition-duration: 0.3s;
}
nav #bar1, nav #bar2, nav #bar3 {
  width: 100%;
}
nav #checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}
nav #checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}
nav .premium-btn {
  margin-right: 15px;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: linear-gradient(135deg, #daa520, #ffd700, #ffec8b);
  box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
}
nav .premium-btn:hover {
  transform: translateY(-1px);
}
nav .premium-btn:active {
  transform: translateY(1px);
}
nav .premium-btn span {
  color: #2a2a2a;
  text-decoration: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}
nav .premium-btn span::after {
  content: "";
  display: block;
  height: 2px;
  background: #2a2a2a;
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .premium-btn:hover span::after {
  width: 100%;
  left: 0;
}
nav .premium-btn .premium-icon {
  color: #2a2a2a;
  width: 22px;
  height: 22px;
  transition: all 0.5s ease;
  text-decoration: none;
  z-index: 2;
}
nav .premium-btn:hover .premium-icon {
  transform: scale(1.2) rotate(15deg);
}
nav .premium-btn::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 1;
}
nav .premium-btn:hover::before {
  animation: shine 1.4s ease;
}
nav .premium-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
nav .premium-btn:hover::after {
  opacity: 1;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  }
  50% {
    box-shadow: 0 0 16px rgba(218, 165, 32, 0.6);
  }
  100% {
    box-shadow: 0 0 12px rgba(218, 165, 32, 0.5);
  }
}
nav .invite {
  margin-left: auto;
  margin-right: 25px;
  padding: 8px 20px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background: rgb(0, 140, 255);
  box-shadow: 0 0 15px rgba(0, 140, 255, 0.5);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
nav .invite:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.6);
}
nav .invite:active {
  transform: translateY(1px);
}
nav .invite span {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  position: relative;
}
nav .invite span::after {
  content: "";
  display: block;
  height: 2px;
  background: white;
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  transition: width 0.4s ease, left 0.4s ease;
}
nav .invite:hover span::after {
  width: 100%;
  left: 0;
}
nav .invite .icon {
  color: white;
  width: 24px;
  height: 24px;
  transition: all 0.5s ease;
  text-decoration: none;
}
nav .invite:hover .icon {
  rotate: -50deg;
  transform: translateX(1px);
}
nav .invite::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.3;
}
nav .invite:hover::before {
  animation: shine 1.5s ease;
}
@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

@media (max-width: 1000px) {
  nav .nav-links .menu-item {
    display: none;
  }
  nav .invite, nav .premium-btn {
    display: none !important;
  }
  nav .menu-icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    right: 20px;
    position: absolute;
    top: 16px;
  }
}
*, html {
  scroll-behavior: smooth;
}

.spacer {
  aspect-ratio: 900/300;
  width: 100%;
  height: 200%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  position: absolute;
  margin-top: -60px;
}

.layer1 {
  background-image: url("homesplash.svg");
}

head .icon {
  border-radius: 2vh;
  width: 32px;
  height: 32px;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #303030;
  display: flex; /* This control of the display and when it turns off is contrtolled in the fadeinanimationfrontpage.js */
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.dots {
  display: flex;
  gap: 9vw; /* Space between circles */
}

.dot {
  width: 3rem;
  height: 3rem;
  background-color: #e76969;
  border-radius: 50%;
  animation: bounce 1.5s infinite ease;
}

.dot:nth-child(2) {
  animation-delay: 0.2s;
}

.dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}
@media (max-width: 400px) {
  #loading-screen .dots {
    gap: 15vw;
  }
  #loading-screen .dot {
    width: 2.5rem;
    height: 2.5rem;
  }
}
main section .features {
  margin-top: 150px;
  position: relative;
}
main section .features::after {
  content: "";
  display: block;
  position: relative;
  left: 50%;
  height: 1px;
  background: radial-gradient(circle, #747474, #616161);
  z-index: -1;
  max-width: 59%;
  transform: translateX(-50%);
  animation: subtleMovement 3s infinite ease-in-out;
}
main section .features-title {
  position: relative;
  max-width: 90%;
  font-weight: 410;
  font-size: 1.9em;
  color: #ffffff;
  margin: 0 auto;
  margin-top: 25px;
}
main section h2 {
  margin-top: 8vh;
}
main section .stats {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  max-width: 750px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
main section .stats .header-container {
  margin-left: 100px;
  display: flex;
  flex-direction: row;
  align-items: right;
  text-align: right;
  contain: layout;
}
main section .stats .header-container h2 {
  text-align: right;
  display: inline-block;
  margin: 0;
  font-weight: 420;
  font-size: 3.4rem;
  color: rgb(255, 255, 255);
  opacity: 1;
  transform: translateX(30px);
}
main section .stats .header-container h2::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 10;
  height: 100%;
  width: 2px;
  background-color: #e76969;
}
main section .stats .header-container .word {
  display: inline-block;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
main section .stats .header-container .word.visible {
  opacity: 1;
  transform: translateX(0);
}
main section .stats .stats-wow {
  position: absolute;
  transform: translate(-100%, -400%);
  z-index: -1;
  transition: transform 0.5s ease, z-index 0s ease 0.5s, opacity 0.5s ease;
  font-size: 1.3em;
  color: #9e9e9e;
  white-space: nowrap;
  opacity: 0;
}
main section .stats .stats-wow.active {
  opacity: 1;
  transform: translate(-100%, calc(-600% - 20px));
}
main section .stats .stats-content {
  z-index: 0;
  padding: 20px 0px;
  background-color: #303030;
  border-radius: 20px;
  flex-direction: column;
  align-items: center;
  transform: translateX(90px);
  transition: transform 0.8s ease, opacity 0.5s ease;
  opacity: 0;
  position: relative;
}
main section .stats .stats-content.show-section {
  transform: translateX(0px);
  opacity: 1;
}
main section .stats .stats-content:hover .stats-number::after {
  width: 100%;
  left: 0;
}
main section .stats .stats-content .stats-number {
  position: relative;
}
main section .stats .stats-content .stats-number::after {
  content: "";
  display: block;
  height: 2px;
  background: white;
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  transition: width 0.5s ease, left 0.5s ease;
}
main section .stats .stats-content p {
  position: relative;
  font-size: 1.3em;
  margin: 0 auto;
  color: #9e9e9e;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}
main section .stats .stats-content p .stats-number {
  color: #e76969;
  position: relative;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, font-size 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}
main section .stats .stats-content p .stats-number.visible {
  opacity: 1;
  transform: translateY(0);
}
main section .stats .stats-content p .stats-number.visible::after {
  width: 100%;
  left: 0;
}
main section .stats .stats-content .stats-graph {
  margin: 0 auto;
}
main section .stats .stats-content .stats-graph .graph-title {
  font-size: 0.7em;
  margin-bottom: 10px;
}
main section .stats .stats-content .stats-graph #userCountGraph {
  width: 99% !important;
  height: auto;
  max-height: 200px;
}
main section p {
  position: relative;
  max-width: 90%;
  font-size: 1.2em;
  margin: 0 auto;
  color: #9e9e9e;
  text-align: center;
  line-height: 1.5;
}

.cta-section {
  background: #e76969;
  padding: 0px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 120px;
  margin-bottom: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.cta-section .cta-container {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cta-section .cta-container h3 {
  font-size: 2.7rem;
  font-weight: 420;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.cta-section .cta-container p {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.cta-section .cta-container .cta-button {
  padding: 10px 20px;
  border: none;
  font-size: 1.3em;
  color: #fff;
  border-radius: 7px;
  transition: 0.5s;
  transition-property: box-shadow;
  display: inline-block;
  background: rgb(0, 140, 255);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1.3em;
  border-radius: 5px;
  text-decoration: none;
  transition: 1s;
}
.cta-section .cta-container .cta-button:hover {
  translate: 0 -1px;
  box-shadow: 0 0 15px rgb(0, 140, 255);
}
.cta-section .cta-container .cta-button:active {
  translate: 0 1px;
}

@media (max-width: 930px) {
  .cta-section {
    padding: 0px 20px;
  }
  .cta-section .cta-container h3 {
    font-size: 2.3rem;
  }
  .cta-section .cta-button {
    font-size: 1.1em;
    padding: 5px 10px !important;
  }
}
@media (max-width: 600px) {
  .cta-section .cta-container h3 {
    font-size: 1.7em;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 860px) {
  section .stats {
    flex-direction: column;
  }
  section .stats .stats-wow {
    transform: translate(0%, 600%) !important;
  }
  section .stats .stats-wow.active {
    transform: translate(0%, calc(500% + 100px)) !important;
  }
  section .stats .stats-content {
    max-width: 95%;
    transform: translateY(-30px) !important;
    transition: opacity 0.3s ease, transform 0.5s ease !important;
  }
  section .stats .stats-content.show-section {
    transform: translateY(0px) !important;
  }
  section .stats .stats-content p {
    font-size: 1.2em !important;
  }
  section .stats .header-container {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    text-align: center !important;
    align-items: center !important;
  }
  section .stats .header-container h2 {
    text-align: center !important;
    display: inline-block;
    margin: 0;
    font-weight: 420;
    font-size: 3.4rem;
    color: rgb(255, 255, 255);
    transform: translateX(0px) !important;
    align-items: center !important;
  }
  section .stats .header-container h2 br {
    display: none;
  }
  section .stats .header-container h2::after {
    content: "";
    position: relative;
    left: 0 !important;
    right: 0 !important;
    margin-top: 85px !important;
    height: 2px !important;
    width: 100% !important;
    background-color: #e76969;
    display: block !important;
  }
}
@media (max-width: 600px) {
  section .stats .header-container h2 {
    font-size: 2.6em !important;
  }
  section .stats .header-container h2::after {
    content: "";
    margin-top: 67px !important;
  }
}
@media (max-width: 450px) {
  section .stats .header-container h2 {
    font-size: 2em !important;
  }
  section .stats .header-container h2::after {
    content: "";
    margin-top: 50px !important;
  }
}
@media (max-width: 340px) {
  section .stats .header-container h2 {
    font-size: 1.7em !important;
  }
  section .stats .header-container h2::after {
    content: "";
    margin-top: 45px !important;
  }
}
@media (max-width: 880px) {
  section .features::after {
    max-width: 90% !important;
  }
}
body {
  font-family: "Kanit", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #262626;
  text-align: center;
}
body h2 {
  display: inline-block; /* Ensure h1 only takes up as much space as its content */
  margin: 0;
  font-weight: 420;
  font-size: 2.5em; /* Adjusted font-size for better balance */
  color: rgb(255, 255, 255); /* Primary color for headings */
  position: relative;
  text-align: center; /* Center-align text */
}
body h2::after {
  content: "";
  display: block;
  width: 100%; /* Match the width of the text */
  height: 2px; /* Thickness of the separator */
  background-color: #e76969; /* Color of the separator */
  margin-bottom: 2vh; /* Space below the separator */
  margin-top: 1vh;
}
body .section {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(140px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
body .section.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
body .section .section-content {
  text-align: left;
  position: relative;
  margin-right: 5vw;
}
body .section .section-content .section-title {
  font-weight: 410;
  position: relative;
  display: inline-block;
  margin: 0;
}
body .section .section-content .section-title::after {
  content: "";
  display: block;
  width: 100%; /* Match the width of the text */
  height: 2px; /* Thickness of the separator */
  background-color: #e76969; /* Color of the separator */
  margin-bottom: 2vh; /* Space below the separator */
  margin-top: -0.5vh;
}
body .section .section-content .section-title .section-title-big {
  font-size: 2.5em;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
}
body .section .section-content .section-paragraph {
  max-width: 30vw;
  min-width: 30vw;
  margin: 0;
  margin-left: 20px;
  font-size: 1.2em;
  color: #9e9e9e;
  margin-bottom: 10px;
  line-height: 1.5;
}
body .section .section-content .section-paragraph::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #e76969;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  margin-left: -20px;
}
body .section .section-content .section-paragraph-no-bullet {
  max-width: 30vw;
  min-width: 30vw;
  margin: 0;
  font-size: 1.2em;
  color: #9e9e9e;
  line-height: 1.5;
  margin-bottom: 20px;
}
body .section .section-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
body .section .section-images .section-image {
  width: 100%;
  max-width: 450px;
  min-width: 450px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  outline: 2px solid #e76969;
  outline-offset: 0px;
  max-height: 300vw;
  min-height: 100px;
}
body .section .section.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s; /* Reset delay once the section is visible */
}
@media (max-width: 880px) {
  body .section {
    flex-direction: column;
    align-items: center;
    padding: 0 5vw;
  }
  body .section .section-content {
    margin-right: 0;
    max-width: 90vw;
    min-width: auto;
  }
  body .section .section-content .section-paragraph,
  body .section .section-content .section-paragraph-no-bullet {
    max-width: 100%;
    margin-left: 10;
  }
  body .section .section-images {
    margin-top: 20px;
    max-width: 90vw;
    min-width: 90vw;
    align-items: flex-start;
  }
  body .section .section-images .section-image {
    max-width: 60vw;
    min-width: 60vw;
    height: auto;
  }
}
@media (max-width: 600px) {
  body .section .section-content .section-paragraph {
    font-size: 1em;
  }
  body .section .section-content .section-paragraph-no-bullet {
    font-size: 1em;
  }
  body .section .section-images {
    align-items: center;
  }
  body .section .section-images .section-image {
    max-width: 90vw;
    min-width: 90vw;
  }
}
body header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 10vw;
  position: relative;
  z-index: 2;
}
body header .header-text {
  margin-top: 16vh;
  flex: 1;
  text-align: left;
}
body header .header-text .button-container {
  position: relative;
  flex-direction: row;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: left;
  width: 100%;
}
body header .header-text .button-container .features-button {
  display: inline-block;
  background-color: #4e4b4b;
  color: #ffffff;
  padding: 11px 25px;
  font-size: 1.3em;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
body header .header-text .button-container .features-button:hover {
  background-color: #343232;
}
body header .header-text .button-container .add-to-server-button {
  padding: 10px 20px;
  border: none;
  font-size: 1.3em;
  color: #fff;
  border-radius: 7px;
  transition: 0.3s;
  transition-property: box-shadow, background;
  display: inline-block;
  background: rgb(0, 140, 255);
  box-shadow: 0 0 15px rgba(0, 140, 255, 0.2);
  text-decoration: none;
}
body header .header-text .button-container .add-to-server-button:hover {
  background: #0070cc;
  box-shadow: 0 0 15px rgba(0, 140, 255, 0);
}
body header .header-text h1 {
  font-weight: 500;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 0px;
  line-height: 1.2;
}
body header .header-text p {
  font-size: 1.2rem;
  color: #303030;
  line-height: 1.66;
  max-width: 500px;
}
body header .header-chat-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 190px;
  gap: 10px;
}
body header .header-chat-container .heading {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
body header .header-chat-container .heading .word {
  font-size: 30px;
  color: rgb(255, 255, 255);
  opacity: 1;
}
body header .header-chat-container .chat-simulation {
  width: 100%;
  max-width: 435px;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  background-color: #303030;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.7s ease;
}
body .chat-message {
  display: flex;
  align-items: flex-start;
  opacity: 0;
  position: relative;
  font-size: 18px;
  color: #333;
  margin: 15px 0;
  transition: opacity 0.1s ease, transform 0.1s ease-in-out;
}
body .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
body .text-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
body .chatrewards .username::before {
  content: "Chat Rewards";
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 0;
  top: 0;
}
body .username {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
}
body .username img {
  margin-left: 7px;
  max-width: 40px;
}
body .timestamp {
  color: #9e9e9e;
  font-size: 0.75rem;
  margin-left: 10px;
}
body .message {
  color: #585858;
}
body .user-message {
  color: #9e9e9e;
}
@keyframes confetti-shoot {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(calc(var(--x-movement) * 1), -100px) rotate(360deg);
    opacity: 0;
  }
}
@keyframes flash-gold {
  0% {
    color: #f39c12;
  }
  50% {
    color: #ffdd00;
  }
  100% {
    color: #f39c12;
  }
}
body .reward-message {
  color: #f39c12;
  font-weight: bold;
  position: relative;
}
body .flash-gold-animation {
  animation: flash-gold 0.35s ease;
}
body .confetti {
  position: absolute;
  bottom: 0;
  width: 5px;
  height: 10px;
  background-color: #ffdd00;
  opacity: 0;
  border-radius: 3px;
  animation: confetti-shoot 1s ease;
  --x-movement: 0px;
}
body .confetti:nth-child(odd) {
  background-color: #f39c12;
}
body .confetti:nth-child(even) {
  background-color: #ffdd00;
}
@keyframes fly-up {
  0% {
    opacity: 0;
    transform: translateY(75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body .show-message {
  animation: fly-up 0.6s ease forwards;
}
@media (max-width: 1090px) {
  body header h1 {
    font-size: 5rem;
  }
  body header p {
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  body header .header-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  body header .header-text {
    margin-top: 25vh;
    text-align: center;
  }
  body header .header-text p {
    max-width: 700px;
  }
  body header .header-text .button-container {
    justify-content: center;
  }
  body header .header-text h1 {
    font-size: 3rem;
  }
  body header .header-text .separator {
    margin: 15px auto 0;
  }
  body header .header-chat-container {
    align-items: center;
  }
  body header .header-chat-container .heading {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 860px) {
  @keyframes confetti-shoot {
    0% {
      transform: translate(10, 0) rotate(0deg);
      opacity: 1;
    }
    100% {
      transform: translate(calc(var(--x-movement) * -1), -150px) rotate(360deg);
      opacity: 0;
    }
  }
  body header .header-chat-container .heading {
    font-size: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: -10px;
    line-height: 1;
  }
}
@media (max-width: 440px) {
  body header .header-text h1 {
    font-size: 2.5rem;
  }
  body header .header-chat-container .heading {
    font-size: 1.8rem;
  }
}
@media (max-width: 400px) {
  body .chat-message {
    font-size: 15px;
  }
  body .avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
  }
  body .timestamp {
    font-size: 0.6rem;
  }
}
@media (max-width: 350px) {
  body header .header-text h1 {
    font-size: 2rem;
  }
  body header .header-chat-container .heading {
    font-size: 1.5rem;
  }
}
body footer {
  background: #303030; /* Use section color */
  color: #ffffff; /* White text color */
  padding: 10px 0; /* Vertical padding */
  position: relative; /* Relative positioning */
  bottom: 0; /* Align to bottom */
  width: 100%; /* Full width */
  text-align: center; /* Center the text */
}
body footer p {
  margin: 0;
  margin-bottom: 10px;
  color: #9e9e9e;
  font-size: 18px;
}
body footer a {
  white-space: nowrap; /* Prevent text from wrapping to the next line */
  color: white; /* Link color */
  margin: 0 3px; /* Horizontal spacing between links */
  text-decoration: none; /* Remove underline */
  position: relative; /* Position relative to allow for absolute positioning of pseudo-element */
}
body footer a:hover {
  text-decoration: none; /* Ensure no underline on hover */
}
body footer a::after {
  content: ""; /* Create an empty content for the pseudo-element */
  display: block; /* Make it a block-level element */
  height: 2px; /* Height of the line */
  background: #e76969; /* Color of the line */
  position: absolute; /* Position it absolutely */
  left: 50%; /* Start from the middle of the link */
  bottom: -3px; /* Position below the link */
  width: 0; /* Start with a width of 0 */
  transition: width 0.4s ease, left 0.4s ease; /* Animate the width and position */
}
body footer a:hover::after {
  width: 100%; /* Expand to full width on hover */
  left: 0; /* Move to the left */
}
@media (max-width: 1293px) {
  body header .header-content h1 {
    font-size: 2.5em;
  }
}
@media (max-width: 1090px) {
  body header .header-content h1 {
    font-size: 3em;
  }
  body .section-image {
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  body main section h2 {
    margin-top: 80px;
  }
  body main section p {
    max-width: 310px;
  }
  body header h1 {
    font-size: 2.5em !important;
  }
  body header .header-text {
    margin-bottom: -100px;
  }
  body header .header-text .button-container {
    margin-top: 150px;
    flex-direction: column;
  }
}
@media (max-width: 359px) {
  body header .header-content h1 {
    font-size: 2.3em;
  }
  body header .header-content p {
    font-size: 1em;
  }
}
@media (max-width: 338px) {
  body header .header-content h1 {
    font-size: 2em;
  }
}
@media (max-width: 306px) {
  body header .header-content h1 {
    font-size: 1.7em;
  }
  body h1 {
    font-size: 1.7em;
  }
}
@media (max-width: 268px) {
  body header .header-content h1 {
    font-size: 1.5em;
  }
}
@media (max-height: 800px) {
  body h1 {
    margin-top: 10vh;
  }
}
@media (max-width: 440px) {
  body .heading {
    font-size: 3rem;
  }
}
@media (max-width: 400px) {
  body .chat-message {
    font-size: 15px;
  }
  body .avatar {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  body .timestamp {
    font-size: 0.6rem;
  }
}
@media (max-width: 350px) {
  body .heading {
    font-size: 2.5rem;
  }
}/*# sourceMappingURL=frontpage.css.map */