/* GLOBAL STYLES For Silverback Beta*/

:root {
  --primary-color: #1f1e33;
  --primary-color-light: #2a2944;
  --primary-color-lighter: #35355a;
  --primary-color-dark: #171626;
  --primary-color-darker: #0f0e1a;
  --silverback-purple: #4444cf;
  --silverback-green: rgba(0, 255, 110, 0.476);
}

.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.animated-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation:
    brightnessAnimation 15s ease-in-out infinite,
    fadeIn 3s ease-in;
}

@keyframes brightnessAnimation {
  0%,
  100% {
    filter: brightness(1) contrast(1.2);
  }

  50% {
    filter: brightness(1.2) contrast(1.2);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0.93;
  }

  100% {
    opacity: 1;
  }
}

.animated-background img:hover {
  transform: scale(1.02);
  transition: transform 1s ease;
}

body {
  margin: 0px;
  padding: 0px;
}

.article {
  margin: 0 !important;
}

/*SILVERBACK ONE PAGER BODY SPECIFIC*/
.sb-web {
  overflow-x: hidden;
  color: var(--super-text-color);
  background-color: #1f1e33;
  color: white !important;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  /* Add as a layer behind the content */
}

/*CSS OVERRIDDE DEFAULT CSS EFFECTS*/
.layout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
/* .layout-grid>article {
  margin: 0;
  padding: 10px;
} */

.sb-web article {
  border-color: transparent;
  background-color: transparent;
  box-shadow: none !important;
}

.sb-web section {
  border-color: transparent;
  background-color: transparent;
  box-shadow: none !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
}

.testimonial {
  width: 100%;
  height: auto;
  vertical-align: top;
  height: 390px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 10px;
  }
}

.testimonial p {
  font-size: 36px;
  line-height: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  text-align: right;
  font-style: italic;
  color: silver;
}

@media (max-width: 768px) {
  .testimonial p {
    font-size: 24px;
    max-width: 100%;
    text-align: center;
    padding: 0 10px;
  }
}

#testimonial section {
  min-height: 70px;
  background-color: var(--primary-color-light) !important;
}

.testimonial-caption {
  position: relative;
  float: right;
  font-style: italic;
  margin-top: 10px;
}

#features {
  min-height: 720px;
}

#features h1 {
  margin-bottom: 11px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 15px;
  padding-left: 5px;
  padding-right: 5px;
  height: 30px; /* Slim height */
  font-size: 0.9rem; /* Slightly smaller font size */
  color: #c0c0c0; /* Silver text for contrast */
  animation: breathingColor 5s infinite alternate; /* Breathing color animation */
}

/* Utility class for backdrop filter */
.backdrop-blur {
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

nav img {
  height: 32px;
  width: 32px;
  object-fit: cover;
  /* Ensure the image fits within the square dimensions */
}

.top-nav {
  display: flex;

  flex-direction: row;
  border-radius: 8px;
  gap: 10px;
  transition: transform 0.3s;
  max-width: 200px;
}

.top-nav button {
  flex-grow: 1;
}

.top-logout {
  background-color: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.top-logout:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.051);
  box-shadow: 0 0 10px var(--silverback-green);
}

.top-logout:active {
  transform: scale(0.95);
  background-color: var(--silverback-green);
}

.two-col > article {
  padding-right: 40px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: right;
  width: 80%;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  padding: 10px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    max-height: 0;
  }

  .nav-links.active {
    display: flex;
    max-height: 500px;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .hamburger {
    display: block;
  }
}

.wait-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  color: #fff;
  text-align: center;
}

/* Mobile version without padding */
@media (max-width: 768px) {
  .wait-list {
    padding: 0;
  }
}

.wait-list form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.wait-list p {
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: center;
  color: white;
  margin-bottom: 20px;
  margin-top: 20px;
  max-width: 800px;
  font-size: 18px;
  line-height: 1.5em;
}

