@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&display=swap");

:root {
  --yellow-button: #ffa500;
  --yellow-button-hov: #ff8c00;
  --light-blue: #75e3ff;
  --acid-green: #03e729;
  --pink: #ff5cbf;
  --message-success: #4caf50;
  --message-error: #f44336;
  --pink-hover: #f03eb1;
}

html {
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #eaeaea;
  width: 100%;
  overflow-x: hidden;
}

img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

.grisette {
  font-style: italic;
  color: #777;
}

.acid_green {
  color: var(--acid-green) !important;
}
/* fixed preview on load */

#indexOverlay {
  position: absolute;
  background-color: #000;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
}

#indexOverlay.fade-out {
  transition: opacity 1s ease;
  opacity: 0 !important;
}

#gridWrapper {
  position: sticky;
  display: flex;
  margin: auto;
  width: 100%;
  height: auto;
  z-index: 100;
  background-color: #111;
  overflow: hidden;
  transition: max-height 0.8s ease, min-height 0.8s ease;
}

#gridWrapper.fade-out {
  transition: opacity 0.6s ease;
  opacity: 0;
}

#gridWrapper.hundredWh {
  min-height: 100vh;
  max-height: 1000px;
}

#gridWrapper.zeroHeight {
  max-height: 0;
  min-height: 0;
  padding: 0;
}

.fade-in {
  display: block !important;
  animation: fadeIn 0.5s ease-out forwards;
}

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

#grid3x3 {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 100%;
  z-index: 2;
}

.grid_item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
}

.grid_item:nth-child(1) {
  align-items: end !important;
  justify-content: end !important;
}
.grid_item:nth-child(2) {
  align-items: center !important;
  justify-content: center !important;
}
.grid_item:nth-child(3) {
  align-items: end !important;
  justify-content: left !important;
}
.grid_item:nth-child(4) {
  align-items: end !important;
  justify-content: right !important;
}
.grid_item:nth-child(6) {
  align-items: end !important;
  justify-content: left !important;
}
.grid_item:nth-child(8) {
  align-items: center !important;
  justify-content: center !important;
}

/*images management */

#digitalNotary,
#launchPad,
#marketPlace,
#web3Storage,
#oracleEngine,
#discoverUnft {
  max-width: 120px;
  cursor: pointer;
}

#logoFixed {
  max-width: 150px;
  animation: glow 5s infinite alternate;
}

#digitalNotary:hover,
#marketPlace:hover,
#web3Storage:hover,
#oracleEngine:hover,
#launchPad:hover {
  filter: brightness(1.2) drop-shadow(0 0 3px #d4d4d4);
  transform: scale(1.05);
  transition: all 0.3s ease;
  animation: neonFlash 0.5s ease-in-out;
}

#discoverUnft:hover {
  filter: drop-shadow(0 0 3px #ffffff);
  transform: scale(1.05);
  transition: all 0.3s ease;
}

@keyframes neonFlash {
  0% {
    filter: drop-shadow(0 0 0px #ffffff);
  }
  50% {
    filter: drop-shadow(0 0 5px #ff00cc);
  }
  100% {
    filter: drop-shadow(0 0 0px #ffffff);
  }
}

/*bg animations */

#bgHexVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
  transition: mask-image 0.4s ease;
  border-radius: 25%;
  overflow: hidden;
  mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

#overlaySmooth {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #111;
  opacity: 1;
  transition: opacity 1s ease;
}

#whiteOverlayMask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  mask-image: radial-gradient(circle at center, white 0%, black 50%);
  -webkit-mask-image: radial-gradient(circle at center, white 0%, black 50%);
}

/*Topbar /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.topbar {
  width: 100%;
  background-color: #1d1d1d;
  padding: 15px 30px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2e2e2e;
}

.topbar .logo a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
}

.topbar h1 {
  margin: 0;
}

.token-advise {
  margin: 0;
  width: 100%;
  padding: 0 50px;
  display: flex;
  background-color: #333;
  border-bottom: solid 1px #999;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: relative;
}

.token-advise a {
  background-color: crimson;
  color: white;
  padding: 5px 20px;
  border-radius: 8px;
  align-items: center;
  margin: 0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.close-btn {
  right: 0;
  margin-right: 2vw;
  font-size: 20px;
  color: white;
  cursor: pointer;
  position: absolute;
  z-index: 10;
}

@keyframes subtlePulse {
  0% {
    background-color: #333;
  }
  30% {
    background-color: #444;
  }
  60% {
    background-color: #333;
  }
  90% {
    background-color: #444;
  }
  100% {
    background-color: #333;
  }
}

.token-advise {
  animation: subtlePulse 6s ease-in-out infinite;
}

.token-advise:hover {
  background-color: #222;
  animation-play-state: paused;
}

.token-advise a:hover {
  box-shadow: 0 0 5px rgb(255, 255, 255, 0.7);
}

@media screen and (max-width: 768px) {
  .close-btn {
    padding: 10px;
  }
}

.nav {
  display: flex;
  gap: 25px;
  font-size: 1.1em;
}

.logo a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.link-style {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  cursor: pointer;
  display: contents;
}

.nav a:hover,
.link-style:hover {
  color: var(--yellow-button-hov);
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: column;
    background-color: #1d1d1d;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    z-index: 100;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    padding: 0;
    margin-top: 25px;
  }

  .nav.show {
    max-height: 1000px;
    opacity: 1;
    padding: 10px;
  }

  .menu-toggle {
    display: block;
    color: white;
  }
}

/* tpobar elements */

.user-hash-wrapper {
  position: relative;
  display: inline-block;
}

.user-hash-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s linear;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px 20px;
  position: absolute;
  z-index: 10;
  max-width: 96%;
  overflow: hidden;
}

