<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  touch-action: manipulation;
  font-family: "Inter", sans-serif;
  text-decoration: none;
}

:root {
  --card-color--card-color: rgb(25, 25, 25);
  --background: white;
  --main-color: #131926;
  --titleColor: hsl(217, 28%, 9%);
  --secondary: #131926;
  --primary: #f0700c;
  --red: #ff3131;
  --normalMargin: 3rem;
}

body {
  text-decoration: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #ffffffc2;
  border-bottom: 1px solid #e9e9e9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
  position: relative; /* Add this */
}

.nav__links a,
.discord-button,
.overlay__content a {
  font-weight: 500;
  color: var(--titleColor);
  text-decoration: none; /* Remove text decoration */
}

.nav__links {
  list-style: none;
  display: flex;
  justify-content: center; /* Aligns items horizontally in the center */
  position: absolute; /* Position absolutely */
  top: 50%; /* Move to 50% from top */
  left: 50%; /* Move to 50% from left */
  transform: translate(-50%, -50%); /* Center precisely */
}

.nav__links li {
  padding: 0px 20px;
}

.nav__links li a {
  transition: color 0.3s ease 0s;
}

.nav__links li a:hover {
  color: var(--primary);
}

.discord-button {
  display: inline-flex;
  align-items: center;
  background-color: #5865f2;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.signup-button:last-child {
  margin-right: 0; /* Remove right margin for last button */
}

.discord-button:hover {
  transform: translateY(-2px); /* Move button slightly up on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}

.discord-button ion-icon {
  margin-right: 0.4rem; /* Add spacing between icon and text */
}

/* Mobile Nav */

.menu {
  display: none;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 20000;
  left: 0;
  top: 0;
  background-color: white;
  overflow-x: hidden;
  transition: width 0.5s ease 0s;
}

.overlay--active {
  width: 60%;
}

.overlay__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 0 15px 0;
}

.overlay a {
  padding: 15px;
  font-size: 1.1rem;
  color: var(--titleColor);
  display: block;
  transition: color 0.3s ease 0s;
}

.overlay a:hover,
.overlay a:focus {
  color: #0088a9;
}
.overlay .close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.7rem;
  color: #000;
}