.wait-list input[type="email"] {
  height: 36px;
  border-radius: 5px;
  border: 1px solid #fff;
  margin-right: 10px;
  width: 250px;
  /* Adjust width */
  background-color: transparent;
  color: var(--primary-border-color);
  padding-left: 10px;
  /* Add padding to the placeholder text */
}

.icon-style {
  width: 54px;
  height: 54px;
  padding: 16px;
  background: linear-gradient(
      160deg,
      rgba(158, 249, 249, 0.8) 0%,
      rgba(249, 158, 249, 0.8) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0.3) 100%
    );
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(24px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px var(--primary-color) solid;
  border-radius: 50px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--primary-color);
  mix-blend-mode: multiply;
}

#feature-1,
#feature-2,
#feature-3,
#feature-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

#feature-1 p,
#feature-2 p,
#feature-3 p,
#feature-4 p {
  max-width: 300px;
  margin: 10px 0;
  word-wrap: break-word;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0em;
  text-align: center;
}

.product-icon {
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
}

footer img {
  width: 100px;
  height: 100px;
  filter: invert(0);
  margin-bottom: 20px;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

footer img:hover {
  transform: scale(1.1);
  /* animation: explosionEffect 0.5s infinite alternate; */
}

.product-card {
  min-width: 200px;
  max-width: 300px;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(31, 30, 51, 0.8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card-content {
  padding: 20px;
}

.product-feature-list {
  margin-top: 20px;
  display: block; /* Ensure the list itself is not using flex */
}

.product-feature-list li {
  display: flex; /* Use flexbox for individual list items */
  align-items: center; /* Align items vertically */
  gap: 10px; /* Add space between the icon and text */
  background: none !important; /* Override background */
  padding: 0 !important; /* Override padding */
  margin: 0 !important; /* Override margin */
  border-radius: 0 !important; /* Override border-radius */
  box-shadow: none !important; /* Override box-shadow */
  transition: none !important; /* Override transition */
  /* Add any additional styles needed */
}

.tabs {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 720px;
  margin-left: 25px;
  margin-bottom: 0px;
}

/*CODE TAB BUTTON*/
.tab-button {
  color: white !important;
  font-size: 14px !important;
  font-family: Barlow !important;
  font-weight: 400 !important;
  word-wrap: break-word !important;
  width: 100% !important;
}

.tab-button.active {
  background-color: var(--silverback-purple);
}

.tab-content {
  display: block;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.tab-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.code-block {
  min-width: 100%;

  background-color: rgba(31, 30, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: left;
}

@media (max-width: 768px) {
  .code-block {
    min-height: auto;
    max-width: 300px;
    height: auto;
    padding: 15px;
    font-size: 14px;
    border-radius: 5px;
    overflow-x: auto;
    margin: 0;
  }
}

.code-comment {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-style: italic !important;
  display: block !important;
  font-family: "Courier New", Courier !important;
  text-align: left !important;
  margin-top: 15px !important;
  margin-bottom: 0px !important;
}

#first-line {
  margin-top: 20px !important;
}

.code-string {
  font-size: 16px !important;
  text-align: left !important;
  margin-top: 0px !important;
  padding: 0 !important;
  font-family: "Courier New", Courier !important;
  color: white !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  word-wrap: break-word !important;
  text-align: left !important;
}

/* Add this media query for mobile responsiveness */
@media (max-width: 768px) {
  .two-col {
    flex-direction: column;
    align-items: stretch;
  }
}

#try-free {
  min-height: 50vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#try-free p {
  max-width: 800px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  #try-free p {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}

#deploy-feature-details {
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding: 20px;

  border-radius: 8px;

  text-align: center;
  margin-right: 20px;
  padding-left: 0px;
}

@media (max-width: 768px) {
  #deploy-feature-details {
    padding-left: 15px;
    padding-right: 15px;
    align-items: center;
  }
}

#deploy-feature-details h2 {
  font-size: 32px;
  font-family: Barlow, sans-serif;
  line-height: 38.4px;
  margin-bottom: 10px;
  text-align: left;
}

#deploy-feature-details p {
  max-width: 800px;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #deploy-feature-details p {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.trailer-thumbnail {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#featureVideo {
  width: 100%;
  max-width: 800px;
  transition: opacity 0.3s ease;
}