.logout_wrapper {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .user-hash-content {
    bottom: 25px;
    left: 2%;
  }

  .user-hash {
    font-size: 0.7em !important;
  }

  .user-hash-wrapper:hover .user-hash-content {
    display: flex;
    gap: 10px;
    opacity: 1;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .user-hash-content {
    min-width: 450px;
    max-width: 80%;
    top: 20px;
    right: 10px;
  }
  .user-hash-wrapper:hover .user-hash-content {
    display: flex;
    opacity: 1;
    min-height: 80px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
}

.user-hash {
  margin-bottom: 5px;
}

.logout-link {
  padding: 4px 5px;
  border-radius: 5px;
  background-color: var(--yellow-button);
  text-decoration: none;
  font-weight: bold;
  transition: all 1s;
}

.logout-link:hover {
  background-color: var(--yellow-button-hov);
}

#walletSelector {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.wallet-button {
  background-color: #444;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 25px;
  margin: 10px auto;
  font-size: 1.2em;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wallet-button:hover {
  background-color: #666;
}

.wallet-logo {
  height: 24px;
  width: 24px;
}

#metaMaskHidden {
  color: var(--yellow-button);
  margin-top: 20px;
  display: none;
  font-size: 0.95em;
}

@media (max-width: 768px) {
  #walletSelector {
    width: 100%;
    padding: 0 10px;
  }

  .wallet-button {
    width: 100%;
    font-size: 1.1em;
    padding: 12px 20px;
  }

  h1 {
    font-size: 1.5em;
  }
}

.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #2a2a2a;
  padding: 20px 40px;
  border: 1px solid var(--light-blue);
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content label {
  margin-bottom: 10px;
}

.modal-content input[type="email"],
.modal-content input[type="password"] {
  margin-bottom: 20px;
}

.modal-content input[type="submit"] {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: var(--acid-green);
  color: green;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.5s ease;
  max-width: 50%;
  margin: auto;
}

.modal-content input[type="submit"]:hover {
  background-color: var(--light-blue);
  color: white;
}

.forgot-password {
  margin-top: 15px;
  text-align: center;
}