@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .close {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

@media only screen and (max-width: 800px) {
  .nav__links,
  .discord-button {
    display: none;
  }
  .menu {
    display: initial;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-position: center;
  background-size: cover;
  padding: 0 20px;
  position: relative;
}

.hero-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hero-section.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-section .content {
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
}

.text-content {
  flex: 1;
  text-align: center;
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#svg-icon {
  width: 25rem;
  height: 25rem;
  fill: #fff;
  position: absolute;
  right: 20rem;
}

.hero-title {
  color: var(--titleColor);
  font-size: 4rem;
}

.hero-section .search-form {
  height: 48px;
  display: flex;
  max-width: 630px;
  margin-top: 30px;
}
.hero-section .search-form input {
  height: 100%;
  width: 100%;
  padding: 0 15px;
  font-size: 1rem;
  border-radius: 4px 0 0 4px;
  border: 1px solid var(--titleColor);
}

.hero-section .search-form button {
  height: 100%;
  width: 60px;
  border: none;
  outline: none;
  cursor: pointer;
  background: #1dbf73;
  color: var(--titleColor);
  border-radius: 0 4px 4px 0;
  transition: background 0.2s ease;
}
.hero-section .search-form button:hover {
  background: #19a463;
}
.hero-section .popular-tags {
  display: flex;
  color: var(--titleColor);
  gap: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 25px;
}

.hero-section .popular-tags .tags {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}

/* Style for all unselected tags */
.hero-section .tags li a {
  text-decoration: none;
  color: var(--titleColor);
  border: 1px solid var(--titleColor);
  padding: 4px 12px;
  border-radius: 50px;
  transition: 0.2s ease;
  background: white; /* Unselected tags are white by default */
}

/* Hover effect for all unselected tags */
.hero-section .tags li a:hover {
  color: #000;
  background: var(--primary);
}

/* Style for selected tags */
.hero-section .tags li a.selected {
  background: var(--primary); /* Selected tags are green */
  color: var(--titleColor); /* Text color for selected tags */
  border: 1px solid var(--titleColor);
}

/* Add styles for the button container */
.button-container {
  display: flex;
  gap: 10px; /* Adjust the gap between buttons as needed */
  margin-top: 10px;
  width: 100%;
}

/* Add any additional styles as needed */

@media screen and (max-width: 900px) {
  header.show-mobile-menu::before {
    content: "";
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    backdrop-filter: blur(5px);
  }
  .navbar .menu-links {
    height: 100vh;
    max-width: 300px;
    width: 100%;
    background: var(--titleColor);
    position: fixed;
    left: -300px;
    top: 0;
    display: block;
    padding: 75px 40px 0;
    transition: left 0.2s ease;
  }
  header.show-mobile-menu .navbar .menu-links {
    left: 0;
    background: white;
  }
  .navbar .menu-links li {
    margin-bottom: 30px;
  }
  .navbar .menu-links li a {
    color: var(--titleColor);
    font-size: 1.1rem;
  }
  .navbar .menu-links .join-btn a {
    padding: 0;
  }
  .navbar .menu-links .join-btn a:hover {
    color: var(--primary);
    background: none;
  }
  .navbar :is(#close-menu-btn, #hamburger-btn) {
    display: block;
  }
  .hero-section {
    background: none;
  }
  .hero-section .content {
    margin: 0 auto 4rem;
  }
  .hero-section .content :is(h1, .search-form) {
    max-width: 100%;
  }
  .hero-section .search-form {
    display: block;
    margin-top: 20px;
  }
  .hero-section .search-form input {
    border-radius: 4px;
  }

  .hero-section .search-form button {
    margin-top: 10px;
    border-radius: 4px;
    width: 100%;
  }
  .hero-section .popular-tags {
    display: none;
  }
}
/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}

#slider-container {
  top: 5.9rem;
  width: 100%;
  height: 50px;
  position: relative;
  background-color: #f5f5f5;
  padding: 3px;
  overflow: hidden;
}

#text-container {
  width: 100%;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slider p {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0 0 2px 0;
}

.slider a {
  font-size: 12px;
  padding: 1px;
  margin: 0;
  color: black;
  text-decoration: underline;
}

.new-badge {
  background-color: var(--primary); /* Background color for the badge */
  color: #fff; /* Text color for the badge */
  font-size: 12px; /* Font size for the text */
  padding: 5px 10px; /* Padding around the text */
  border-radius: 20px; /* Rounded corners for the badge */
  position: absolute; /* Position the badge relative to its container */
  top: 10px; /* Adjust the top position as needed */
  left: 10px; /* Adjust the left position as needed */
}

@keyframes slide-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.hero-smalldescription {
  margin: 1rem 0 1rem 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}

a {
  font-weight: bold;
  color: #f26f08;
}

.hero-title &gt; strong {
  display: block;
}

.hero-text {
  color: var(--main-color);
  font-size: var(--fs-6);
  line-height: 1.8;
  max-width: 50ch;
  margin-bottom: 25px;
}

.container {
  display: flex;
  justify-content: center; /* Center the buttons horizontally */
  width: 100%;
  margin-top: 2rem;
  gap: 1rem
}

.container a {
  flex: 1; /* Make the buttons take up equal space */
  text-align: center; /* Center text inside the buttons */
}

.register-Button, .discord-ButtonIndex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 1.5rem; /* Adjust font size as needed */
}

.register-Button {
  background-color: #ff6347; /* Change to your preferred color */
}

.discord-ButtonIndex {
  background-color: #5865f2;
}

.blogImg {
  max-width: 100%; /* Ensure the image scales responsively */
  height: auto;
}