/* Remove these if they conflict with the JavaScript functionality */
.trailer-thumbnail.hidden,
#featureVideo.visible {
  display: block;
  opacity: 1;
}

.styled-video {
  width: 720px;
  max-width: 100%;
  height: auto;
}

.header-style-splash {
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .header-style-splash {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    padding: 20px;

    border-radius: 8px;

    text-align: center;

    padding-left: 0px;
  }
}

#pricing-header p {

    max-width: 800px;
    text-align: center;
    font-size: 18px;
    line-height: 1.5em;
  }

@media (max-width: 768px) {
  #pricing-header p {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
    }
  }

/*SPECIAL BUTTONS JUST FOR THE HOMEPAGE SITE */
/*BUTTON FOR THE TOP NAV */

.top-join {
  display: inline-block;
  padding: 5px 15px;
  font-weight: 400;
  color: white;
  border: 0.71px solid var(--silverback-green);
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  height: 40px;
  width: 100%;
  background-color: transparent;
  width: 100px;
}

.top-join:hover {
  mix-blend-mode: darken;
  /* var(--silverback-green) with 80% opacity */
}

.subscribe-button {
  display: inline-block;
  padding: 5px 10px;
  font-weight: 400;
  color: white;
  border: 0.71px solid var(--silverback-green);
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  height: 40px;
  background-color: transparent;
  width: 125px;
}

.subscribe-button:hover {
  mix-blend-mode: darken;
}

.two-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 275px;
  margin-top: 20px;
}

.two-buttons > button {
  min-width: 250px;
}

@media (max-width: 600px) {
  .two-buttons {
    flex-direction: column;

    align-items: center;
  }
}

.workspace-action-dropdown-menu {
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  top: 0%;
  right: 0;
  margin-right: 5px;
  margin-top: 5px;
}

time {
  font-size: 14px;
}

a {
  color: white;
  text-decoration: none;
}

#workspaces {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;

  padding-top: 20px;
  padding-bottom: 20px;
}

/* Universal style for all select dropdowns */
select {
  background: rgba(45, 45, 45, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px 18px;
  border-radius: 8px;
  backdrop-filter: blur(15px);
  color: #ff0060;
  font-size: 12px;
  transition:
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
}

select:focus {
  background: rgba(55, 55, 55, 0.7);
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  ul {
    grid-template-columns: 1fr; /* Single column layout for mobile */
    gap: 10px; /* Reduce gap for mobile */
  }

  li {
    margin: 0 auto;
  }

  li.sexy-li {
    max-width: 85%; /* Full width on mobile */
    margin: 0 15px; /* Add space on left and right */
  }
}

/*Chapter 3 - THE LISTS THE LIST  */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}

li {
  background: rgba(31, 30, 51, 0.48);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  padding: 20px;
  width: 100%;

  max-width: 500px;

  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    90deg,
    rgba(232, 28, 255, 0.2),
    rgba(64, 201, 255, 0.2)
  );
  border-radius: 8px;
  z-index: -1;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}

li.sexy-li header {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  font-size: 20px;
  text-transform: uppercase;
}

li.sexy-li::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    #ff0060,
    #ff4500,
    #ff6347,
    #ff4500,
    #ff0060
  );
  background-size: 400% 400%;
  border-radius: 8px;
  z-index: 1;
  animation: sparkle 1s linear infinite;
}

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

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: rgba(31, 30, 51, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar header h1 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
}

.sidebar section p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 10px;
}

.sidebar button {
  font-size: 1rem;
  line-height: 1.05;
  color: #ccc;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left !important;
  gap: 10px;
  text-transform: capitalize;
  width: 100%;
  padding: 10px;
  justify-content: flex-start;
}