.forgot-password a {
  color: var(--acid-green);
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.join-us-button {
  margin-top: 0;
}

.join-us-container {
  text-align: center;
}

.join-us-container p {
  margin-top: 25px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* google icon  */

.material-symbols-outlined {
  color: var(--light-blue);
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
  font-size: 1.4em;
}

/*Index Home ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.hero {
  width: 100%;
  height: auto;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f0f0f;
  padding: 0;
  color: white;
}

.hero .title {
  flex: 1;
  font-size: 4em;
  font-weight: 700;
  padding: 20px;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero .title span {
  color: var(--light-blue);
}

.hero .subtitle {
  font-size: 1em;
  color: var(--pink);
  margin-top: 10px;
  font-weight: 300;
}

.hero .cta {
  flex: 0.6;
  background-color: var(--yellow-button);
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.cta img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.cta img.active {
  opacity: 1;
}

.cta-button {
  background-color: var(--yellow-button);
  color: #111;
  padding: 10px 15px;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(50, 50, 50, 0.9);
  cursor: pointer;
  margin-top: 20px !important;
  display: inline-block;
  transition: transform 0.5s ease;
  text-decoration: none;
  border: none;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: var(--yellow-button-hov);
}
.banner {
  position: absolute;
  background-color: rgba(50, 50, 50, 0.9);
  color: white;
  padding: 20px;
  border-radius: 20px;
  font-size: 2em;
  text-align: center;
  z-index: 1;
  width: 80%;
}

/* Collections Section */
.collections {
  width: 100%;
  margin: auto;
  height: auto;
  text-align: center;
  background-color: #323232;
  padding: 20px 0;
  color: white;
}

/* Card Grid */
.grid {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px;
  justify-content: center;
  align-items: stretch;
  overflow-y: auto;
  text-align: center;
  max-height: 200vh;
  margin: auto;
  grid-template-columns: repeat(5, 1fr);
}

.collections .link-container {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 30px 0;
}

.card {
  background-color: #242424;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  justify-content: space-between;
  min-height: 100%;
  color: white;
  overflow: hidden;
  position: relative;
}

/*overlayer cards */
.card-overlayer {
  top: 0;
  right: 0;
  z-index: 10;
  padding: 7px;
  margin-top: 7px;
  margin-right: 0;
  text-align: right;
  font-size: 0.9em;
  min-width: 5vw;
  border-radius: 7px 0 0 7px;
  position: absolute;
}

.Active_green_OL {
  background-color: rgba(3, 231, 41, 0.7);
  color: white;
}

.Minted_OL {
  background-color: rgba(3, 216, 231, 0.7);
  color: white;
}

.Review_grey_OL {
  background-color: rgba(109, 109, 109, 0.7);
  color: lightcoral;
}

.Deleted_black_OL {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
}

.Unknown_white_OL {
  background-color: white;
  color: red;
}

.card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0px 0px 8px rgba(173, 216, 230, 0.7);
}

.card img {
  transition: transform 0.6s ease;
  transform-origin: center center;
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.card h3 {
  color: #ffa500;
  margin-top: 10px;
}

.card p {
  color: #ccc;
  font-size: 0.9em;
  line-height: 1.4;
  margin-top: 10px;
  flex-grow: 1;
}

.card .hash {
  font-size: 0.7em;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 1599px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ↓↓↓ 3 columnas: de 1199px a 769px ↓↓↓ */
@media (max-width: 1199px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ↓↓↓ 2 columnas: de 768px para abajo ↓↓↓ */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero .title {
    font-size: 2.5em;
  }

  .card img {
    max-height: 150px;
  }

  .collections .link-container {
    border-top: solid 1.5px #03e729;
  }

  .card .description {
    display: none;
  }
}

.grid a {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: stretch;
}

.grid a:visited {
  text-decoration: none;
  color: inherit;
}

.collections h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1em;
  background-color: var(--yellow-button);
  color: #111;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: none;
}

.button:hover {
  background-color: var(--yellow-button-hov);
  color: white;
  transform: scale(1.05);
}

.hero .button {
  font-size: 16px;
}

.learn-more {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.learn-more .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.learn-more-link {
  color: var(--yellow-button);
  font-weight: 800;
  text-decoration: underline;
  transition: color 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.learn-more-link:hover {
  color: var(--yellow-button-hov);
  text-decoration: none;
}

.learn-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.learn-card {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.learn-card img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.learn-card .text {
  flex: 1;
  text-align: left;
}

.learn-card .text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.learn-card .text p {
  font-size: 1.2rem;
  color: #666;
}

.learn-card ul {
  color: #666;
}

.fade-in-left,
.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.fade-in-left {
  transform: translateX(-50px);
}

.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

@media (max-width: 768px) {
  .learn-card {
    flex-direction: column;
    text-align: center;
  }

  .learn-card img {
    width: 100%;
  }

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

.newsletter {
  width: 100%;
  padding: 40px 20px 100px 20px;
  background-color: var(--light-blue);
  color: white;
  text-align: center;
}

.newsletter h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.newsletter .subtitle {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.newsletter form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  padding: 15px;
  font-size: 1em;
  width: 40%;
  border: none;
  border-radius: 4px 0 0 4px;
  margin: auto;
  margin-right: 0;
}

.newsletter input[type="submit"] {
  padding: 15px 20px;
  font-size: 1em;
  background-color: var(--yellow-button);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: auto;
  margin-left: 0;
  max-width: 200px;
}

.newsletter input[type="submit"]:hover {
  background-color: var(--yellow-button-hov);
}

.newsletter .frequency-note {
  font-size: 0.9em;
  color: #fff;
  margin-top: 10px;
}

.newsletter .frequency-note a {
  color: var(--pink-hover);
}

.nl-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nl-modal.hidden {
  display: none;
}

.nl-modal-content {
  background: #fff;
  max-width: 700px;
  width: 90%;
  padding: 2em;
  border-radius: 8px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: #444;
}

.nl-modal-close {
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 1.5em;
  border: none;
  background: none;
  cursor: pointer;
}

/* Media Queries */
@media (max-width: 1200px) {
  .collections .grid .card {
    width: calc(33.33% - 20px);
  }

  .learn-more .section {
    flex-direction: column;
    text-align: center;
  }

  .learn-more .section img,
  .learn-more .section .text {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero .title,
  .hero .cta {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero .cta {
    flex: auto;
  }

  .collections .grid .card {
    width: calc(50% - 20px);
  }

  .learn-more .section img {
    width: 80%;
    margin: 0 auto 20px;
  }

  .learn-more .section .text {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .collections .grid .card {
    width: 100%;
  }

  .learn-more .section img {
    width: 100%;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInReverse {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.section img {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section .text {
  opacity: 0;
  white-space: normal;
  overflow: hidden;
  width: 100%;
  transition: opacity 1s ease-out;
  display: inline-block;
}

.section.visible img {
  opacity: 1;
}

.section.visible .text {
  opacity: 1;
  animation: typing 2s steps(30, end) forwards;
}

.section.visible .slide-in {
  animation: slideIn 1s forwards;
}

.section.visible .slide-in-reverse {
  animation: slideInReverse 1s forwards;
}

.section.section.reverse {
  background-color: #f4f4f4;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 30px 0;
  text-align: center;
  color: #999;
  font-size: 0.9em;
}

.footer a {
  color: var(--yellow-button);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--yellow-button-hov);
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 50px;
}

.footer-section {
  flex: 1;
  padding: 10px;
  color: #999;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

.footer-section p,
.footer-section ul,
.footer-section li {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1em;
}

.footer-section ul {
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a {
  color: #999;
}

.footer-section ul li a:hover {
  color: var(--yellow-button-hov);
}

.footer-bottom {
  color: var(--acid-green);
  padding: 10px 0;
  font-size: 0.9em;
}

.links {
  text-align: center;
}

.about {
  text-align: left;
}

.create-unft {
  width: 100%;
  padding: 40px 20px;
  text-align: center;
  background-color: #1d1d1d;
}

.create-unft h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--light-blue);
}

.create-unft .button {
  margin-top: 0;
}

/*

.create-unft-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: left;
}

.create-unft-container h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.create-unft-container form {
  display: flex;
  flex-direction: column;
}

.create-unft-container label {
  margin-bottom: 10px;
}

.create-unft-container input[type="text"],
.create-unft-container textarea,
.create-unft-container input[type="file"] {
  margin-bottom: 20px;
}

.create-unft-container input[type="submit"] {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #2e8b57;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.create-unft-container input[type="submit"]:hover {
  background-color: #1d5a40;
}
*/

#messageBox {
  opacity: 1;
  transition: opacity 0.5s ease;
}

#messageBox.fade-out {
  opacity: 0;
}

.message {
  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: 9999;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.message-content {
  background-color: #fff;
  padding: 20px 40px;
  border-radius: 4px;
  text-align: center;
}

.message.success .message-content {
  background-color: var(--message-success);
  color: white;
  font-size: 2em;
}

.message.error .message-content {
  background-color: var(--message-error);
  color: white;
}

/*
.register-link {
  text-align: right;
  margin-top: 10px;
}



.register-link a {
  color: #2e8b57;
  text-decoration: none;
}

.register-link a:hover {
  text-decoration: underline;
}
*/

/*publish_unft /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.publish-unft-wrapper {
  position: relative;
}

.publish-unft-container {
  width: 100%;
  max-width: 1200px;
  margin: 5vh auto 10vh;
  padding: 40px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: left;
  color: rgb(133, 133, 133);
  transition: all 0.5s ease;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 0;
  max-height: 50px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .publish-unft-container {
    max-width: 98%;
    padding: 10px;
  }
}

.publish-unft-container.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
  z-index: 2;
  max-height: 3000px;
  overflow: auto;
}

.publish-unft-container h1 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center !important;
  color: var(--pink);
}

.publish-unft-container h2 {
  font-size: 1.6em;
  margin-bottom: 20px;
  text-align: center;
  color: var(--light-blue);
}

.publish-unft-container form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.publish-unft-container .form-group {
  width: 100%;
  display: inline-block;
}

.borded {
  border: solid;
  padding: 10px;
}

.publish-unft-container textarea,
.publish-unft-container input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin-bottom: 10px;
}

.publish-unft-container input[type="number"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin-bottom: 10px;
  min-width: 150px;
}

.publish-unft-container textarea {
  resize: vertical;
  min-height: 150px;
  height: auto !important;
}

.publish-unft-container input[type="submit"] {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #2e8b57;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.publish-unft-container select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  width: 100%;
  margin-bottom: 20px;
  appearance: none;
  background-color: white;
  color: #666;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/*tokenization details */

#shared_good_desc {
  border: solid;
  padding: 20px;
}

.disclaimer {
  color: #666;
  font-size: 0.9em;
  margin-top: 10px;
  text-align: justify;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.error-message {
  background-color: #f8d7da;
  color: var(--message-error);
  border: 1px solid #f5c6cb;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.json-textarea {
  color: var(--acid-green);
  font-family: monospace;
  font-size: 14px;
  padding: 20px;
  resize: vertical;
  height: auto !important;
  border-radius: 4px;
  margin: 10px auto;
  min-height: 150px;
}

.protection-cta {
  background: #f5f5f5;
  border: solid 0.5px #e65ff5;
  border-left: 5px solid #e65ff5;
  padding: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 6px;
}

.protection-cta p {
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
}

.protection-cta .button {
  background-color: #75e3ff;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.intro-block {
  background-color: #efefef;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 50px;
}

.section-title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: bold;
  color: #444;
}

.publish_form {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1em;
  background-color: var(--light-blue) !important;
  color: #333 !important;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border: none;
  margin: 0 20px;
  width: auto !important;
  transition: ease 0.3s !important;
}

.publish_form:hover {
  scale: 1.2;
  color: white !important;
}

@media (max-width: 768px) {
  .intro-block {
    padding: 15px;
    font-size: 0.95rem;
  }
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Contenedor de botones */
.bottom-fixed {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bottom-fixed .next-step {
  padding: 12px 24px;
  font-size: 1em;
  background-color: #ffa500;
  color: #111;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bottom-fixed .next-step:hover {
  background-color: #ff8c00;
  color: white;
  transform: scale(1.15);
}

.bottom-fixed .prev-step {
  padding: 12px 24px;
  font-size: 1em;
  background-color: #e9e9ed;
  color: #666;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bottom-fixed .prev-step:hover {
  border-color: #999;
  background-color: #333;
  color: #e9e9ed;
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .bottom-fixed {
    flex-direction: column;
    align-items: center;
  }

  .bottom-fixed button {
    width: 90%;
    margin: 8px 0;
  }
}

.media-preview {
  margin-top: 10px;
  max-width: 50%;
  margin: auto;
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  justify-items: center;
}

.gallery-thumb {
  background-color: #000;
  width: 150px;
  max-width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  position: relative;
}

.img-wrapper {
  width: 98%;
  height: 98%;
  margin: auto;
  overflow: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  position: absolute;
}

.gallery-thumb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: auto;
}

.dropzone {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  max-width: 90%;
  margin: auto;
}

.dropzone.dragover {
  background-color: #e6f7ff;
  border-color: #3399ff;
}

.remove-btn {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: crimson;
  border: none;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  line-height: 20px;
  padding: 0;
}

.remove-btn:hover {
  background-color: #ff0000;
}

@media (max-width: 1024px) {
  .gallery-preview {
    grid-template-columns: repeat(3, 1fr); /* Tablet: 3 columnas */
  }
}

@media (max-width: 600px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr); /* Móvil: 2 columnas */
  }

  .gallery-thumb {
    width: 40vw;
    height: 45vw;
  }
}

.toast {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--message-error);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.toast.show {
  opacity: 1;
}

/*last step - loader */

#progress-container {
  width: 100%;
  height: 100%;
  z-index: 100;
  align-items: center;
  flex-direction: column;
  background-color: rgb(0, 0, 0, 0.85);
  position: fixed;
}

#loader-wrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
  text-align: center;
}

#loader-wrapper h1 {
  font-size: 3em;
  color: var(--pink-hover);
  text-shadow: 1px 1px 3px #aeaeae;
  transition: color 0.9s ease, transform 0.4s ease;
  transform: scale(1.2) translateY(0);
  margin: 0;
}

#loader-wrapper h2 {
  font-size: 3em;
  color: var(--light-blue);
  text-shadow: 1px 1px 3px #aeaeae;
  transition: color 0.9s ease, transform 0.4s ease;
  transform: scale(0.8) translateY(0);
  margin: 1em;
}

#loader-wrapper:hover h1 {
  color: var(--light-blue);
  transform: scale(0.8) translateY(0.5em);
}

#loader-wrapper:hover h2 {
  color: var(--pink-hover);
  transform: scale(1.2) translateY(-0.5em);
}

/* unfts.php /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.filter-bar {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.filter-bar select,
.filter-bar button {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
}

.filter-bar .apply {
  background-color: var(--light-blue);
  color: white;
}

.filter-bar .apply:hover {
  transform: scale(1.05);
}

.filter-bar .clear {
  color: crimson;
  text-decoration: underline;
  cursor: pointer;
}

.filter-bar .clear:hover {
  color: var(--message-error);
}

.filter-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-actions {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.loading {
  text-align: center;
  font-size: 1.5em;
  margin: 20px 0;
  color: #666;
}

.no-results-message {
  text-align: center;
  font-size: 1.5em;
  color: #666;
  margin-top: 20px;
}

/*fetch open search style */

.unft-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
  padding: 1rem;
  text-align: left;
}

.unft-thumb img {
  border-radius: 4px;
  object-fit: cover;
}

.unft-list-details {
  flex: 1;
}

.unft-list-details h4 {
  margin: 0 0 0.25rem;
}

.unft-list-details p {
  margin: 0 0 0.5rem;
  color: #666;
}

.btn-small {
  font-size: 0.85rem;
  padding: 4px 8px;
}

/* Transitions datas */
/* General Transitions Container */
.general-transitions {
  width: 98%;
  margin: 50px auto 100px;
  max-height: 500px;
  overflow-y: auto;
}

/* General Table Styling */
.general-transitions table {
  width: 100%;
  border-collapse: collapse;
}

.general-transitions th,
.general-transitions td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* Sticky Header for Table */
.general-transitions th {
  position: sticky;
  top: 0;
  background-color: #f2f2f2;
  z-index: 1;
}

/* Hover Effect on Rows */
.general-transitions tr:hover {
  background-color: #f5f5f5;
}

/* Wrapper for Transitions with Scroll */
.transitions-wrapper {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background-color: white;
}

/* Specific Table for Transitions */
.transitions-table {
  width: 100%;
  border-collapse: collapse;
}

.transitions-table th,
.transitions-table td {
  border: 0.5px solid #ccc;
  padding: 7px;
  text-align: left;
  white-space: nowrap;
}

/* Header Styling for Transitions Table */
.transitions-table th {
  background-color: #2e8b57;
  font-weight: bold;
  color: white;
}

/* Link Styling for Table Cells */
.transitions-table td a {
  text-decoration: none;
  color: #007bff;
}

.transitions-table td a:hover {
  text-decoration: underline;
}

/*product sheet */

.product-container {
  width: 90%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}

.product-details {
  width: 45%;
}

.product-details img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.transaction-history {
  width: 50%;
}

/* Register.php //////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.register-container {
  width: 100%;
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #666;
  display: flex;
  flex-direction: column;
}

.register-container .submit-wrapper {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
}

.register-container h1 {
  color: var(--light-blue);
}

.register-container input[type="submit"] {
  max-width: 50% !important;
  margin: auto;
  background-color: var(--yellow-button);
  transition: 0.5s ease;
  color: #111;
}

.register-container input[type="submit"]:hover {
  background-color: var(--yellow-button-hov);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input[type="radio"] {
  margin: 20px 0 0 0;
  transition: 0.5s ease;
}

.form-group input[type="radio"]:checked {
  transform: scale(1.5);
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.toggle-password img {
  width: 22px;
  height: 22px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.toggle-password img:hover {
  opacity: 1;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin-bottom: 10px;
}

input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2em;
  margin: auto;
}

.registerdisclaimer-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 50px;
}

.registerdisclaimer {
  max-width: 1000px;
  width: 100%;
  color: #888;
  font-size: 0.9em;
  margin-top: 20px;
  padding: 20px;
}

.registerdisclaimer ul {
  list-style-type: disc;
  margin-left: 20px;
}

.registerdisclaimer ul li {
  margin-bottom: 10px;
}

.error {
  color: var(--message-error);
  font-size: 0.9em;
  margin-top: 5px;
}

.noview {
  opacity: 0;
}

/* Dashboard  ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.dashboard-container {
  width: 100%;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  display: flex;
}

.profile-bar {
  width: 20%;
  height: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.profile-header {
  padding: 20px;
  min-height: 3vh;
  border: solid 1.5px var(--light-blue);
  color: white;
}

.profile-header img {
  border-radius: 50%;
  width: 75px;
  height: 75px;
  margin-bottom: 10px;
  transition: 0.5s ease;
}

.profile-bar:hover .profile-header img {
  filter: brightness(1.3) saturate(1.5);
  transition: filter 0.5s ease;
}
.profile-bar:hover .profile-header {
  border: solid 1.5px #0ddfcd;
  box-shadow: 0 0 8px #0ddfcd99;
}

.profile-header p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

#user-hash {
  color: var(--acid-green);
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

#user-hash:hover {
  filter: brightness(1.2) saturate(1.1);
  text-shadow: 0 0 8px #05dd3ba9;
}

#hidden-message {
  opacity: 0;
  color: var(--light-blue);
  transition: 0.5s ease;
  font-size: 0.9em;
  margin-bottom: 15px;
}

#user-hash:hover + #hidden-message {
  opacity: 1;
}

.profile-stats ul {
  padding: 0 2px;
  text-align: left !important;
}

.profile-stats li {
  list-style: none;
  color: var(--acid-green);
  font-size: 1em;
}

.dashboard-button-bar {
  margin: 10px auto;
  width: 100%;
  height: auto;
  text-align: left;
  display: flex;
  gap: 5px;
  flex-direction: column;
}

.tree-nav {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.tree-nav li {
  margin: 0.3em 0;
}

.tree-nav a {
  color: var(--light-blue);
  text-decoration: none;
}

.tree-nav .pink-accent {
  color: var(--pink);
  text-decoration: none;
}

.tree-nav .pink-accent:hover {
  color: var(--acid-green) !important;
  text-shadow: 0 0 8px #70da19d8;
}

.tree-nav a:hover {
  color: var(--yellow-button);
  text-shadow: 0 0 8px #fbff00a9;
}

.main-content {
  width: 80%;
  padding: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* espaciado entre botones */
  padding: 10px;
}

.filter-bar {
  padding: 10px 16px;
  flex: 1 1 auto;
}

.series-advise {
  min-width: 100%;
  padding: 2px;
  position: relative;
  text-decoration: underline;
  margin: 0;
  font-size: 0.8em;
  color: #777;
}

.certified-ideas-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
}

