@import url("https://fonts.googleapis.com/css2?family=Bagel+Fat+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap");

:root {
  --main-color: #65a9d7; /* Go logo blue */
  --background-color: #f2fdff;
  --accent-color: #1b2a41;
  --text-color: #0c1821;
  --backup-color: #427cfa; /* cause i needed something stronger */
}

/* i hate css, still */
.scoll-pane {
  overflow: auto;
  width: 20vw;
  height: 20vh;
  background: var(--background-color);
  padding: 1rem;
  border-radius: 0.5rem;
}

::-webkit-scrollbar {
  width: 12px; /* Mostly for vertical scrollbars */
  height: 12px; /* Mostly for horizontal scrollbars */
}
::-webkit-scrollbar-thumb {
  /* Foreground */
  background: var(--scrollbar-foreground);
  background: black;
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-track {
  /* Background */
  background: var(--scrollbar-background);
  background: transparent;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 0;
  margin: 0;
  font-family: "Bagel Fat One", cursive;
  color: var(--text-color);
}

header {
  background-color: var(--main-color);
  height: 100vh;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

#scrolly-down-arrow-thing {
  position: absolute;
  top: 85vh;
  right: 0;
  animation: bounce 1s infinite;
  transition: opacity 0.75s ease-in-out;
}

a {
  color: var(--backup-color);
  text-decoration: underline var(--backup-color);
}

a:hover {
  text-decoration-color: var(--main-color);
  text-decoration: wavy underline var(--main-color);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block; /* removes inline spacing gap */
}

.hero-stuff {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  height: 100%;
}

.hero-stuff-main {
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  height: 100%;
}

.hero-stuff-main-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin: 115px 0 0 50px;
}

.hero-taglines-parent {
  position: absolute;
  top: 32%;
}

@media (max-width: 768px) {
  .hero-taglines-parent {
    transform: scale(0.75);
  }
}

.hero-taglines-parent-parent {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-left: 40px;
  padding-right: 40px;
  width: 600px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-taglines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tagline-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: auto;
  z-index: -1;
}

.logo {
  width: auto;
  height: 200px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
  transition: transform 0.15s ease-in-out;
}

.logo:hover {
  transform: rotate(10deg);
}

.hero-tagline {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-tagline-text {
  margin: 0;
  margin-bottom: 4px;
  font-size: 32px;
  color: var(--background-color);
}

.lucide-react-icon {
  color: white;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(100deg)
    brightness(102%) contrast(102%);
}

.dotted-arrow {
  width: auto;
  height: 125px;
}

.sick-ass-drop-shadow-solid {
  filter: drop-shadow(1px 1px 1px var(--accent-color));
  text-shadow: 1px 1px 1px var(--accent-color);
}

.wave-seperator {
  width: 100%;
  height: auto;
  padding: 0;
  display: block;
}

.flipy {
  transform: rotate(180deg);
}

button {
  font-family: "Bagel Fat One", cursive;
  letter-spacing: 1px;
  font-weight: bolder;
  font-style: oblique;
}

@keyframes gradientshift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.regbutton {
  background: linear-gradient(
    -67deg,
    var(--main-color) 0%,
    var(--backup-color) 50%,
    var(--main-color) 100%
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: background-position 0.3s ease-in-out;
  color: var(--background-color);
  border: none;
  padding: 10px 20px;
  margin: 10px 0;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50px;
  border: 4px solid white;
  &.blugreenreyellow {
    background: linear-gradient(
      -67deg,
      rgb(209, 100, 32) 0%,
      #ecb22e 55%
    ) !important;
  }
  &.disabled,
  &:disabled {
    background: gray !important;
    cursor: not-allowed;
  }
}

.regbutton:hover {
  background-position: 100% 50%;
}

.pulseeffect {
  animation: pulse 2s infinite;
}

.tyforrsvp {
  font-size: large;
  color: var(--background-color);
  margin: 0;
  filter: drop-shadow(1px 1px 0px var(--main-color));
  display: flex;
  align-items: start;
  text-decoration: var(--main-color) wavy underline;
  text-underline-position: under;
  text-underline-offset: 4px;
}

.faq-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  .faq-leftside,
  .faq-rightside {
    background-color: var(--background-color);
    width: 50%;
    padding: 100px 50px;
    padding-top: 0;
  }
  h1 {
    --n: 5;
    --dacolor: black;
    color: var(--dacolor);
    font-style: italic;
    text-underline-position: under;
    margin-bottom: 4px;
  }
}

.requirements {
  position: relative;
  text-align: center;
  .requirement-bg {
    width: 650px;
    height: 100%;
    transform: rotate(90deg);
  }
}

.requirements-list {
  font-family: "Lexend Deca", sans-serif;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.requirements-list li {
  font-size: large;
}

.faq-hr {
  border: none;
  border-top: 4px dotted var(--main-color);
  width: 75%;
  margin: 0;
  margin-bottom: 4px;
}

details {
  font-family: "Lexend Deca", sans-serif;
  font-size: large;
  padding: 15px;
  background-color: var(--main-color);
  border-bottom: 2px dashed black;
}

details summary {
  cursor: pointer;
  font-weight: bold;
}

details p a,
details ul li a {
  color: var(--background-color);
  text-decoration: underline var(--background-color);
}

details p a:hover,
details ul li a:hover {
  text-decoration-color: var(--background-color);
  text-decoration: wavy underline var(--background-color);
}

.guides-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  h2 {
    font-size: 2.5rem;
    font-style: italic;
    margin: 0;
  }
}

.playground-title {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 25px;
  text-align: center;
}

.playgrnd-btn {
  background-color: var(--main-color);
  color: white;
  border: 2px solid var(--accent-color);
  border-bottom: 0;
  cursor: pointer;
  font-family: "Lexend Deca", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0px !important;
  font-weight: bolder !important;
  font-style: normal !important;
}

.guides-hr {
  border: none;
  border-top: 4px dotted var(--main-color);
  width: 75%;
  margin: 0;
}

.guides-cards-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--main-color);
  padding: 20px;
  border-radius: 12px;
  border: 3px solid var(--accent-color);
  color: black;

  h3,
  p {
    margin: 0;
  }
  p {
    font-family: "Lexend Deca", sans-serif;
  }
}