.dashboard-content-block {
  width: calc(100% - 250px);
  /* Adjust based on sidebar width */
  margin-left: calc(250px);
  /* Calculate margin-left based on sidebar width */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 800px;
  min-height: 500px;
  border-radius: 8px;
  padding: 20px;
  background-color: rgba(31, 30, 51, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cancel-button {
  margin-top: 10px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cancel-button:hover {
  transform: scale(1.05);
  animation: cancel-border 2s linear infinite;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  cursor: pointer;
}

.cancel-button:hover::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 0, 0.2) 0%,
    rgba(255, 69, 0, 0.1) 100%
  );
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes cancel-border {
  0% {
    border-color: #ff0000;
  }
  25% {
    border-color: #ff4500;
  }
  50% {
    border-color: #ff6347;
  }
  75% {
    border-color: #ff4500;
  }
  100% {
    border-color: #ff0000;
  }
}

.update-button {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.update-button:hover {
  transform: scale(1.05);
  animation: rainbow-border 2s linear infinite;
  box-shadow: 0 0 15px rgba(107, 241, 161, 0.5);
  cursor: pointer;
}

.update-button:hover::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(107, 241, 161, 0.2) 0%,
    rgba(129, 110, 214, 0.1) 100%
  );
  animation: sparkle 1.5s ease-in-out infinite;
}

.create-button {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.create-button:hover {
  transform: scale(1.05);
  animation: rainbow-border 2s linear infinite;
  box-shadow: 0 0 15px rgba(107, 241, 161, 0.5);
  cursor: pointer;
}

.create-button:hover::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(107, 241, 161, 0.2) 0%,
    rgba(129, 110, 214, 0.1) 100%
  );
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes rainbow-border {
  0% {
    border-color: #6bf1a1;
  }
  25% {
    border-color: #816ed8;
  }
  50% {
    border-color: #ff69b4;
  }
  75% {
    border-color: #816ed8;
  }
  100% {
    border-color: #6bf1a1;
  }
}

@keyframes sparkle {
  0% {
    transform: rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0;
  }
}

.create-cluster-section {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.91) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 20px;
  width: 55%;
  background: rgba(31, 30, 51, 0.8);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.create-cluster-section p {
  margin-bottom: 0px;
}

.create-cluster-description-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
}

.create-cluster-button-container {
  flex: 1;
  position: relative;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#create-cluster-button {
  width: 40px;
  height: 40px;
  border-radius: 5px;
}

.workspace-overview-header {
  min-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.workspace-overview-header h1 {
  margin: 0;
}

.dropdown select {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

/*HERO JOIN BUTTONS*/

@media (max-width: 768px) {
  .hero-join-a {
    min-width: 250px !important; 
  }
}

.hero-join-a {
  width: 200px !important;
  height: 64px !important;
  color: #6BF1A1;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18px;
  word-wrap: break-word;
  border: 1px solid #6BF1A1;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  text-align: center;
  background-color: transparent;
}

.hero-join-a:hover {
  background-color: var(--silverback-purple);
  cursor: pointer;
}

.hero-join-b {
  width: 200px !important;
  height: 64px !important;
}

.hero-join-b:hover {
  background-color: var(--silverback-green);
  cursor: pointer;
}

.button-a {
  background-color: transparent;
}

.button-a:hover {
  cursor: pointer;
  background-color: var(--silverback-green);
  color: white;
}

.button-b {
  color: white;
  font-size: 14px;
  font-family: Barlow;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 18px;
  word-wrap: break-word;
  border: 1px solid grey;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  text-align: center;
  background-color: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button-b:hover {
  cursor: pointer;
  background-color: var(--silverback-purple);
  color: white;
  border: 1px solid var(--silverback-purple);
}

.button-b:active {
  transform: scale(0.95);
  background-color: var(--silverback-purple);
  box-shadow: 0 0 10px var(--silverback-purple)
}

.button-b::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(129, 110, 214, 0.2) 0%, rgba(129, 110, 214, 0.1) 100%);
  transition: all 0.35s ease;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
}

.button-b:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}

.inactive {
  height: 64px !important;
}