.certified-idea-item {
  display: flex;
  flex-direction: row;
  padding: 0.75em 0;
  border-bottom: 1px solid #ccc;
  text-align: left;
  justify-content: space-between;
}

.certified-idea-item:hover {
  background-color: #555;
  color: #fff;
}

.certified-idea-item a {
  color: var(--light-blue);
  text-decoration: underline;
}

.certified-idea-item a:hover {
  color: #fff;
  text-decoration: none;
}

.certified-idea-item span {
  display: flex;
  margin-right: 20px;
}

.certified-idea-item span:first-child {
  width: 350px;
  max-width: 350px;
  word-wrap: break-word;
  margin-right: 20px;
}

.certified-idea-item span:last-child {
  margin-left: auto;
  text-align: right;
}

@media screen and (max-width: 900px) {
  .certified-idea-item {
    flex-direction: column;
  }
}

@media screen and (min-width: 1200px) {
  .filter-bar {
    max-width: 70%;
    margin: auto;
  }
}

@media screen and (max-width: 1199px) {
  .dashboard-container {
    flex-direction: column;
    padding: 10px;
  }

  .profile-bar {
    width: 100%;
    margin-bottom: 20px;
    flex-direction: row;
  }

  .tree-nav {
    padding: 20px;
  }

  .main-content {
    width: 100%;
    padding: 10px;
  }

  .dashboard-button-bar {
    flex-direction: column;
    gap: 10px;
  }

  .dashboard-button-bar button {
    min-width: 100%;
  }

  .section h2 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .profile-bar {
    flex-direction: column;
  }

  .tree-nav {
    padding: 0;
  }
}