/* Button Styles */
.signup-button{
  color: white;
  font-size: 14px;
  letter-spacing: 1.3px;
  font-weight: 700;
  background: var(--primary);
  border-radius: 8px;
  box-shadow: rgba(255, 255, 255, 0.576) 0px 0.482901px 0.676062px -1.5px inset,
    rgba(255, 255, 255, 0.4) 0px 4px 5.6px -3px inset,
    rgba(79, 79, 79, 0.043) 0px 0.602187px 0.843062px -0.416667px,
    rgba(79, 79, 79, 0.055) 0px 2.28853px 3.20395px -0.833333px,
    rgba(79, 79, 79, 0.114) 0px 10px 14px -1.25px;
  opacity: 0; /* Initially hide the button */
  cursor: pointer;
  padding: 12px 24px;
  position: relative; /* Ensure proper positioning for pseudo-element */
  overflow: hidden; /* Hide overflow for pseudo-element */
  animation: breathe 1.5s ease forwards; /* Apply the breathing animation */
  text-align: center;
}

.signup-button::before, .discord-ButtonIndex::before {
  content: ""; /* Create pseudo-element */
  position: absolute; /* Position it absolutely */
  top: 50%; /* Align to the vertical center */
  left: 50%; /* Align to the horizontal center */
  width: 300%; /* Make it wider than the button */
  height: 300%; /* Make it taller than the button */
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  border-radius: 50%; /* Circular shape */
  transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease; /* Smooth transitions */
  transform: translate(-50%, -50%) scale(0); /* Initially hidden and scaled down */
}

.signup-button:hover::before, .discord-ButtonIndex:hover::before, .register-Button::before {
  width: 0; /* Expand width on hover */
  height: 0; /* Expand height on hover */
}

.signup-button:hover, .discord-ButtonIndex:hover, .register-Button:hover {
  transform: translateY(-4px); /* Move button slightly up on hover */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
}


@keyframes breathe {
  0% {
    opacity: 0; /* Start with opacity 0 */
    transform: scale(0);
  }
  10% {
    opacity: 1; /* Fade in */
    transform: scale(1.05);
  }
  20%,
  100% {
    transform: scale(1); /* Breathe effect */
  }
  100% {
    opacity: 1; /* Ensure opacity remains 1 at the end */
  }
}

/* Delay for sequential animation */
.signup-button:nth-child(1) {
  animation-delay: 0.12s;
}

.signup-button:nth-child(2) {
  animation-delay: 0.3s;
}

.signup-button:nth-child(3) {
  animation-delay: 0.5s;
}
/* Add more delay for additional buttons if needed */

/* Footer */

footer {
  margin-top: auto;
}

.footer-bottom {
  background: var(--titleColor);
  color: white;
  padding: 20px 0;
  text-align: center;
}

.copyright {
  margin: 0 30% 0 30%;
  font-size: 12px;
  text-align: center;
}

.copyright-link {
  display: inline-block;
  color: var(--primary);
}

.loader {
  border: 8px solid #f3f3f3; /* Light gray */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the product cards horizontally */
  align-items: center; /* Center the items vertically */
  box-sizing: border-box;
  padding: 0 30px;
  max-width: 1180px;
  margin: 2rem auto 5rem auto;
  text-align: center;
  width: 100%; /* Take up the full width */
}
h1 {
  margin-bottom: 20px;
}


/* CSS for FAQ styling with block layout, rounded corners, and left alignment */

.FAQcontainer {
  color: black;
  border-radius: 20px;
  margin: 20px 0;
  text-align: left;
  width: 100%;
}

.FAQ {
  padding: 50px 0;
  text-align: left; /* Aligning all text to the left */
  width: 100%;
}

.question {
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 8px; /* Rounded corners */
  overflow: hidden;
  background-color: #f0f0f0; /* Background color for question */
  box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
}

.question span {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  display: block;
  padding: 15px 20px; /* Add padding for better appearance */
}

.answer {
  overflow: hidden;
  transition: max-height 0.3s ease; /* Added animation */
  padding: 0 20px 20px; /* Add padding */
  max-height: 0;
  opacity: 0; /* Hide content visually */
  position: absolute; /* Move content off-screen */
  left: 0;
  width: 100%;
}

.question.active .answer {
  max-height: 500px; /* Adjust to fit your content */
  margin-top: 10px;
  opacity: 1; /* Show content */
  position: static; /* Reset position */
}