.code-block-real {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  font-family: "Courier New", Courier, monospace;
  overflow-x: auto;
  max-width: 100%;
  background-color: rgba(31, 30, 51, 0.8);
  padding: 32px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 760px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  padding: 6px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.code-legend {
  font-size: 0.8em;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  margin: 0px;
  margin-bottom: 0px !important;
  position: absolute;
  top: 8px;
  left: 8px;
  opacity: 0.25;
}

.copy-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.code-block-container {
  margin-bottom: 20px;
}

.code-block-container h1 {
  margin-bottom: 10px;
}

.code-block-real pre {
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
  font-size: 14px;
}

.code-block-real h4 {
  color: #ccc;
  font-size: 12px;
  padding: 0px;
  margin: 0px;
  margin-bottom: 5px;
}

.view-workspace-btn-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.view-workspace-btn {
  padding: 15px 20px;
  border: 1px solid transparent;
  background-color: transparent;
  font-size: 14px;
}

.view-workspace-btn:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

.hidden {
  display: none;
}

#custom-alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(31, 30, 51, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#alert-ok-button {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: background-color 0.3s ease;
}

#alert-ok-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#get-started {
  margin-bottom: 100px !important;
}

.ape-logo-link {
  display: inline-block;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  position: relative;
  overflow: visible;
}

.ape-logo-link img {
  width: 100px;
  height: 100px;
  filter: invert(0);
  margin-bottom: 20px;
}

.glassy-workspace-header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-right: 52px;
  align-items: center;
  text-align: center;
  padding: 10px;
  background-color: rgba(31, 30, 51, 0.48); /* Dark purple glass */
  border-radius: 8px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10.5px); /* Increase blur for more depth */
  -webkit-backdrop-filter: blur(10.5px); /* For Safari */
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 6px 20px rgba(0, 0, 0, 0.19); /* Add 3D shadow */
}

@media (max-width: 768px) {
  .glassy-workspace-header {
    padding: 8px;
    padding-right: 40px;
    height: 40px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow:
      0 2px 4px rgba(0, 0, 0, 0.15),
      0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

@media (max-width: 480px) {
  .glassy-workspace-header {
    padding: 4px;
    padding-right: 24px;
    height: 30px;
    margin-bottom: 5px;
    border-radius: 4px;
    margin-left: 5px;
    margin-right: 5px;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  #back-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #back-button-container button {
    max-width: 50%;
  }
}

.workspace-title {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
}

.settings-button {
  background: none;
  border: none;
  cursor: pointer;
  max-width: 24px;
  max-height: 24px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.settings-button:hover {
  transform: scale(1.2);
  box-shadow:
    0 0 10px rgba(107, 241, 161, 0.5),
    0 0 20px rgba(107, 241, 161, 0.8);
  background-color: rgba(31, 30, 51, 0.8);
}

.settings-button img {
  width: 100%;
  height: 24px;
}

input[type="text"] {
  background: rgba(31, 30, 51, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(107, 241, 161, 0.5);
  outline: none;
}

input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

input[type="text"]:focus {
  background: rgba(45, 45, 45, 0.9);
  color: #e0e0e0;
  border-color: #6bf1a1;
  box-shadow: 0 0 20px rgba(107, 241, 161, 0.8);
  animation: neonGlow 2s linear infinite;
}

@keyframes neonGlow {
  0% {
    box-shadow:
      0 0 10px rgba(107, 241, 161, 0.5),
      0 0 20px rgba(107, 241, 161, 0.5);
  }
  25% {
    box-shadow:
      0 0 20px rgba(107, 241, 161, 0.8),
      0 0 30px rgba(107, 241, 161, 0.8);
  }
  50% {
    box-shadow:
      0 0 10px rgba(107, 241, 161, 0.5),
      0 0 20px rgba(107, 241, 161, 0.5);
  }
  75% {
    box-shadow:
      0 0 20px rgba(107, 241, 161, 0.8),
      0 0 30px rgba(107, 241, 161, 0.8);
  }
  100% {
    box-shadow:
      0 0 10px rgba(107, 241, 161, 0.5),
      0 0 20px rgba(107, 241, 161, 0.5);
  }
}

#back-button {
  margin-top: 10px;
}

#back-button:hover {
  cursor: pointer;
}