@media screen and (max-width: 400px) {
  .filter-bar button {
    width: 40%;
    min-height: 60px;
  }

  .search-form button,
  .search-form input[type="text"] {
    width: 100%;
  }
}

@media screen and (min-width: 401px) {
  .search-form input[type="text"] {
    width: 80%;
  }
}
#treeNavHandler {
  padding: 10px;
  background-color: var(--acid-green);
  cursor: pointer;
  color: white;
  text-align: center;
  border-radius: 5px;
  border: solid 0.5px;
  transition: all 0.3s ease;
}

.shownTreeNav {
  margin-top: 1em;
  max-height: 500px;
  opacity: 1;
}

#treeNavHandler:hover {
  background-color: var(--light-blue);
}

.action-bar {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.action-bar select,
.action-bar button {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
}

.action-bar button {
  cursor: pointer;
  color: white;
}

.dashboard-sections {
  margin-top: 30px;
}

.dashboard-sections h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: var(--pink);
}

.selectors {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.selector,
.filter-button {
  min-width: 120px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.selector {
  background-color: var(--yellow-button);
  color: white;
}

.filter-button {
  background-color: var(--acid-green);
  color: white;
}

.selector:hover {
  background-color: var(--yellow-button-hov);
}

.filter-button:hover {
  background-color: var(--light-blue);
}

.btn-selected {
  background-color: var(--yellow-button-hov);
}

.follow-button {
  background-color: var(--yellow-button);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
}

.follow-button:hover {
  background-color: var(--yellow-button-hov);
}

#queriesResults {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
#queriesResults.fade-out {
  opacity: 0;
}

/*spinner dashboard */

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
  display: block;
}

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