.answer p {
  margin-bottom: 10px;
}

.answer a {
  color: blue;
}



.creator-container {
  align-content: center;
  align-items: center;
  background: var(--background);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 40px 40px;
  position: relative;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin: 1.5rem auto 40px;
}

.creator-container h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: bold;
}

.creator-container p {
  color: #333;
  font-size: 16px;
  margin-bottom: 24px;
}

.highlight {
  color: var(--primary);
}

.creator-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 20px 0;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

.creator-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transition: all 0.3s ease;
  border-radius: 4px;
}

.creator-btn:hover::after {
  left: 100%;
}

.creatorSection .content {
  align-content: center;
  align-items: center;
  background-color: #000000;
  border-radius: 12px;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  height: min-content;
  justify-content: center;
  overflow: visible;
  padding: 0;
  position: relative;
  scroll-margin-top: 80px;
  width: 100%;
}

.creatorSection .text-content {
  flex: 1;
  align-items: center;
  display: flex;
  flex: 1 0 0px;
  flex-direction: column;
  flex-wrap: nowrap;
  height: min-content;
  justify-content: center;
  max-width: 1240px;
  overflow: visible;
  padding: 1.5rem 20px 1.5rem;
  position: relative;
  scroll-margin-top: 50px;
  width: 1px;
}

.CreatorContainer {
  display: flex;
  justify-content: center;
  width: 70rem; /* 3 times the width of a single card */
  height: auto;
  transition: transform 0.5s ease-in-out; /* Smooth transition for sliding effect */
  gap: 1rem;
}

.creatorCard {
  flex: 1;
  position: relative;
  height: auto; /* or adjust to your preferred height */
  border-radius: 25px;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: transform 0.3s ease-in-out;
}

.card-body {
  height: 8rem;
  background: #fff;
  border-radius: 0 0 25px 25px;
}

