#app {
display:none;
}

  
  .doto-<uniquifier> {
    font-family: "Doto", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "ROND" 0;
  }


  .header-links {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
  }

  .header-links * {
    cursor:pointer;
    transition:all 0.5s;
    margin: 20px;
  }
  .header-links img:hover {
    transform:scale(1.2);
  }

  :root {
    --neon-blue: #00ff41;
    --dark-bg: #0a0a0a;
    --grid-lines: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-doto: "Doto", sans-serif;
  }

  * {
    margin: 0;
    padding: 0;
    font-family: var(--font-doto);
    color:white;
    font-size:20px;
    line-height: 32px;
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    background: var(--dark-bg);
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* padding: 0px 20px; */
  }

  .matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.1) 0%, transparent 50%),
      linear-gradient(var(--grid-lines) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid-lines) 1px, transparent 1px);
    background-size:
      100% 100%,
      20px 20px,
      20px 20px;
    z-index: -1;
    animation: pulse 8s ease-in-out infinite;
  }
  .disclaimer {
    text-align: center;
    max-width: 820px;
    margin: 50px auto;
    line-height: 40px;
    font-size: 26px;
  }
  .container {
    display:none;
  }
  .visible {
    display:block;
  }

  @keyframes pulse {
    0%,
    100% {
      opacity: 0.5;
    }
    50% {
      opacity: 0.8;
    }
  }

  .header {
    text-align: center;
    padding: 1.5rem;
    padding-bottom:0px;
    /* background: linear-gradient(45deg, #00ff41, #000); */
    /* backdrop-filter: blur(10px); */
    /* border-bottom: 1px solid var(--glass-border); */
  }

  .header h1 {
    margin: 0;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
    line-height: 4.5rem;
  }

  .header p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-top: 1rem;
  }

  .prompt-form {
    /* max-width: 900px; */
    width: calc(100% - 40px);
    max-width: 1350px;
    margin: 3rem auto;
    /* background: var(--glass-bg); */
    backdrop-filter: blur(10px);
    border: 1px solid #00000000;
    border-radius: 4px;
    min-height: 340px;
    margin: 2.5rem auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* display: none; */
    overflow: hidden;
  }

  textarea {
    width: 100%;
    min-height: 220px;
    background: none;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: white;
    border: none;
    padding: 60px 20%;
    resize: vertical;
    transition: all 0.3s;
    margin: auto;
  }

  textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
  }

  button {
    background: linear-gradient(246deg, #000000, transparent);
    /* border: 1px solid #fff; */
    color: white;
    border: 1px solid #fff00000;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin: auto;
    display: block;
    /* margin-top: 1.5rem; */
    margin: 0px auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 100%;
    /* margin-bottom: 70px; */
    margin-top: 10px;
    box-shadow: 0px 0px 10px 1px rgb(0 0 0 / 36%);
    position: fixed;
    bottom:0px;
  }

  button:hover {
    transform: translateY(-2px) scale(1.15);
    /* box-shadow: 0 10px 20px rgb(87, 255, 252, 0.3); */
  }

  .view-window {
    flex: 1;
    margin: 2rem auto;
    width: 90%;
    max-width: 1200px;
    background: var(--dark-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 2px;
    padding: 2rem;
    min-height: 400px;
    display:none;
  }

  .carousel {
    margin: 3rem auto;
    width: 90%;
    max-width: 2000px;
    overflow: hidden;
    position: relative;
    /* display:none; */
  }

  .carousel-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    padding: 20px 20px;
    align-items: center;
    /* justify-content: center; */
  }

  .carousel-item {
    width: 300px;
    background: var(--dark-bg);
    backdrop-filter: blur(10px);
    border: 1px solid #00000000;
    max-width
    border-radius: 5px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s;
  }

  .carousel-item h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .carousel-item.new {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgb(38 255 210 / 20%);
  }
  .carousel-item:hover, .carousel-item.new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
  }

  .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-bottom:20px;
  }

  .carousel-nav button {
    background: var(--dark-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: white;
    margin: 0px 5px;
    width:auto;
    position:relative;
  }

/* Define fade-out animation */
@keyframes fadeOutScrollDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}
.fadeer-enter-active, .fader-enter-active {
  animation: fadeInScrollDown 0.5s forwards;
}
.fader-leave-active {
  animation: fadeOutScrollDown 0.25s forwards;
}
.fadeer-leave-active {
  transition:none;
}
.prompt-form.loading {
  padding-top:500px;
  height: 80vh;
}
.prompt-form.reset {
padding-top:550px;
}
.absolute-chat, .absolute-view {
  width: calc(100%);
  margin: auto;
  /* height: 740px; */
  position: absolute;
  top: 32px;
  left: 0px;
  overflow: scroll;
  padding: 0px 50px;
  padding-top: 20px;
  height: 80vh;
  padding-bottom: 120px;
}
.toggle-bar {
  width: 100%;
  height: 60px;
  background: #0a0a0a;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1000;
}
.toggle-bar span {
  width:30%;
  cursor:pointer;
  transition:all 0.5s;
}
.toggle-bar span:hover {
  transform:scale(1.2);
}
.toggle-bar *.active {
  text-decoration:underline;
}
.generation-history-toggles {
  position: absolute;
  top: -14px;
  right: 0px;
  /* transform: translateX(-50%); */
  display: flex;
  align-items: center;
}
.generation-history-toggles span {
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background: #00000080;
  margin: 20px 3px;
  cursor: pointer;
  transition: all 0.5s;
  border: 2px dotted;
}
.generation-history-toggles span:hover {
  transform:scale(1.1);
}
iframe {
  width: calc(100% + 100px);
  height: 100vh;
  margin: 0px -50px;
  border: none;
  visibility: visible;
  animation-name: fadeInDown;
  z-index: 10;
}
.prompt-form.full-screen {
  visibility: visible;
  animation-delay: 0.8s;
  animation-name: fadeInUp;
  width: 100%;
  position: fixed;
  top: 0px;
  margin: 0px;
  max-width: none;
  height: 100vh;
  z-index: 1000;
  padding: 0px !important;
}
.prompt-form.full-screen .absolute-chat, .prompt-form.full-screen .absolute-view {
  width: calc(100%);
  margin: auto;
  /* height: 680px; */
  /* position: absolute; */
  top: 0px;
  left: 0px;
  overflow: scroll;
  height: calc(100vh - 100px);
  padding: 0px 50px;
  padding-top: 32px;
  margin-top: 20px;
  padding-bottom: 0px;
}
.full-screen-icon {
  position:absolute;
  position: absolute;
  top: 17px;
  right: 20px;
  width: 20px;
  cursor: pointer;
}
.full-screen-icon:hover {
  transform:scale(1.1);
}
.stats-group {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0px;
  gap: 20px;
  margin-top:80px;
}
.stats-group div {
  display:flex;
  align-items:center;
  margin:10px;
}
.stats-group span {
  font-size: 1.2rem;
  font-weight: 600;
  margin:10px 15px;
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stats-group span:nth-child(1) {
  font-size: 1.5rem;
}
.carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 70px;
}
.carousel-inner {
  display: flex;
  /* overflow: hidden; */
  /* max-width:1250px; */
  padding:20px;
  /* margin:auto; */
}
.carousel-item {
  /* flex: 0 0 33.33%; /* Show 3 items at a time */ */
  opacity: 1;
  transition: all 0.5s ease;
  min-width:500px;
  max-width:600px;
  /* justify-content:center; */
  align-items:center;
}
/* .carousel-nav button {
  margin: 5px;
} */
.absolute-new {
  position: absolute;
  top: 6px;
  right: 14px;
  font-weight: 600;
  color: rgb(38 255 210 / 80%);
  /* font-style: italic; */
  font-size: 18px;
}
.absolute-download {
  position: absolute;
  top: 16px;
  left: 18px;
  width: 20px;
  height: 20px;
  cursor:pointer;
  transition:all 0.5s;
}
.absolute-download:hover {
transform:scale(1.1);
}
.x-link {
  width: 50px;
  font-size: 65px;
  margin-left: 22px;
  cursor:pointer;
  transition:all 0.5s;
  margin-left: 30px;
}
.header-links svg {
  transition:all 0.5s;
  cursor:pointer;
}
.x-link:hover, .header-links svg:hover {
    transform: scale(1.2);
}
.terminal-link {
  position: fixed;
  top:20px;
  right:20px;
  z-index: 1000;
  border-radius:10px;
  padding:10px 30px;
  background:var(--dark-bg);
  border:1px solid var(--glass-border);
  cursor:pointer;
  transition:all 0.1s;
  font-weight:bold;
}
.terminal-link:hover {
  transform:scale(1.1);
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}