/*form de busqueda */

.search-form {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Cuando se muestra (activo) */
.search-form.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.search-form button,
.search-form input[type="text"] {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-form button {
  cursor: pointer;
}
/*Protect_ideas ////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.page-column-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 5vh auto 10vh;
  padding: 40px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: left;
  color: rgb(133, 133, 133);
  transition: all 0.5s ease;
}

.hero-block h1 {
  color: var(--light-blue) !important;
}

.tagline {
  color: var(--pink-hover) !important;
}

.info-block {
  width: 100%;
  padding: 15px;
  border: solid;
}

.submit-button {
  padding: 12px 24px;
  font-size: 1em !important;
  background-color: var(--yellow-button);
  color: #111;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 300px;
  margin: auto;
}

.submit-button:hover {
  color: var(--yellow-button-hov);
  scale: 1.1;
  color: #111 !important;
}

.green-accent {
  color: var(--acid-green);
}

.light-blue {
  color: var(--light-blue);
}

.pink {
  color: var(--pink-hover);
}

.red {
  color: var(--message-error);
}

.centered {
  text-align: center !important;
}

#notes {
  width: 100%;
  height: 120px;
  resize: vertical;
}

/*Esconde secciones y pestaña*/

.hidden {
  display: none !important;
}

.flex {
  display: flex;
}

.flexColumn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 80%;
  margin: auto;
}

.displayBlockM20 {
  display: block;
  margin-top: 20px;
  width: 100%;
}

.hiddenBlock {
  display: none;
}

.displayBlock {
  display: block;
}

.displayBlockSpaced {
  display: block;
  max-width: 60%;
  margin: 50px auto;
}

.smallGrey {
  display: block;
  margin-top: 5px;
  color: gray;
}

.noneTop {
  display: none;
  margin-top: 10px;
}

.unft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Siempre 4 columnas iguales */
  gap: 20px;
  /* Espacio entre las tarjetas */
}