.guides-next-arrow {
  width: auto;
  height: 50px;
  transform: rotate(-90deg);
}

.guide-card-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.hrseperator {
  border: none;
  border-top: 4px dotted var(--background-color);
  width: 75%;
  margin: 0;
}

.verticalseperatorthingy {
  border: none;
  border-left: 4px dotted black;
  height: 24px;
  margin: 0 10px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

footer {
  border-top: 4px dotted var(--main-color);
  z-index: 2;
  background-color: #007bff;
  color: var(--background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 0;
  padding: 25px;
  p {
    margin: 0;
  }
  a {
    color: var(--background-color);
    text-decoration: underline var(--background-color);
  }
  a:hover {
    text-decoration-color: var(--background-color);
    text-decoration: wavy underline var(--background-color);
  }
  .verticalseperatorthingy {
    border: none;
    border-left: 4px dotted var(--background-color);
    height: 24px;
  }
}

/* carousel */

.carousel-section {
  overflow-x: hidden;
  padding: 40px 0;
  background-color: var(--background-color);
}

.carousel-title {
  font-size: 2.5rem;
  font-style: italic;
  text-align: left;
  padding-left: 50px;
  margin: 0 0 24px;
  color: var(--text-color);
  padding-bottom: 8px;
}

.carousel-track-container {
  overflow-x: hidden;
  padding: 20px 0;
  width: 100%;
}

@keyframes carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.carousel-track {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: max-content;
  animation: carousel-scroll 18s linear infinite;
}

.carousel-card {
  width: clamp(160px, 40vw, 260px);
  flex-shrink: 0;
  box-sizing: border-box;
  padding: clamp(12px, 2vw, 24px);
  background: white;
  border-radius: 12px;
  border: 3px solid var(--main-color);
  overflow: visible;
}

.carousel-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.carousel-card-image {
  width: clamp(80px, 20vw, 140px);
  height: clamp(80px, 20vw, 140px);
  object-fit: contain;
}

.carousel-card-info {
  text-align: center;
}

.carousel-card-title {
  margin: 0 0 6px;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
}

.carousel-card-description {
  font-family: "Lexend Deca", sans-serif;
  margin: 0 0 6px;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
}

.carousel-card-tokens {
  font-family: "Lexend Deca", sans-serif;
  color: var(--backup-color);
  font-weight: bold;
  margin: 0;
  font-size: clamp(0.75rem, 1.5vw, 1rem);
}

/* gambling */
.gambling-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  background-color: var(--background-color);
}

.gambling-section h2 {
  font-size: 2.5rem;
  font-style: italic;
  margin: 0;
  text-align: center;
}

.gambling-hr {
  border: none;
  border-top: 4px dotted var(--main-color);
  width: 75%;
  margin: 0;
}

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

.gambling-cc {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.gambling-ai-gen {
  width: 500px;
  background-color: var(--main-color);
  border: 4px solid var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-self: stretch;
  justify-content: center;
  align-items: center;
  color: black;
  font-family: "Lexend Deca", sans-serif;
  padding: 20px;
  overflow-y: auto;
  font-size: large;
}

.slot-machine {
  background-color: var(--main-color);
  border: 4px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 0 var(--accent-color);
  display: inline-block;
  padding-bottom: 0;
}

.slot-machine-inner {
  background-color: #fff;
  border: 4px solid var(--accent-color);
  border-radius: 10px;
  height: 200px;
}

.spin-button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 18px;
  font-family: "Bagel Fat One", cursive;
  background-color: var(--backup-color);
  color: var(--background-color);
  border: var(--accent-color) 4px solid;
  cursor: pointer;
}

/* divider between slots cause */

.slot + .slot {
  border-left: 4px solid var(--accent-color);
}

.slot {
  font-size: 4rem;
  width: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* i hate responsive design why cant i just use react and tailwind waa waa waa */

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .logo {
    height: 25vw;
  }

  .hero-stuff-main-content {
    margin: 125px 0 0 0px;
    width: 100%;
    align-items: center;
  }

  /* footer */
  footer {
    flex-direction: column;
    gap: 10px;
    .verticalseperatorthingy {
      transform: rotate(90deg); /* revolutionary stuff */
      margin: 0 0;
    }
  }

  /* faq section */
  .faq-section {
    flex-direction: column;
    align-items: center;
    padding: 50px 0px;
    .faq-leftside,
    .faq-rightside {
      width: 75vw;
      padding: 0;
    }
  }

  /* carousel */
  .carousel-title {
    text-align: center;
    padding-left: 0;
  }

  /* guides section */
  .guides-next-arrow {
    transform: rotate(0deg);
  }

  .guides-cards-container {
    flex-direction: column;
  }

  /* gambling section */

  .gambling-cc {
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
  }

  .slot-machine {
    width: 75vw;
  }

  .gambling-ai-gen {
    width: 75vw;
    margin: 0 auto;
    height: 300px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding-top: 16px;
    overflow: auto;
  }
}