.product-title {
  color: var(--titleColor);
  padding: 20px 20px 5px 20px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-caption {
  color: var(--titleColor);
  display: block;
  padding: 0 20px;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.creatorCard:hover {
  transform: scale(1.02);
}

.creatorCard.left {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  margin-right: 15px; /* Adjust the spacing between cards */
}

.creatorCard.right {
  margin-left: 15px; /* Adjust the spacing between cards */
}

.CreatorCard-head {
  position: relative;
  height: 23rem;
  border-radius: 25px 25px 0 0;
}

.card-logo {
  width: 55px;
  margin: 20px;
}

.productPreviewContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 0 30px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.productPreviewList {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 3rem;
}

.product-card {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
  padding: 1rem;
  background: #eaeaea;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-tumb img {
  height: 100%;
  width: 12rem;
}

.product-details {
  margin-top: 0.8rem;
  text-align: left;
}

.product-details h2 a {
  font-weight: 500;
  display: block;
  text-transform: uppercase;
  color: #363636;
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
}

.product-details h2 a:hover {
  color: #fbb72c;
}

.product-details p {
  font-size: 15px;
  line-height: 22px;
  color: var(--main-color);
}

.product-bottom-details {
  overflow: hidden;
  /* border-top: 1px solid #eee; */
  /* padding-top: 20px; */
}

.product-bottom-details div {
  text-align: left;
  float: left;
  width: 100%;
}

.product-price {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.product-price small {
  text-decoration: line-through;
  display: inline-block;
  color: #000000;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.product-links {
  z-index: 999;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.product-links a {
  display: inline-block;
  margin-left: 5px;
  color: #646365;
  transition: 0.3s;
  font-size: 1.5rem;
}

.product-links a:hover {
  transform: translateY(-4px); /* Move button slightly up on hover */
}

.social-media-links {
  position: absolute;
  top: 68%; /* Adjust to vertically center the icons */
  right: 5%; /* Adjust to horizontally center the icons */
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  z-index: 1;
  background: var(--titleColor);
  font-size: 2rem;
  border-radius: 1rem;
  border: 1px solid;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-media-links ul {
  gap: 1rem;

  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-media-links a {
  text-decoration: none;
  color: inherit;
}

/* CSS for the latest articles section */
.latestArticle {
  padding: 20px 0;
  background-color: #f9f9f9;
}
/* CSS for the article grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  height: auto;
  grid-gap: 20px;
  margin-top: var(--normalMargin);
}

/* CSS for individual article card */
.article-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  padding: 22px 22px 22px 22px;
  transition: all 200ms ease-in-out;

  border-style: solid;
  border-width: 01px 01px 01px 01px;
  border-color: #dfdfdf;
  background-color: #ffffff;
}

/* CSS for article image */
.article-image {
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
}

/* CSS for article title */
.article-title {
  font-size: 20px;
  margin: 10px 0;
}

/* CSS for article link */
.article-card a {
  text-decoration: none;
  color: inherit;
}

/* Hover effect for article card */
.article-card:hover {
  transform: translateY(-3px);
  transition: transform 0.3s ease-in-out;
}

.mobileCard {
  display: none;
}

.question.active + .answercont {
}

@media screen and (max-width: 790px) {
  html {
    font-size: 14px;
  }
  .wrapper {
    margin: 3rem 0rem 3rem 0rem;
    width: 100%;
    padding: 0 20px;
  }
  .wrapper .hero-title {
    font-size: 3rem;
  }
}

/* responsive */
@media screen and (max-width: 1160px) {
  .nav {
    padding: 15px 100px;
  }
  .nav .search-box {
    right: 150px;
  }
}
@media screen and (max-width: 950px) {
  .mobileCard {
    display: block;
  }

  .creatorSection .CreatorContainer {
    flex-direction: column;
    align-items: center; /* Center items on small screens */
    gap: 2rem;
  }

  .article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    height: auto;
    grid-gap: 20px;
    margin: 3rem 0 0 0;
  }

  .productPreviewList {
    margin-top: 3rem;
    display: grid;
    gap: 15px 15px;
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup {
    width: 75%;
  }
  .creatorCard {
    width: 100%; /* Take up the full width on small screens */
  }

  .creatorCard.left,
  .creatorCard.right {
    margin: 0; /* Remove margin on small screens */
  }

  .CreatorContainer {
    width: 100%; /* Take up the full width on small screens */
  }

  .creator-container {
    padding: 2rem;
  }

  .creator-container p {
    margin: 0;
  }

  header {
    margin-bottom: 0;
  }

  .copyright {
    margin: 0 5% 0 5%;
  }

  .cashbackSection button {
    height: 3.5rem;
  }

  .text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .text-content img {
    order: -1; /* Move the image to the top */
  }

  .cashbackSection .hero-background {
    grid-template-columns: auto;
    gap: 5rem;
  }

  .cashbackSection .hero-background img {
    position: absolute; /* Make the image relatively positioned within the step div */
    top: 10rem; /* Adjust the top value as needed to control the image position */
  }

  .buttoncontainer {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .email-form input {
    width: 100%; /* Make the input full width */
  }

  .signup-button {
    width: 100%;
  }

  .hero-description {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .hero-smalldescription {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
  }

  .product-list {
    display: grid;
    gap: 15px 15px;
    grid-template-columns: repeat(1, 1fr); /* Display one product per row */
  }

  .product-tumb {
    height: 11rem;
    width: 10.5rem;
    border-radius: 0.1rem;
  }

  .product-tumb img {
    position: absolute;
    top: 0.1rem;
    max-width: 100%;
  }

  .stars {
    color: gold;
    position: absolute;
    top: 9.8rem;
    font-size: 0.8rem;
  }

  .product-links {
    top: 0.5rem;
    right: 0.7rem;
  }

  .product-links a {
    color: #e1e1e1;
    font-size: 1.5rem;
  }

  .product-price {
    font-size: 0.9rem;
  }

  .product-price small {
    font-size: 0.9rem;
    margin-left: 0.5rem;
  }

  .product-details p {
    margin-bottom: 0.5rem;
  }
  .register-Button, .discord-ButtonIndex
  {
    font-size: 1.2rem;
  }
}
</pre></body></html>