.unft-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: box-shadow 0.3s ease-in-out;
}

.unft-card img {
  width: 100%;
  height: auto;
  max-width: 200px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 10px;
}

.unft-card p {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
}

/* Efecto al pasar el cursor sobre la tarjeta */
.unft-card:hover {
  transform: scale(1.05);
  /* Agrandar un poco la tarjeta */
}

/* Estilo específico para la tarjeta de "Ver más" */
.view-more-card {
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.view-more-content {
  text-align: center;
}

.view-more-content h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.view-more-content .button {
  background-color: var(--acid-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.view-more-content .button:hover {
  background-color: #167947;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  /* Mantener el color del texto */
}

.card-link:hover {
  opacity: 0.9;
}

.unft-card .description {
  word-wrap: break-word;
  /* Permite que las palabras largas se dividan */
  overflow-wrap: break-word;
  /* Alternativa para asegurar la ruptura de líneas */
  white-space: normal;
  /* Permite que el texto se ajuste en múltiples líneas */
}

.input-valid {
  border-color: #28a745 !important;
  outline: none;
}

.input-error {
  border-color: #dc3545 !important;
  outline: none;
}

/* UNFT-SERVICES //////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.services-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  padding: 3em;
  border-radius: 5px;
  color: #111;
  background-color: white;
  margin: 50px auto;
}

.services-container h3 {
  color: var(--pink-hover);
}

.services-container h2 {
  color: var(--light-blue);
}

/*datasheet /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.datasheet-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.main-image {
  width: 90%;
  height: auto;
  margin: 3em auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

#mainImage {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

#mainImage.loaded {
  opacity: 1;
}

.main-image-loader.hidden {
  display: none;
}

.main-image-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #f3f3f3;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  z-index: 1;
}

.ds-gallery-preview {
  display: flex;
  overflow-x: auto;
  gap: 0.5rem;
  margin-top: 1rem;
}

.ds-gallery-preview img {
  height: 80px;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
  image-orientation: from-image;
}

.ds-gallery-preview img:hover {
  transform: scale(1.05);
}

.ds-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.ds-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.ds-modal-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.2em;
  font-family: sans-serif;
  z-index: 10;
}

.ds-modal-content img {
  max-width: 100%;
  max-height: 100%;
}

.unft-details {
  margin-top: 2rem;
}

.unft-details a {
  color: var(--light-blue);
}

.unft-details h2 {
  color: var(--yellow-button);
}

.unft-details a:hover {
  color: var(--acid-green);
}

.unft-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.unft-description {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.unft-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unft-meta li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #9b9b9b;
}

#fullscreenPreview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#fullscreenPreview img {
  max-width: 95vw;
  max-height: 95vh;
  border-radius: 8px;
  box-shadow: 0 0 20px #000;
  transition: transform 0.3s ease;
}
#fullscreenPreview.show {
  display: flex;
}

.media-viewer {
  margin: 20px auto;
  padding: 15px;
  border-radius: 8px;
  max-width: 90%;
  background-color: #202020;
}
.media-viewer video,
.media-viewer audio,
.media-viewer embed {
  width: 100%;
  max-width: 100%;
  border-radius: 4px;
}

.price-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.price-wrapper {
  display: flex;
  gap: 15px;
  flex-direction: row;
  align-items: center;
}
.price-value {
  background-color: var(--acid-green);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.buy-modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-modal.hidden {
  display: none;
}

.buy-modal-content {
  background-color: #fff;
  padding: 2em;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  color: #666;
}

.buy-modal-close,
.offer-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.buy-options {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5em;
}

.buy-options button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--acid-green);
  color: white;
  font-weight: bold;
  transition: background 0.3s ease;
}

.buy-options button:hover {
  background-color: #27ae60;
}

@media (min-width: 768px) {
  .ds-gallery-preview img {
    height: 100px;
  }

  .unft-title {
    font-size: 2rem;
  }
}

#buyerMode {
  min-height: 100px;
  margin-top: 50px;
}

#ownerMode,
#buyerMode {
  min-height: 100px;
  margin-top: 50px;
}

#buyerMode ul,
#ownerMode ul {
  padding: 0;
  margin: 0;
}

#buyerMode li,
#ownerMode li {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.golden_bg {
  padding: 5px;
  border-radius: 4px;
  text-shadow: 0 0 1px gray;
  background: linear-gradient(90deg, #d4af37, #f5d76e, #fff8dc, #d4af37);
  color: #645b4a;
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}
.pink_bg {
  padding: 5px;
  border-radius: 4px;
  text-shadow: 0 0 1px gray;
  background: linear-gradient(90deg, #f03eb1, #ff5cbf, #ffe8f8, #f03eb1);
  color: #464646;
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}

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

/* Buy Section ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.buy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  width: 100%;
  max-width: 600px;
  padding: 3em;
  border-radius: 15px;
  color: #111;
  background-color: white;
  margin: 50px auto;
}

.buy-container .publish_form {
  display: flex;
  margin: auto;
  margin-top: 3rem;
}

.buy-container h3 {
  color: var(--pink-hover);
}

.buy-container h2 {
  color: var(--light-blue);
}

.stripeImg {
  display: flex;
  margin: auto;
  justify-content: center;
  margin-top: 3rem;
}

.stripeImg img {
  max-width: 100%;
}

/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
/* fales popup */

.sale-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #555;
  color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  max-width: 220px; /* Limita el ancho */
  line-height: 1.4; /* Mejora legibilidad */
  word-wrap: break-word; /* Forza salto de línea si es necesario */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  font-size: 15px;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.sale-popup.fade-out {
  opacity: 0;
}

/*white paper / launchpad ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.whitepaper {
  width: 100%;
  padding: 20px;
}

.whitepaper-nav {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.whitepaper-nav a {
  color: gray;
  font-weight: bold;
}

.whitepaper-nav a:hover {
  color: var(--pink-hover);
}

#tokenomics img {
  max-width: 80%;
  margin: auto;
}

@media screen and (max-width: 780px) {
  .whitepaper-nav {
    gap: 10px;
    flex-direction: column;
    text-align: left;
  }
}
