/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
 https://postimg.cc/dD9mZhmp - OLD HERO IMAGE
*/

/* .content h1{
  opacity: 1;
  filter: blur(0px);
  transform: none;
  font-weight: 600;
  font-size: 5rem;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(to bottom left, #fff , #5d8eff);
  --tw-gradient-stops: #fff, #5d8eff;f
} */

.components {
  overflow: hidden;
}

.text-accent-500 {
  color: #185837 !important;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}


.hero-section {
  background: url('https://i.postimg.cc/wjTP1v1K/Hero.jpg') no-repeat center;
  background-size: cover;
  height: 100vh;
  width: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-div {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-section h1 {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
  animation: slideDown 1s ease-out forwards;
  font-weight: 600;
  font-size: 5rem;
  line-height: 6rem;
  text-align: center;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(to bottom left, #fff, #2e6c52);
  --tw-gradient-stops: #fff, #5d8eff;
}

@keyframes slideDown {
  to {
    filter: blur(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    filter: blur(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-subtitle {
  color: #A1A1AA;
  font-size: 18px;
  text-align: center;
  margin-top: 10px;
  filter: blur(10px);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1s ease-out forwards 0.3s;
}

.navbar {
  backdrop-filter: blur(20px);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
  animation: slideDown 1s ease-out forwards;
}

header {
  position: fixed !important;
  width: 100%;
}

.container {
  position: relative;
}

.btns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(50px);
  animation: slideUp 1s ease-out forwards 0.5s;
}

.prod-btn {
  color: hsl(0 0% 98%);
  background-color: #184b36;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition-duration: 250ms;
  text-decoration: none;
}

.dashboard {
  color: hsl(0 0% 98%);
  background-color: hsl(240, 3.7%, 12%);
  padding: 5px 10px;
  border: 1px solid #27272A;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition-duration: 250ms;
  text-decoration: none;

}

.prod-btn:hover {
  background-color: #184b36d1;
  text-decoration: none;

}

.dashboard:hover {
  background-color: hsl(240, 3.7%, 15.9%);
}


.cart-btn {
  background-color: hsl(240, 3.7%, 15.9%);
  color: white;
  padding: 12px;
  border-radius: 5px;

}

.navbar-ul {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.prod-btn svg {
  width: 20px;
  height: 20px;
}

.nav-item {
  font-size: 12px !important;
  font-weight: 300 !important;
}

.trust-badge-container {
  z-index: 1;
  /* z-1 */
  display: flex;
  /* flex */
  min-height: 8rem;
  /* min-h-32 */
  align-items: center;
  /* items-center */
  justify-content: center;
  /* justify-center */
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
  animation: slideDown 1s ease-out forwards 0.5s;
}

.trust-badge {
  border-radius: 9999px;
  /* rounded-full */
  border: 1px solid rgba(34, 197, 94, 0.15);
  /* border border-green-500/15 */
  background-color: rgba(34, 197, 94, 0.1);
  /* bg-green-500/10 */
  font-size: 0.875rem;
  /* text-sm */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  /* shadow-lg */
  backdrop-filter: blur(12px);
  /* backdrop-blur-lg */
  transition: all 0.3s ease-in;
  /* transition-all ease-in */
  cursor: pointer;
  /* hover:cursor-pointer */
}

.trust-badge:hover {
  /* Add hover effects if needed */
}

.trust-badge-text {
  --shiny-width: 100px;
  /* style="--shiny-width: 100px" */
  margin: 0 auto;
  /* mx-auto */
  max-width: 28rem;
  /* max-w-md */
  color: #16a249b3;
  /* text-green-600/70 */
  animation: shiny-text 1s cubic-bezier(0.6, 0.6, 0, 1) infinite;
  /* animate-shiny-text */
  background-clip: text;
  /* bg-clip-text */
  background-repeat: no-repeat;
  /* bg-no-repeat */
  background-position: 0 0;
  /* [background-position:0_0] */
  background-size: var(--shiny-width) 100%;
  /* [background-size:var(--shiny-width)_100%] */
  background-image: linear-gradient(to right, transparent, var(--brand-color), transparent);
  /* bg-gradient-to-r from-transparent via-brand to-transparent */
  filter: contrast(200%);
  /* contrast-200 */
  display: inline-flex;
  /* inline-flex */
  align-items: center;
  /* items-center */
  justify-content: center;
  /* justify-center */
  padding: 0.25rem 1rem;
  /* px-4 py-1 */
  transition: color 0.3s ease-out;
  /* transition ease-out */
}

.trust-badge-text:hover {
  color: rgba(22, 163, 74, 1);
  /* hover:text-green-600 */
  transition-duration: 0.3s;
  /* hover:duration-300 */
}

.trust-badge-content {
  display: flex;
  /* flex */
  flex-direction: row;
  /* flex-row */
  gap: 0.25rem;
  /* gap-1 */
}

.trust-badge-icon {
  width: 18px;
  /* width="18" */
  height: 18px;
  /* height="18" */
  fill: currentColor;
  /* fill="currentColor" */
}

.arrow-icon {
  width: 12px;
  /* size-3 */
  height: 12px;
  /* size-3 */
  transition: transform 0.3s ease-in-out;
  /* transition-transform duration-300 ease-in-out */
}

.trust-badge:hover .arrow-icon {
  transform: translateX(0.125rem);
  /* group-hover:translate-x-0.5 */
}

.scroll-indicator {
  position: absolute;
  /* absolute */
  bottom: 1rem;
  /* bottom-4 */
  z-index: 20;
  /* z-20 */
  display: flex;
  /* flex */
  flex-direction: column;
  /* flex-col */
  align-items: center;
  /* items-center */
  gap: 0.25rem;
  /* gap-1 */
  color: var(--muted-foreground);
  /* text-muted-foreground */
  opacity: 0;
  /* Start hidden */
  filter: blur(10px);
  /* Initial blur */
  animation: slideUp 1s ease-out forwards 0.7s, bounce 1s infinite 1s;
  /* Slide up first, then bounce after delay */
}

.mouse-icon {
  width: 18px;
  /* width="18" */
  height: 18px;
  /* height="18" */
  stroke: #fff;
  /* stroke="#fff" */
  stroke-width: 2;
  /* stroke-width="2" */
  stroke-linecap: round;
  /* stroke-linecap="round" */
  stroke-linejoin: round;
  /* stroke-linejoin="round" */
}

.chevron-down-icon {
  width: 14px;
  /* width="14" */
  height: 14px;
  /* height="14" */
  stroke: #fff;
  /* stroke="#fff" */
  stroke-width: 2;
  /* stroke-width="2" */
  stroke-linecap: round;
  /* stroke-linecap="round" */
  stroke-linejoin: round;
  /* stroke-linejoin="round" */
}

.card-customer {
  z-index: 50;
  position: relative;
  background-color: #0f0f0f;
  border: 1px solid #27272A;
    border-radius: 5px;
  transition: all .3s ease;
  /* background: var(--bs-body-bg); */
  overflow: hidden;
  padding: 8px;
}

.card {
  z-index: 50;
  position: relative;
  background-color: #0f0f0f;
  border: 1px solid #27272A;
    border-radius: 1.5rem;
  transition: all .3s ease;
  /* background: var(--bs-body-bg); */
  overflow: hidden;
  padding: 8px;
}

.card-img-top {
  overflow: hidden;
  border-radius: 1.5rem;
}

.card-img-top img {
  transition-duration: 250ms;
}

.card:hover .card-img-top img {
  scale: 1.05;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.section-title h2 {
  color: white;
  text-align: center;
  width: 100%;
}

.prod-container {
  position: relative;
  /* relative */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}



.badge {
  white-space: nowrap;
  /* whitespace-nowrap */
  border-color: transparent;
  /* border-transparent */
  display: inline-flex;
  /* inline-flex */
  align-items: center;
  /* items-center */
  border-radius: 0.375rem;
  /* rounded-md */
  border-width: 1px;
  /* border */
  padding: 0.375rem 0.625rem;
  /* px-1.5 py-0.5 */
  font-size: 0.75rem;
  /* text-xs */
  transition: background-color 200ms, color 200ms;
  /* transition-colors duration-200 */
  background-color: rgba(46, 108, 82, 0.05);
  /* bg-brand bg-opacity-5 */
  color: #2e6c52;
  /* text-brand */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  /* shadow */
  width: fit-content;
  /* w-fit */
  gap: 0.375rem;
  /* gap-1.5 */
}

.badge:hover {
  background-color: rgba(46, 108, 82, 0.1);
  /* hover:bg-opacity-10 */
}

.smile-plus-icon {
  width: 14px;
  /* width="14" */
  height: 14px;
  /* height="14" */
  stroke: #2e6c52;
  /* stroke="currentColor" */
  stroke-width: 2;
  /* stroke-width="2" */
  stroke-linecap: round;
  /* stroke-linecap="round" */
  stroke-linejoin: round;
  /* stroke-linejoin="round" */
}

.prod-p {
  margin-top: 3px;
  font-size: 12px !important;
  font-weight: 400;
  width: 100%;
  text-align: center;
  padding-left: 0 !important;
}


/* Main Container */
.main-container {
  position: relative;
  /* height: 500px; */
  max-width:1500px;
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #090A0A;
}

/* Marquee Container */
.marquee-container {
  display: flex;
  overflow: hidden;
  padding: 0.5rem;
  gap: 1rem;
  flex-direction: row;
  animation-duration: 30s;
}

/* Marquee Row */
.marquee-row {
  display: flex;
  flex-shrink: 0;
  justify-content: space-around;
  gap: 1rem;
  animation: marquee 30s linear infinite;
  flex-direction: row;
}

.marquee-container:hover .marquee-row {
  animation-play-state: paused;
}

/* Game Card */
.game-card {
  display: block;
  text-decoration: none;
}

/* Game Figure */
.game-figure {
  position: relative;
  height: 24rem;
  width: 18rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  border-radius: 1rem;
  transition: transform 0.2s ease;
}

figure {
  margin: 0 !important;

}

.game-figure:hover {
  transform: scale(1.02);
}

/* Game Image */
.game-image {
  height: 100%;
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

/* Gradient Overlay */
.gradient-overlay {
  position: absolute;
  bottom: 0;
  height: 66.6667%;
  width: 100%;
  border-radius: 0.75rem;
  background: linear-gradient(to top, #090A0A, transparent);
}

/* Game Details */
.game-details {
  position: absolute;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

/* Game Logo */
.game-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Game Caption */
.game-caption {
  text-align: center;
  font-family: monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #89908d;
}

.game-logo-container {
  width: 130px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rust-logo{
  filter: brightness(0) invert(100%);
}

.fivem{
  width: 50px;
}

/* Left and Right Gradient Overlays */
.left-gradient-overlay,
.right-gradient-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.left-gradient-overlay {
  left: 0;
  background: linear-gradient(to right, #090A0A, transparent);
}

.right-gradient-overlay {
  right: 0;
  background: linear-gradient(to left, #090A0A, transparent);
}

/* Marquee Animation  */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


@media screen and (max-width: 768px) {
  h1 {
    font-size: 3rem !important;
    line-height: 3rem !important;
  }

  h2 {
    font-size: 25px !important;
    font-weight: 600 !important;
  }

  .center-div {
    width: 90%;
    height: 100%;
  }

  .shining {
    margin-bottom: 40px;
  }

  .trust-badge-content {
    font-size: 12px;
  }

  footer.footer {
    margin-top: 50px;
  }

  .media-text h5 {
    font-size: 2.5rem !important;
  }

  .media-cards {
    padding: 0 10px !important;
  }

}


.discord-container {
  position: relative;
  width: 70%;
  margin: 40px auto;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #050505;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.5s;
}

.discord-container:hover {
  border-color: rgba(46, 108, 82, 0.4);
}

/* Background Overlay */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  transform: scale(1.1) translateY(50px);
  background-image: url("https://framerusercontent.com/images/6DYAUdNWLSnujliG7QFJk2YrY.png");
  background-size: cover;
  background-position: center center;
  transition: transform 0.2s ease-out;
  opacity: 0.2;
  filter: contrast(1.2) brightness(0.8);
}

.background-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #050505, #000000 40%, transparent);
}

/* Content Section */
.content-section {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  padding: 3rem;
}

/* Discord Badge */
.discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(17 229 131 / 10%);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  width: fit-content;
  margin-bottom: 2rem;
  border: 1px solid #2E6C52;
}

/* Discord Icon */
.discord-icon {
  width: 1rem;
  height: 1rem;
  /* color: rgba(96, 165, 250); */
  color: #2E6C52;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Badge Text */
.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
}

/* Heading */
.heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.highlight {
  /* color: rgba(59, 130, 246); */
  color: #2E6C52;
}

/* Description */
.description {
  font-size: 1rem;
  color: rgba(156, 163, 175);
  margin-bottom: 2rem;
}

/* Join Button */
.join-button {
  display: inline-flex;
  align-items: center;
  background-color: rgba(46, 108, 82, 0.2);
  color: #2E6C52;
  padding: 0.625rem 1.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s;
  border: 1px solid rgba(46, 108, 82, 0.3);
  text-decoration: none;
}

.join-button:hover {
  background-color: rgba(46, 108, 82, 0.3);
}

@media screen and (max-width:768px) {
  .discord-container {
    width: 100%;
    margin: 0 auto;
    height: auto;
  }

  .media-container {
    margin: 60px 0px !important;
    padding: 1rem 1rem !important;
  }

  .media-page {
    padding: 10px !important;
  }

  .status-page {
    padding: 10px !important;
  }

}



/* Container */
.media-container {
  position: relative;
  margin: 40px 20px;
  padding: 3rem 1.5rem;

}

/* Two-column layout */
.media-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Image */
.media-image img {
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 50;
  border-radius: 10px;
}

/* Text Content */
.media-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.media-text h5 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
}

.media-text h6 {
  text-align: left;
  color: #A1A1AA;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.media-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease-in-out;
}

.media-button:hover {
  background-color: #1e40af;
}

.description-box {
  background-color: #161616;
  padding: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  border-radius: 5px;
}

/* Responsive: Two columns on larger screens */
@media (min-width: 768px) {
  .media-content {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }

  .media-text {
    text-align: left;
    max-width: 50%;

    align-items: start;

  }

  .media-image svg {
    max-width: 300px;

  }

}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0 !important;
}


*,
:before,
:after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
  --tw-contain-size: ;
  --tw-contain-layout: ;
  --tw-contain-paint: ;
  --tw-contain-style: ;
}

*,
:before,
:after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

:before,
:after {
  --tw-content: "";
}

html,
:host {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

:disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}

img,
video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

:root {
  background-color: #09090b;
}

body {
  min-height: 100vh;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.status-box {
  position: relative;
  display: flex;
  width: 360px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
  border-width: 1px;
  border-color: #ffffff0d;
  background-color: #0009;
  padding: 2rem;
  --tw-backdrop-blur: blur(6px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}

.status-box:hover {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-color: #f973164d;
}

.status-box {
  --tw-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
  --tw-shadow-colored: 0 8px 16px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.status-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  --tw-gradient-from: rgb(255 255 0 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: rgb(255 255 0 / 0.05) var(--tw-gradient-to-position);
  padding: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 0 / var(--tw-text-opacity));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}

.group:hover .status-icon-wrapper {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  --tw-gradient-from: rgb(255 255 0 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: rgb(255 255 0 / 0.1) var(--tw-gradient-to-position);
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity));
}

.status-icon {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}

.group:hover .status-icon {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.status-icon {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.status-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: #ffffffe6;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}

.group:hover .status-title {
  --tw-text-opacity: 1;
  color: rgb(255 255 0 / var(--tw-text-opacity));
}

.status-description {
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity));
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
}

.group:hover .status-description {
  --tw-text-opacity: 1;
  color: rgb(212 212 216 / var(--tw-text-opacity));
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.-inset-4 {
  top: -1rem;
  right: -1rem;
  bottom: -1rem;
  left: -1rem;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.inset-y-1 {
  top: 0.25rem;
  bottom: 0.25rem;
}

.-left-2 {
  left: -0.5rem;
}

.-right-2 {
  right: -0.5rem;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.left-1\/4 {
  left: 25%;
}

.left-2 {
  left: 0.5rem;
}

.left-4 {
  left: 1rem;
}

.right-0 {
  right: 0;
}

.right-1\/4 {
  right: 25%;
}

.right-2 {
  right: 0.5rem;
}

.right-4 {
  right: 1rem;
}

.top-0 {
  top: 0;
}

.top-1\/2 {
  top: 50%;
}

.top-20 {
  top: 5rem;
}

.top-4 {
  top: 1rem;
}

.top-40 {
  top: 10rem;
}

.top-60 {
  top: 15rem;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.col-span-full {
  grid-column: 1 / -1;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.h-0 {
  height: 0px;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-14 {
  height: 3.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-24 {
  height: 6rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-48 {
  height: 12rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-64 {
  height: 16rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-96 {
  height: 24rem;
}

.h-\[30\%\] {
  height: 30%;
}

.h-\[30rem\] {
  height: 30rem;
}

.h-\[40rem\] {
  height: 40rem;
}

.h-\[45rem\] {
  height: 45rem;
}

.h-\[480px\] {
  height: 480px;
}

.h-\[52px\] {
  height: 52px;
}

.h-\[70\%\] {
  height: 70%;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.max-h-0 {
  max-height: 0px;
}

.max-h-40 {
  max-height: 10rem;
}

.min-h-screen {
  min-height: 100vh;
}

.w-0 {
  width: 0px;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-48 {
  width: 12rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-64 {
  width: 16rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-\[30\%\] {
  width: 30%;
}

.w-\[300px\] {
  width: 300px;
}

.w-\[30rem\] {
  width: 30rem;
}

.w-\[360px\] {
  width: 360px;
}

.w-\[45rem\] {
  width: 45rem;
}

.w-\[52px\] {
  width: 52px;
}

.w-\[70\%\] {
  width: 70%;
}

.w-\[85\%\] {
  width: 85%;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.min-w-0 {
  min-width: 0px;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-\[95\%\] {
  max-width: 95%;
}

.max-w-full {
  max-width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-none {
  max-width: none;
}

.max-w-xs {
  max-width: 20rem;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.origin-top-right {
  transform-origin: top right;
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-4 {
  --tw-translate-y: -1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-90 {
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-100 {
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-95 {
  --tw-scale-x: 0.95;
  --tw-scale-y: 0.95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.cursor-pointer {
  cursor: pointer;
}

.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

.scroll-mt-32 {
  scroll-margin-top: 8rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-1\.5 {
  gap: 0.375rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-x-4 {
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}

.gap-y-2 {
  row-gap: 0.5rem;
}

.space-x-2> :not([hidden])~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-4> :not([hidden])~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-20> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(5rem * var(--tw-space-y-reverse));
}

.space-y-3> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-y-8> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-x-auto {
  overflow-x: auto;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre-wrap {
  white-space: pre-wrap;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-b-\[15px\] {
  border-bottom-width: 15px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-l-\[25px\] {
  border-left-width: 25px;
}

.border-r {
  border-right-width: 1px;
}

.border-r-2 {
  border-right-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-t-\[15px\] {
  border-top-width: 15px;
}

.border-amber-500\/20 {
  border-color: #f59e0b33;
}

.border-blue-500\/20 {
  border-color: #3b82f633;
}

.border-emerald-500\/20 {
  border-color: #10b98133;
}

.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity));
}

.border-gray-800 {
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
}

.border-orange-500 {
  --tw-border-opacity: 1;
  border-color: rgb(255, 255, 0 / var(--tw-border-opacity));
}

.border-orange-500\/20 {
  border-color: #f6f62f25;
}

.border-orange-500\/30 {
  border-color: #f8f81443;
}

.border-orange-500\/50 {
  border-color: #ffff0078;
}

.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}

.border-red-500\/20 {
  border-color: #ef444433;
}

.border-transparent {
  border-color: transparent;
}

.border-white\/10 {
  border-color: #ffffff1a;
}

.border-white\/20 {
  border-color: #fff3;
}

.border-white\/5 {
  border-color: #ffffff0d;
}

.border-zinc-500\/20 {
  border-color: #71717a33;
}

.border-b-transparent {
  border-bottom-color: transparent;
}

.border-l-white {
  --tw-border-opacity: 1;
  border-left-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-t-transparent {
  border-top-color: transparent;
}

.bg-\[\#0A0A0A\]\/30 {
  background-color: #0a0a0a4d;
}

.bg-\[\#0f0c0c\] {
  --tw-bg-opacity: 1;
  background-color: rgb(15 12 12 / var(--tw-bg-opacity));
}

.bg-\[\#141414\] {
  --tw-bg-opacity: 1;
  background-color: rgb(20 20 20 / var(--tw-bg-opacity));
}

.bg-\[\#1A1C1F\] {
  --tw-bg-opacity: 1;
  background-color: rgb(26 28 31 / var(--tw-bg-opacity));
}

.bg-\[\#1b1b1b\]\/20 {
  background-color: #1b1b1b33;
}

.bg-\[\#1b1b1b\]\/50 {
  background-color: #1b1b1b80;
}

.bg-\[\#1b1b1b\]\/80 {
  background-color: #1b1b1bcc;
}

.bg-\[\#E6443C\] {
  --tw-bg-opacity: 1;
  background-color: rgb(230 68 60 / var(--tw-bg-opacity));
}

.bg-amber-500\/10 {
  background-color: #f59e0b1a;
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-black\/20 {
  background-color: #0003;
}

.bg-black\/30 {
  background-color: #0000004d;
}

.bg-black\/40 {
  background-color: #0006;
}

.bg-black\/50 {
  background-color: #00000080;
}

.bg-black\/60 {
  background-color: #0009;
}

.bg-black\/90 {
  background-color: #000000e6;
}

.bg-blue-500\/10 {
  background-color: #3b82f61a;
}

.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.bg-emerald-500\/10 {
  background-color: #10b9811a;
}

.bg-green-500\/10 {
  background-color: #22c55e1a;
}

.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 0 / var(--tw-bg-opacity));
}

.bg-orange-500\/10 {
  background-color: #fcfc181d;
}

.bg-orange-500\/5 {
  background-color: #fafa1204;
}

.bg-orange-500\/70 {
  background-color: #ffff0085;
}

.bg-orange-500\/90 {
  background-color: #fafa16e2;
}

.bg-red-500\/10 {
  background-color: #ef44441a;
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white\/10 {
  background-color: #ffffff1a;
}

.bg-white\/5 {
  background-color: #ffffff0d;
}

.bg-yellow-500\/10 {
  background-color: #eab3081a;
}

.bg-zinc-500\/10 {
  background-color: #71717a1a;
}

.bg-zinc-800\/50 {
  background-color: #27272a80;
}

.bg-zinc-950 {
  --tw-bg-opacity: 1;
  background-color: rgb(9 9 11 / var(--tw-bg-opacity));
}

.bg-\[url\(\'https\:\/\/i\.imgur\.com\/Ql4jRdx\.png\'\)\] {
  background-image: url(https://i.imgur.com/Ql4jRdx.png);
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
  background-image: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-\[\#141414\] {
  --tw-gradient-from: #141414 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 20 20 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-amber-500\/20 {
  --tw-gradient-from: rgb(245 158 11 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black {
  --tw-gradient-from: #000 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-black\/80 {
  --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-blue-500\/20 {
  --tw-gradient-from: rgb(59 130 246 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-emerald-500\/20 {
  --tw-gradient-from: rgb(16 185 129 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-orange-400 {
  --tw-gradient-from: #fafa43 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-orange-400\/70 {
  --tw-gradient-from: rgb(255 255 0 / 0.7) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-orange-500 {
  --tw-gradient-from: #f7f71d var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-orange-500\/10 {
  --tw-gradient-from: rgb(255 255 0 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-orange-500\/20 {
  --tw-gradient-from: rgb(255 255 0 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-orange-500\/80 {
  --tw-gradient-from: rgb(255 255 0 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-orange-600\/20 {
  --tw-gradient-from: rgb(255 255 0 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-pink-500\/20 {
  --tw-gradient-from: rgb(236 72 153 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-purple-500\/20 {
  --tw-gradient-from: rgb(168 85 247 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-red-500\/20 {
  --tw-gradient-from: rgb(239 68 68 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-zinc-950 {
  --tw-gradient-from: #09090b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(9 9 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-\[\#141414\]\/80 {
  --tw-gradient-to: rgb(20 20 20 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from),
    rgb(20 20 20 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-black\/80 {
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from),
    rgb(0 0 0 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-orange-600\/80 {
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from),
    rgb(255 255 0 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from),
    transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.via-zinc-950\/80 {
  --tw-gradient-to: rgb(9 9 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from),
    rgb(9 9 11 / 0.8) var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-amber-600\/20 {
  --tw-gradient-to: rgb(217 119 6 / 0.2) var(--tw-gradient-to-position);
}

.to-blue-600\/20 {
  --tw-gradient-to: rgb(37 99 235 / 0.2) var(--tw-gradient-to-position);
}

.to-emerald-600\/20 {
  --tw-gradient-to: rgb(5 150 105 / 0.2) var(--tw-gradient-to-position);
}

.to-orange-500 {
  --tw-gradient-to: #fafa1b var(--tw-gradient-to-position);
}

.to-orange-500\/20 {
  --tw-gradient-to: rgb(255 255 0 / 0.2) var(--tw-gradient-to-position);
}

.to-orange-500\/50 {
  --tw-gradient-to: rgb(255 255 0 / 0.5) var(--tw-gradient-to-position);
}

.to-orange-500\/80 {
  --tw-gradient-to: rgb(255 255 0 / 0.8) var(--tw-gradient-to-position);
}

.to-orange-600 {
  --tw-gradient-to: #e5e50c var(--tw-gradient-to-position);
}

.to-orange-600\/10 {
  --tw-gradient-to: rgb(255 255 0 / 0.1) var(--tw-gradient-to-position);
}

.to-orange-600\/20 {
  --tw-gradient-to: rgb(255 255 0 / 0.2) var(--tw-gradient-to-position);
}

.to-pink-600\/20 {
  --tw-gradient-to: rgb(219 39 119 / 0.2) var(--tw-gradient-to-position);
}

.to-purple-600\/20 {
  --tw-gradient-to: rgb(147 51 234 / 0.2) var(--tw-gradient-to-position);
}

.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.bg-cover {
  background-size: cover;
}

.bg-clip-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.bg-center {
  background-position: center;
}

.object-contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-8 {
  padding-top: 2rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.leading-relaxed {
  line-height: 1.625;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.text-\[\#229ED9\] {
  --tw-text-opacity: 1;
  color: rgb(34 158 217 / var(--tw-text-opacity));
}

.text-amber-500 {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity));
}

.text-amber-500\/90 {
  color: #f59e0be6;
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity));
}

.text-blue-500\/90 {
  color: #3b82f6e6;
}

.text-emerald-500 {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity));
}

.text-emerald-500\/90 {
  color: #10b981e6;
}

.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}

.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}

.text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(255 255 0 / var(--tw-text-opacity));
}

.text-orange-500\/50 {
  color: #f9f91686;
}

.text-orange-500\/70 {
  color: #fdfd1fb6;
}

.text-orange-500\/80 {
  color: #fdfd11cc;
}

.text-pink-500 {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity));
}

.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity));
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}

.text-red-500\/90 {
  color: #ef4444e6;
}

.text-transparent {
  color: transparent;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-white\/40 {
  color: #fff6;
}

.text-white\/50 {
  color: #ffffff80;
}

.text-white\/60 {
  color: #fff9;
}

.text-white\/70 {
  color: #ffffffb3;
}

.text-white\/80 {
  color: #fffc;
}

.text-white\/90 {
  color: #ffffffe6;
}

.text-yellow-500 {
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity));
}

.text-zinc-400 {
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity));
}

.text-zinc-500 {
  --tw-text-opacity: 1;
  color: rgb(113 113 122 / var(--tw-text-opacity));
}

.text-zinc-500\/90 {
  color: #71717ae6;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-80 {
  opacity: 0.8;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color),
    0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color),
    0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-black\/20 {
  --tw-shadow-color: rgb(0 0 0 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.shadow-orange-500\/10 {
  --tw-shadow-color: rgb(255 255 0 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.outline {
  outline-style: solid;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-\[128px\] {
  --tw-blur: blur(128px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-\[2px\] {
  --tw-blur: blur(2px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-xl {
  --tw-blur: blur(24px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-3xl {
  --tw-backdrop-blur: blur(64px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.backdrop-saturate-150 {
  --tw-backdrop-saturate: saturate(1.5);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    -webkit-backdrop-filter;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.duration-150 {
  transition-duration: 0.15s;
}

.duration-200 {
  transition-duration: 0.2s;
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.text-gradient {
  background: linear-gradient(to right,
      #ffff00 20%,
      #eaaf0c 30%,
      #fdd274 70%,
      #fbd53c 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  background-size: 200% auto;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.topographic-pattern {
  background-color: #09090b;
  background-image: linear-gradient(rgba(255, 255, 0, 0.07) 1.5px,
      transparent 1.5px),
    linear-gradient(90deg, rgba(255, 255, 0, 0.07) 1.5px, transparent 1.5px),
    linear-gradient(rgba(255, 255, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 0, 0.06) 1px, transparent 1px);
  background-size: 75px 75px, 75px 75px, 15px 15px, 15px 15px;
  background-position: -1.5px -1.5px, -1.5px -1.5px, -1px -1px, -1px -1px;
  background-attachment: fixed;
  animation: patternScroll 60s linear infinite;
}

@keyframes patternScroll {
  0% {
    background-position: -1.5px -1.5px, -1.5px -1.5px, -1px -1px, -1px -1px;
  }

  to {
    background-position: 75px 75px, 75px 75px, 15px 15px, 15px 15px;
  }
}

.smooth-scroll {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.smooth-scroll:active {
  cursor: grabbing;
}

.smooth-scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.placeholder\:text-white\/40::-moz-placeholder {
  color: #fff6;
}

.placeholder\:text-white\/40::placeholder {
  color: #fff6;
}

.last\:border-0:last-child {
  border-width: 0px;
}

.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}

.hover\:-translate-y-0\.5:hover {
  --tw-translate-y: -0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:-translate-y-1:hover {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:-translate-y-2:hover {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.01\]:hover {
  --tw-scale-x: 1.01;
  --tw-scale-y: 1.01;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[1\.02\]:hover {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-\[\#229ED9\]\/30:hover {
  border-color: #229ed94d;
}

.hover\:border-orange-500\/30:hover {
  border-color: #fcfc185e;
}

.hover\:border-orange-500\/40:hover {
  border-color: #f8f81263;
}

.hover\:border-orange-500\/50:hover {
  border-color: #fbfb1188;
}

.hover\:border-orange-700:hover {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 0 / var(--tw-border-opacity));
}

.hover\:bg-\[\#1A1C1F\]\/50:hover {
  background-color: #1a1c1f80;
}

.hover\:bg-\[\#1b1b1b\]\/50:hover {
  background-color: #1b1b1b80;
}

.hover\:bg-\[\#229ED9\]\/10:hover {
  background-color: #229ed91a;
}

.hover\:bg-black\/70:hover {
  background-color: #000000b3;
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
}

.hover\:bg-orange-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 0 / var(--tw-bg-opacity));
}

.hover\:bg-orange-500\/10:hover {
  background-color: #ffff001a;
}

.hover\:bg-orange-500\/20:hover {
  background-color: #ffff003f;
}

.hover\:bg-orange-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 0 / var(--tw-bg-opacity));
}

.hover\:bg-white\/10:hover {
  background-color: #ffffff1a;
}

.hover\:bg-white\/5:hover {
  background-color: #ffffff0d;
}

.hover\:from-orange-600:hover {
  --tw-gradient-from: #dfdf0f var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-orange-700:hover {
  --tw-gradient-to: #bcbc0b var(--tw-gradient-to-position);
}

.hover\:text-\[\#229ED9\]:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 0 / var(--tw-text-opacity));
}

.hover\:text-orange-400:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 0 / var(--tw-text-opacity));
}

.hover\:text-orange-500:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 0 / var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:shadow-2xl:hover {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
    0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-orange-500\/10:hover {
  --tw-shadow-color: rgb(255 255 0 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.hover\:shadow-orange-500\/20:hover {
  --tw-shadow-color: rgb(255 255 0 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}

.hover\:shadow-orange-500\/25:hover {
  --tw-shadow-color: rgb(255 255 0 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}

.focus\:border-orange-500\/50:focus {
  border-color: #fbfb1561;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow),
    var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-orange-500\/50:focus {
  --tw-ring-color: rgb(255 255 0 / 0.5);
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.group:hover .group-hover\:-translate-y-1 {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:translate-x-0\.5 {
  --tw-translate-x: 0.125rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:rotate-12 {
  --tw-rotate: 12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-125 {
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-\[1\.02\] {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:border-orange-500\/30 {
  border-color: #03a03a4c;
}

.group:hover .group-hover\:border-orange-500\/50 {
  border-color: #ffff167f;
}

.group:hover .group-hover\:border-white\/40 {
  border-color: #fff6;
}

.group:hover .group-hover\:bg-black\/30 {
  background-color: #0000004d;
}

.group:hover .group-hover\:bg-orange-500\/10 {
  background-color: #fcfc121c;
}

.group:hover .group-hover\:text-amber-400 {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-orange-500 {
  --tw-text-opacity: 1;
  color: rgb(255 255 0 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-orange-500\/70 {
  color: #fdfd1db5;
}

.group:hover .group-hover\:text-orange-500\/90 {
  color: #ffff00d4;
}

.group:hover .group-hover\:text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white\/70 {
  color: #ffffffb3;
}

.group:hover .group-hover\:text-white\/80 {
  color: #fffc;
}

.group:hover .group-hover\:text-zinc-400 {
  --tw-text-opacity: 1;
  color: rgb(161 161 170 / var(--tw-text-opacity));
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

@media (min-width: 640px) {
  .sm\:left-4 {
    left: 1rem;
  }

  .sm\:right-4 {
    right: 1rem;
  }

  .sm\:mb-12 {
    margin-bottom: 3rem;
  }

  .sm\:mb-20 {
    margin-bottom: 5rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:w-12 {
    width: 3rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sm\:pb-12 {
    padding-bottom: 3rem;
  }

  .sm\:pt-24 {
    padding-top: 6rem;
  }

  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-\[340px\] {
    width: 340px;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.box {
  position: relative;
  overflow: hidden;
}

.box2 {
  position: relative;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.5) 0%, rgba(255, 200, 50, 0) 80%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.05s ease-out;
  filter: blur(20px);
}

.glow2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 200, 50, 0.5) 0%, rgba(255, 200, 50, 0) 80%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.05s ease-out;
  filter: blur(20px);
}

* {
  scroll-behavior: smooth;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.bouncing-ball {
  animation: bounce 1.2s linear infinite;
}

/* Scrolled state */
.header.scrolled {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* For Safari */
}

.min-custom {
  min-width: calc(100%/3);
}

.max-custom {
  max-width: calc(100%/3);
}

#prevBtn,
#nextBtn {
  min-width: 50px;
  min-height: 50px;
}

#catalogContainer {
  z-index: 50;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
  /* Ensure it's initially not interactive */
}

#catalogContainer.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  /* Make it interactive when active */
}

header {
  z-index: 1000 !important;
}

@media (max-width:1023px) and (min-width:768px) {
  .max-custom {
    max-width: 300px;
  }

  #prevBtn,
  #nextBtn {
    min-width: 30px;
    min-height: 30px;
  }

  #catalogContainer {
    padding: 0 10px;
    z-index: 1001;
  }

  .splide {
    max-width: 600px;
    margin: auto;
  }

  .media-cards {
    padding: 0 5% !important;
  }
}

@media (max-width:767px) {

  .max-custom {
    max-width: 300px;
  }

  #prevBtn,
  #nextBtn {
    min-width: 30px;
    min-height: 30px;
  }

  #catalogContainer {
    padding: 0 10px;
    z-index: 1001;
  }

  .splide {
    margin: auto;
    max-width: 300px;
  }
}

.text-green-500 {
  color: #184b3594;
}

.main {
  min-height: 200px;
  height: fit-content;
}

.media-list {
  text-align: left;
  margin-left: 10px;
  list-style: disc;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}

.media-list span {
  color: #9898A1;
  font-weight: 400;
}

.pointer-events-none {
  pointer-events: none;
}

.absolute {
  position: absolute;
}

.-left-\[20\%\] {
  left: -20%;
}

.bottom-\[50\%\] {
  bottom: 50%;
}

.z-40 {
  z-index: 40;
}

.h-96 {
  height: 24rem;
  /* 384px */
}

.w-\[700px\] {
  width: 700px;
}

.-rotate-45 {
  transform: rotate(-45deg);
}

.animate-pulse {
  animation: pulse 5s infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.rounded-full {
  border-radius: 9999px;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-indigo-500\/20 {
  --tw-gradient-from: rgba(99, 102, 241, 0.2);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0));
}

.via-transparent {
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent);
}

.to-cyan-500\/30 {
  --tw-gradient-to: rgba(6, 182, 212, 0.3);
}

.blur-\[100px\] {
  filter: blur(100px);
}

.duration-5000 {
  transition-duration: 5000ms;
}

.top-0 {
  top: 0;
}

.z-10 {
  z-index: 10;
}

.w-96 {
  width: 24rem;
  /* 384px */
}


.-right-\[20\%\] {
  right: -20%;
}

.bottom-0 {
  bottom: 0;
}

.from-rose-500\/20 {
  --tw-gradient-from: rgba(239, 103, 126, 0.2);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 103, 126, 0));
}

.to-brand\/30 {
  --tw-gradient-to: rgba(var(--brand-color), 0.3);
}

.media-page {
  margin-top: 7rem;
  padding: 0 5.5rem;
}

.status-page {
  margin-top: 7rem;
  padding: 0 5.5rem;
}




.media-page h3 {
  color: #2e8861;
  font-size: 2rem;
  font-weight: 600;
}

.media-page h4 {
  color: #9DA2AC;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.status-page h3 {
  color: #2e8861;
  font-size: 2rem;
  font-weight: 600;
}

.status-page h4 {
  color: #9DA2AC;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.feedback-page {
  margin-top: 7rem;
  margin-bottom: 3rem;
}


.feedback-page h3 {
  color: #2e8861;
  font-size: 2rem;
  font-weight: 600;
}

.feedback-page h4 {
  color: #9DA2AC;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

.products-heading h3 {
  color: #2e8861;
  font-size: 2rem;
  font-weight: 600;
}

.products-heading h4 {
  color: #9DA2AC;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}

/* Container */
.plans-container {
  margin-top: 5rem;
  position: relative;
  margin-bottom: 1rem;
  /* mb-4 */
  display: flex;
  align-items: center;
  /* items-center */
}

/* Title */
.plans-title {
  font-size: 1.875rem;
  /* text-3xl */
  font-weight: bold;
}

@media (min-width: 640px) {

  /* sm breakpoint */
  .plans-title {
    font-size: 2.25rem;
    /* sm:text-4xl */
  }
}

/* Background Text */
.plans-background-text {
  position: absolute;
  bottom: 0;
  left: 0;
  user-select: none;
  white-space: nowrap;
  background: linear-gradient(to bottom, white, transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3.75rem;
  /* text-6xl */
  font-weight: bold;
  opacity: 0.05;
  line-height: normal;
}

@media (min-width: 768px) {

  /* md breakpoint */
  .plans-background-text {
    font-size: 70px;
    /* md:text-[70px] */
    line-height: 70px;
    /* md:leading-[70px] */
  }
}


/* Alert Container */
.alert-container {
  margin-top: 3rem;
  /* mt-4 */
  border-radius: 0.5rem;
  /* rounded-lg */
  background-color: rgba(239, 68, 68, 0.05);
  /* bg-red-500 bg-opacity-5 */
  padding: 1rem;
  /* p-4 */
  color: #ef4444;
  /* text-red-500 */
}

/* Alert Header */
.alert-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* items-center */
  gap: 0.5rem;
  /* gap-2 */
  padding-bottom: 0.25rem;
  /* pb-1 */
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 600;
  /* font-semibold */
}

/* Alert Icon */
.alert-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Alert Title */
.alert-title {
  font-size: inherit;
  font-weight: inherit;
}

/* Alert Description */
.alert-description {
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 300;
  /* font-light */
}



/* Card Container */
.media-cards .card {
  border-radius: 0.5rem;
  border: 0 !important;
  background-color: #181818;
}

/* Card Image */
.media-cards .card-image {
  width: 100%;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

/* Card Content */
.media-cards .card-content {
  padding: 1rem;
}

/* Card Header */
.media-cards .card-header {
  border: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  background-color: transparent !important;
}

/* Card Title */
.media-cards .card-title {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to bottom right, #FFBA81, #FF9441);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.card-title{
  margin-bottom: 0 !important;
}

/* Card Tag */
.media-cards .card-tag {
  background-color: rgba(255, 167, 93, 0.15);
  color: #FFA75D;
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Card Divider */
.media-cards .card-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Card Subtitle */
.media-cards .card-subtitle {
  font-size: 0.875rem;
  color: rgba(115, 115, 115, 0.7);
}

/* Card Line */
.media-cards .card-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(115, 115, 115, 0.7), transparent);
}

/* Card Body */
.media-cards .card-body {
  margin-top: 1rem;
  padding: 0 !important;
}

/* Card Item */
.media-cards .card-item {
  margin-top: 0.5rem;
}

/* Card Item Content */
.media-cards .card-item-content {
  display: flex;

}

/* Card Item Label */
.media-cards .card-item-label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Card Item Value */
.media-cards .card-item-value {
  font-size: 0.75rem;
  color: rgba(115, 115, 115, 0.7);
}

/* Card Plus Container */
.card-plus {
  border-radius: 0.5rem;
  background-color: #181818;
}

/* Card Plus Image */
.card-plus-image {
  width: 100%;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

/* Card Plus Content */
.card-plus-content {
  padding: 1rem;
}

/* Card Plus Header */
.card-plus-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

/* Card Plus Title */
.card-plus-title {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to bottom right, #FFE67B, #FCCE15);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Card Plus Tag */
.card-plus-tag {
  background-color: rgba(252, 206, 21, 0.15);
  color: #FCCE15;
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Card Plus Divider */
.card-plus-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Card Plus Subtitle */
.card-plus-subtitle {
  font-size: 0.875rem;
  color: rgba(115, 115, 115, 0.7);
}

/* Card Plus Line */
.card-plus-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(115, 115, 115, 0.7), transparent);
}

/* Card Plus Body */
.card-plus-body {
  margin-top: 1rem;
}

/* Card Plus Item */
.card-plus-item {
  margin-top: 0.5rem;
}

/* Card Plus Item Content */
.card-plus-item-content {
  display: flex;
}

/* Card Plus Item Label */
.card-plus-item-label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Card Plus Item Value */
.card-plus-item-value {
  font-size: 0.75rem;
  color: rgba(115, 115, 115, 0.7);
}

/* Card Pro Container */
.card-pro {
  border-radius: 0.5rem;
  background-color: #181818;
}

/* Card Pro Image */
.card-pro-image {
  width: 100%;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

/* Card Pro Content */
.card-pro-content {
  padding: 1rem;
}

/* Card Pro Header */
.card-pro-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

/* Card Pro Title */
.card-pro-title {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to bottom right, #95FFD7, #33D499);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Card Pro Tag */
.card-pro-tag {
  background-color: rgba(51, 212, 153, 0.15);
  color: #33D499;
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* Card Pro Divider */
.card-pro-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Card Pro Subtitle */
.card-pro-subtitle {
  font-size: 0.875rem;
  color: rgba(115, 115, 115, 0.7);
}

/* Card Pro Line */
.card-pro-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(115, 115, 115, 0.7), transparent);
}

/* Card Pro Body */
.card-pro-body {
  margin-top: 1rem;
}

/* Card Pro Item */
.card-pro-item {
  margin-top: 0.5rem;
}

/* Card Pro Item Content */
.card-pro-item-content {
  display: flex;

}

/* Card Pro Item Label */
.card-pro-item-label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Card Pro Item Value */
.card-pro-item-value {
  font-size: 0.75rem;
  color: rgba(115, 115, 115, 0.7);
}

/* Unique CSS for Media Elite Card */
/* Unique CSS for Media Elite Card */

/* Card Elite Title */
.card-elite-title {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to bottom right, #DE59FE, #A020F0);
  /* Adjusted gradient to match #DE59FE */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Card Elite Tag */
.card-elite-tag {
  background-color: rgba(222, 89, 254, 0.15);
  /* Adjusted background color to match #DE59FE */
  color: #DE59FE;
  /* Adjusted text color to match #DE59FE */
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.media-cards {
  padding: 0 15%;
}


/* Section Title */
.info-section .section-title {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  /* text-xl */
  font-weight: 600;
  /* font-semibold */
  color: #FAFAFA;
}

@media (min-width: 640px) {
  .info-section .section-title {
    font-size: 1.5rem;
    /* sm:text-2xl */
  }
}

/* Section Content */
.info-section .section-content {
  font-size: 0.875rem;
  /* text-sm */
  color: #A1A1AA;
  /* text-muted-foreground */
}

/* Section List */
.info-section .section-list {
  list-style-position: inside;
  /* list-inside */
  list-style-type: disc;
  /* list-disc */
}


/* Section List Item Strong */
.info-section .section-list-item-strong {
  font-weight: 600;
  /* Default strong tag style */
}



/* Info Box Container */
.info-box {
  margin-top: 1rem;
  /* mt-4 */
  border-radius: 0.5rem;
  /* rounded-lg */
  background-color: rgba(59, 130, 246, 0.05);
  /* bg-blue-500 bg-opacity-5 */
  padding: 1rem;
  /* p-4 */
  color: #3b82f6;
  /* text-blue-500 */
}

/* Info Box Header */
.info-box-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  /* gap-2 */
  padding-bottom: 0.25rem;
  /* pb-1 */
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 600;
  /* font-semibold */
}

/* Info Box Icon */
.info-box-icon {
  width: 14px;
  /* width-14 */
  height: 14px;
  /* height-14 */
}

/* Info Box Content */
.info-box-content {
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 300;
  /* font-light */
}

/* Code Container */
.code-container {
  position: relative;
  margin-top: 1rem;
  /* mt-4 */
  border-radius: 0.375rem;
  /* rounded-md */
  border: 1px solid #2d2d2f !important;
  /* border */
  background-color: #1B1B1C;
  /* bg-accent/50 */
  padding: 1rem;
  /* px-4 */
  font-size: 0.75rem;
  /* text-xs */

}

/* Copy Button Container */
.copy-button-container {
  position: absolute;
  right: 1rem;
  /* right-4 */
  top: 1rem;
  /* top-4 */
}

/* Copy Button */
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  /* gap-2 */
  white-space: nowrap;
  /* whitespace-nowrap */
  font-weight: 500;
  /* font-medium */
  transition: background-color 0.2s;
  /* duration-200 */
  outline: none;
  /* focus-visible:outline-none */
  border-radius: 0.375rem;
  /* rounded-md */
  padding: 0.5rem 0.75rem;
  /* px-3 */
  height: 1.5rem;
  /* h-6 */
  font-size: 0.75rem;
  /* text-xs */
  background-color: #232324 !important;
  /* bg-secondary */
  color: #FAFAFA;
  /* text-secondary-foreground */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  /* shadow-sm */
}

.copy-button:hover {
  background-color: #e5e7eb;
  /* hover:bg-secondary/80 */
}

/* Code Content */
.page-container {
  white-space: break-spaces;
  /* whitespace-break-spaces */
  color: #A1A1AA;
  /* text-muted-foreground */
  padding-bottom: 1rem;
  /* pb-4 */
}

.products-section {
  margin-top: 7rem;
  padding: 0 6%;
  position: relative;
}

.products-section h3 {
  color: #2e8861;
  font-size: 2rem;
  font-weight: 600;
}

/* Gradient Overlay */
/* 
.gradient-overlay {
  pointer-events: none;
  position: fixed;
  bottom: 0;
  right: -20%;
  z-index: 40;
  width: 700px;
  transform: rotate(-45deg);
  border-radius: 9999px;
  background: linear-gradient(to bottom right,
      rgba(99, 102, 241, 0.2),
      transparent,
      rgba(0, 0, 0, 0.3)
    );
  filter: blur(100px);
  transition: all 5000ms;
}  */

/* Gradient Overlay with Pulse Animation */
.gradient-overlay-pulse {
  pointer-events: none;
  /* pointer-events-none */
  position: fixed;
  /* fixed */
  left: 20%;
  /* left-[0%] */
  top: 0;
  /* top-0 */
  z-index: 40;
  /* z-40 */
  height: 24rem;
  /* h-96 */
  width: 700px;
  /* w-[700px] */
  transform: rotate(-45deg);
  /* -rotate-45 */
  border-radius: 9999px;
  /* rounded-full */
  background: linear-gradient(to bottom right,
      rgba(99, 102, 241, 0.2),
      /* from-indigo-500/20 */
      transparent,
      /* via-transparent */
      rgba(0, 0, 0, 0.3)
      /* to-brand/30 (assuming brand color is black with 30% opacity) */
    );
  filter: blur(100px);
  /* blur-[100px] */
  transition: all 5000ms;
  /* duration-5000 */
  animation: pulse-animation 5s infinite;
  /* Custom pulse animation */
}

/* Pulse Animation */
@keyframes pulse-animation {
  0% {
    opacity: 0.5;
    transform: rotate(-45deg) scale(1);
  }

  50% {
    opacity: 1;
    transform: rotate(-45deg) scale(1.05);
  }

  100% {
    opacity: 0.5;
    transform: rotate(-45deg) scale(1);
  }
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* grid-cols-1 */
  gap: 1rem;
  /* gap-4 */
}

@media (min-width: 640px) {
  .product-grid {
    gap: 1.5rem;
    /* sm:gap-6 */
  }
}

/* Product Container */
.product-container {
  width: 100%;
  /* w-full */
  margin-left: auto;
  /* mx-auto */
  margin-right: auto;
  /* mx-auto */
}

/* Product Content */
.product-content {
  color: var(--text-primary);
  /* text-t-primary */
  margin-bottom: 4rem;
  /* mb-16 */
}

@media (min-width: 1024px) {
  .product-content {
    margin-bottom: 8rem;
    /* lg:mb-32 */
  }
}

.status-products{
  padding: 0 6%;
}

@media (min-width: 1441px) {
  .products-section {
    max-width: 1440px;
    padding: 0;
    /* lg:mb-32 */
  }
  .status-page{
    padding: 0;
    max-width: 1440px;
    margin: 7rem auto;
  }
  .status-products{
    padding: 0;
    max-width: 1440px;
    margin: auto;
  }
}

/* Product List */
.product-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /* grid-cols-1 */
  gap: 1rem;
  /* gap-4 */
}

@media (min-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    /* md:grid-cols-2 */
  }
}

@media (min-width: 1024px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    /* lg:grid-cols-3 */
  }
}

@media (min-width: 640px) {
  .product-list {
    gap: 1.5rem;
    /* sm:gap-6 */
  }
}

/* Group Container */
.group-container {
  grid-column: 1 / -1;
  /* col-span-full */
}

/* Combobox Button */
.combobox-button {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2rem;
  /* h-8 */
  white-space: nowrap;
  /* whitespace-nowrap */
  border-radius: 0.375rem;
  /* rounded-md */
  border: 1px solid #e5e7eb;
  /* border border-input */
  background-color: transparent;
  /* bg-transparent */
  padding: 0.5rem 0.75rem;
  /* px-3 py-2 */
  font-size: 0.875rem;
  /* text-sm */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  /* shadow-sm */
  outline: none;
  /* ring-offset-background */
  margin-bottom: 0.25rem;
  /* mb-1 */
  width: 180px;
  /* w-[180px] */
}

.combobox-button:disabled {
  cursor: not-allowed;
  /* disabled:cursor-not-allowed */
  opacity: 0.5;
  /* disabled:opacity-50 */
}

/* Combobox Text */
.combobox-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* [&>span]:line-clamp-1 */
  -webkit-box-orient: vertical;
  pointer-events: none;
  /* Disable pointer events */
}

/* Combobox Icon */
.combobox-icon {
  height: 1rem;
  /* h-4 */
  width: 1rem;
  /* w-4 */
  opacity: 0.5;
  /* opacity-50 */
}

.dropdown-wrapper {
  position: absolute;
  top: 2rem;
  min-width: 180px;
  z-index: 51;
  opacity: 0;
  transition: all ease 0.3s;
}

.dropdown-wrapper.active {
  opacity: 1;


}

.dropdown-content {
  position: relative;
  z-index: 50;
  max-height: fit-content;
  min-width: 8rem;
  overflow: hidden;
  border-radius: 0.375rem;
  background-color: #0F0F0F;
  color: var(--popover-foreground, #ffffff);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-viewport {
  padding: 0.25rem;
  height: var(--radix-select-trigger-height);
  width: 100%;
  min-width: var(--radix-select-trigger-width);
  overflow: hidden auto;
  position: relative;
  flex: 1 1 0%;
}

.dropdown-category {
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
}

.dropdown-option {
  position: relative;
  display: flex;
  width: 100%;
  cursor: pointer;
  user-select: none;
  align-items: center;
  border-radius: 0.25rem;
  padding: 0.375rem 0.5rem 0.375rem 0.5rem;
  font-size: 0.875rem;
  outline: none;
  transition: background 0.2s ease-in-out;
}

.dropdown-option:hover {
  background-color: var(--hover-bg, #272727);
}

.dropdown-option[data-disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.dropdown-icon {
  position: absolute;
  right: 0.5rem;
  display: flex;
  height: 0.875rem;
  width: 0.875rem;
  align-items: center;
  justify-content: center;
}


.status-cards{
  border: 1px solid #2c2b2b;
}

#navbar-image {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-in {
    opacity: 1;
    transform: translateY(0px);
}

.download-card{
  background-color: #0F1112;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
}

.download-image{
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.download-image img{
 transition: 0.4s;
}

.download-text{
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}

/* From Uiverse.io by cybrejon */ 
.download-link {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.692);
  padding: 5px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.397);
  background: rgba(255, 255, 255, 0.068);
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 8px;
  border-radius: 5px;
  transition: 0.4s;
  border: 1px solid transparent;
}

.download-link:hover {
  border-color: rgba(66, 66, 66, 0.623);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.144),
    rgba(255, 255, 255, 0.247),
    rgba(255, 255, 255, 0.39)
  );
  box-shadow: 0 6px rgba(66, 66, 66, 0.623);
  transform: translateY(-6px);
}

.download-link:active {
  transform: translateY(2px);
  box-shadow: none;
}

.download-card:hover .download-image img{
  transform: scale(1.05);
}

.prod-requirements .plans-container{
  margin-top: 1rem;
}


  .feature-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.01);
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px); /* Approximate backdrop-blur-lg */
}

.feature-icon {
  border-radius: 0.375rem; /* rounded-md */
  background-color: rgba(255, 255, 255, 0.15); /* approximate muted-foreground/15 */
  padding: 0.5rem;
  color: #a5a5a5;
}

.feature-subtitle {
  font-size: 0.875rem; /* text-sm */
  font-weight: 600; /* font-semibold */
  color: rgba(160, 174, 192, 0.7); /* approximate muted-foreground/70 */
}

.feature-title {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600; /* font-semibold */
  color: aliceblue;
}

.right-\[0\%\] {
    right: 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 767px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:1023px) and (min-width: 767px) {
    .desc-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
}


@media (min-width: 1024px) {
    .requirements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.desc-grid{
  display: grid;
  grid-template-columns:repeat(4, 1fr);
  gap: 20px;
}

.desc-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #383838;
    border-radius: 8px;
    background-color: #a1a1aa0d;
}

.desc-header {
    border-bottom: 1px solid #383838;
    background-color: #a1a1aa03;
    padding: 8px 16px;
    font-size: 14px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.desc-body {
    flex-grow: 1;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    font-size: 14px;
    color: #717070;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.desc-body ul {
    list-style-type: disc;
}

.desc-body ul li {
    position: relative;
    left: 12px;
}


@media (max-width: 766px) {
    .desc-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .desc-header{
      font-size: 16px;
      font-weight: 600;
    }
}


.login-modal{
  height: 40px !important;
  width: 40px !important;
}

.btn-shine{
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%); */
  /* padding: 12px 48px; */
  /* color: #249DD8; */
  /* background: linear-gradient(to right, #16a34ab3 0, #beffda 10%, #16a34ab3 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none; */
  /* font-weight: 600; */
  /* font-size: 24px; */
  /* text-decoration: none;
  white-space: nowrap; */



  background: #1f2320b3 -webkit-gradient(linear, left top, right top, from(#1f2320b3), to(#1f2320b3), color-stop(0.5, #fff)) 0 0 no-repeat;
	-webkit-background-size: 150px;
	-webkit-background-clip: text;
	-webkit-animation-name: shine;
	-webkit-animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	text-shadow: 0 0px 0px rgba(255, 255, 255, 0.5);
}

    
 @keyframes shine{

  0%
  {
    
    background-position: -255px;
  }
  60%{

    background-position: 255px;
  }
  100%{

    background-position: 255px;
  }
}


  ::-webkit-scrollbar {
      width: 10px;
      background-color: #333;
    }

    ::-webkit-scrollbar-thumb {
      background-color: #245e46;
      border-radius: 10px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background-color: #1d4b39;
    }

    .premium-aim-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.2s ease;
      pointer-events: none;
    }

    .premium-aim-overlay.active {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
    }

.menu-window {
  width: 700px;
  height: 80%;  /* Increased height */
  background-color: rgba(20, 20, 20, 0.96);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #464646;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: default;
  transition: all 0.2s ease;
}


    .window-header {
      background: linear-gradient(to right, #181818, #111111);
      padding: 12px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #464646;
    }

    .window-title {
      font-weight: 500;
      display: flex;
      align-items: center;
      align-items: center;
      color: #245e46;  /* Changed to the new color */
      font-size: 18px;
    }

    .logo-img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .window-title svg {
      margin-right: 10px;
    }

    .window-controls span {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-left: 6px;
      cursor: pointer;
    }

    .window-controls .minimize {
      background-color: #FFB800;
    }

    .window-controls .close {
      background-color: #FF605C;
    }

    .menu-content {
      display: flex;
      height: 100%;
    }

    .sidebar {
      width: 180px;
      background-color: #111111;
      padding: 12px 0;
      border-right: 1px solid #141414;
    }

    .sidebar-item {
      display: flex;
      align-items: center;
      padding: 12px 15px;
      color: #888;
      cursor: pointer;
      transition: all 0.2s ease;
      border-radius: 4px;
      margin: 2px 8px;
      font-size: 15px;
    }

    .sidebar-item:hover {
      background-color: rgba(24, 95, 51, 0.1);
      color: #ccc;
    }

    .sidebar-item.active {
      background-color: rgba(97, 97, 97, 0.1);
      color: #fff;
    }

    .sidebar-item svg {
      margin-right: 10px;
      opacity: 0.8;
    }

    .content-area {
      flex: 1;
      background-color: rgba(20, 20, 20, 0.96);
      padding: 20px;
      position: relative;
      overflow: auto;
    }

    .section-title {
      color: #245e46;  /* Changed to the new color */
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 20px;
      padding-bottom: 8px;
    }

    .option-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding: 10px 12px;
      border-radius: 4px;
      transition: background-color 0.2s ease;
    }

    .option-row:hover {
      background-color: rgba(255, 255, 255, 0.03);
    }

    .option-text {
      color: #ddd;
      font-size: 15px;
      font-weight: 400;
    }

    .toggle-switch {
      position: relative;
      width: 40px;
      height: 20px;
    }

    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #333;
      transition: .3s;
      border-radius: 20px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 16px;
      width: 16px;
      left: 2px;
      bottom: 2px;
      background-color: #555;
      transition: .3s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background-color: rgba(36, 217, 90, 0.2);
    }

    input:checked + .slider:before {
      transform: translateX(20px);
      background-color: #245e46;  /* Changed to the new color */
    }

    /* Input for FOV and Thickness */
    .input-box {
      width: 80px;
      background-color: #333;
      color: #245e46;  /* Changed to the new color */
      border: 1px solid #245e46;  /* Changed to the new color */
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 14px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .input-box:focus {
      outline: none;
      border-color: #1d4b39;
      box-shadow: 0 0 5px rgba(36, 94, 70, 0.6);
    }

    .range-slider {
      width: 100%;
      margin-top: 8px;
    }

    .range-slider input {
      width: 100%;
      -webkit-appearance: none;
      background: rgba(36, 217, 90, 0.2);
      height: 6px;
      border-radius: 3px;
      outline: none;
    }

    .range-slider input::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #245e46;  /* Changed to the new color */
      cursor: pointer;
    }

    .range-value {
      text-align: right;
      color: #245e46;  /* Changed to the new color */
      font-weight: 600;
      margin-top: 5px;
    }

    .menu-trigger {
      margin: 20px auto;
      text-align: center;
      background: linear-gradient(to bottom, #111111, #181818);
      color: #245e46;  /* Changed to the new color */
      border: 1px solid #245e46;  /* Changed to the new color */
      border-radius: 8px;
      max-width:300px;
      padding: 8px 20px;
      cursor: pointer;
      transition: all 0.2s ease;
      font-weight: 600;
      text-shadow: 0 1px 2px rgba(0,0,0,0.5);
      box-shadow: 0 2px 10px rgba(0,0,0,0.4);
      font-size: 12px;
      z-index: 9999998;
    }

    @media(max-width:767px){
      .menu-trigger{
        display: none;
      }
    }

    .menu-trigger:hover {
      background: linear-gradient(to bottom, #141414, #111111);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(24, 24, 24, 0.2);
    }

    .content-section-menu {
      display: none;
    }

    .content-section-menu.active {
      display: block;
    }

    .window-footer {
      padding: 12px 20px;
      background-color: #111111;
      border-top: 1px solid #464646;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
    }

    .status {
      color: #00ff4c;
    }

    .version {
      color: #666;
    }

    select {
      background: #111111;
      color: #fff;
      border: 1px solid #464646;
      padding: 4px 8px;
      border-radius: 4px;
    }

    .premium-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(20, 20, 20, 0.96);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }

    .premium-icon {
      color: #245e46;  /* Changed to the new color */
      font-size: 32px;
      margin-bottom: 20px;
    }

    .premium-title {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .premium-description {
      color: #888;
      text-align: center;
      margin-bottom: 20px;
      max-width: 280px;
      font-size: 15px;
    }

    .plan-options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      width: 100%;
      max-width: 300px;
    }

    .plan-option {
      background-color: #111111;
      border: 1px solid #245e46;  /* Changed to the new color */
      border-radius: 5px;
      padding: 12px;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .plan-option:hover {
      background-color: #111111;
      border-color: #245e46;  /* Changed to the new color */
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(36, 217, 105, 0.15);
    }

    .plan-duration {
      margin-bottom: 5px;
      color: #ccc;
      font-size: 13px;
    }

    .plan-price {
      color: #245e46;  /* Changed to the new color */
      font-size: 18px;
      font-weight: bold;
    }



.badge-game{
  display: inline-block;
        background-color: #1b1b1b; /* dark background */
        color: #fff;
        font-weight: bold;
        border: 1px solid #565658;
        padding: 2px 8px;
        border-radius: 4px;
        font-size: 12px;
        letter-spacing: 1px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.badge-container{
  display: flex;
  gap: 5px;
  align-items: center;
  padding-bottom: 20px;
  
}

/* Move the Recommended dropdown left (desktop) */
.upsell-section .plans-container {
  position: relative;
  transform: translateX(-150px);
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Move product cards under Recommended (desktop) */
.upsell-section .upsell-row {
  position: relative;
  transform: translateX(-150px);
}

/* Card body height consistency */
.upsell-section .upsell-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  overflow: hidden;
  min-height: 125px;
}

@media (max-width: 768px) {
  .upsell-section {
    display: none;
  }
}

.terms-box {
  position: relative;
  display: flex;
  width: 100%; /* Full width inside its container */
  flex-direction: column;
  align-items: flex-start;
  border-radius: 1rem;
  border: 1px solid #ffffff0d;
  background-color: #0009;
  padding: 2rem;
  --tw-backdrop-blur: blur(6px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.2s;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.terms-box:hover {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-color: #2E8861;
}

/* Style for badge-game2 (new class) */
.badge-game2 {
  position: relative;
  left: 10px;          /* move right */

  display: inline-flex;
  align-items: center;
  background-color: #1b1b1b;
  color: #fff;
  font-weight: bold;
  border: 1px solid #565658;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hover effect for badge-game2 */
.badge-game2:hover {
  transform: scale(1.1);
  background-color: #333;
}

.badge-game2 i {
  margin-right: 6px;
  font-size: 12px;
}

/* Badge container */
.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  padding: 0;
  margin-left: 0;
}


/* Float badges above product name */
.badge-float {
  position: relative;
  top:12px;                        /* Reset top offset */
  left: 0;                       /* Reset left offset */
}

@media (max-width: 768px) {
  .badge-game2 {
    display: none;
  }
}

/* Splitter line above bottom row */
.footer-splitter {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

/* Footer bottom row flex container */
.footer-bottom {
  display: flex;
  justify-content: space-between; /* left, center, right */
  align-items: center;
  padding: 8px 16px;
  flex-wrap: wrap; /* allow wrapping on small screens */
  position: relative;
  gap: 8px;
}

/* Status on the left */
.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* Green pulsing circle */
.status-pulse {
  width: 10px;
  height: 10px;
  background-color: #28a745;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.8; }
}

/* Center copyright */
.footer-bottom p {
  font-size: 12px;
  color: #999;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  flex-grow: 1; /* center naturally in flex layout */
}

/* Discord button */
.footer-discord-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
  transition: all 0.3s ease;
  flex-shrink: 0; /* don’t shrink on small screens */
}

.footer-discord-btn:hover {
  background-color: rgba(88, 242, 139, 0.12);
  border-color: rgba(88, 242, 152, 0.3);
  color: #fff;
}

.footer-discord-btn svg {
  width: 20px;
  height: 20px;
}

/* MOBILE: stack footer items */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .footer-status {
    order: 1; /* status on top */
  }

  .footer-bottom p {
    order: 2; /* copyright in middle */
  }

  .footer-discord-btn {
    order: 3; /* Discord at bottom */
    margin-top: 4px;
  }
}