@import url("https://fonts.googleapis.com/css2?family=Boldonse&family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;1,6..96,400&display=swap");


:root {
  --white: white;
}
/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #C08CDB #fff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #C08CDB;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #C08CDB;
    border-radius: 0px;
    border: 3px solid #C08CDB;
  }
  
/* Výchozí stav: skryté */
#sidebar,
#topbar,
#home-section,
#login-button,
.section {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Pokud chceš i plynulý přechod z 0, 
     můžeš zvážit i pointer-events: none atd. */
}

/* Viditelný stav */
#sidebar.visible,
#topbar.visible,
.section.visible {
  display: flex;   
  opacity: 1;
}

#home-section.visible {
  display: block;    
  opacity: 1;
}

#login-button.visible {
  display: block;  
  opacity: 1;
}

body {
    margin: 0;
    background-color: #fff; 
    color: #000; 
    font-family: "Bodoni Moda", serif;
}
p {
  line-height: 1.8;
  font-size: 15px;
  font-weight: 300;
  font-family: "Bodoni Moda", serif;
}
span.grey {
  color: #474747;
}
h1 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  width: 100%;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #d0d0d0;
  text-transform: uppercase;
}
header h1 {
  text-transform: none;
  font-family: "Boldonse", sans-serif !important;
  line-height: 1.4;
}
h2,h3,h4 {
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
}
li {
  line-height: 1.8;
}
/* Sidebar stylizace */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #110f0f;
}
#sidebar:after {
    background: #C08CDB;
    background: linear-gradient(180deg, #fff0, #C08CDB 50%, #fff0);
    content: "";
    height: 100%;
    opacity: .25;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
}
#sidebar .socials {
  display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      margin-right: auto;
      margin-left: 20px;
      margin-top: 15px;
}
.toggle-btn {
  cursor: pointer;
  padding: 10px;
  font-size: 16px;
  margin: 0;
  background: none;
  border: none;
  color: white;
}

.toggle-btn:hover {
}

/* Skryté submenu */
.submenu {
  max-height: 0; /* Výchozí výška = neviditelné */
  overflow: hidden; /* Skryje obsah při zavírání */
  transition: max-height 0.3s ease-in-out; /* Plynulé roztahování */
  padding: 0;
  margin-top: 5px;
  list-style: none;
}

.submenu.show {
  max-height: 1000px; /* Nastavíme dostatečně velkou výšku pro obsah */
}

.menu-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sidebar a {
  color: inherit;
  text-decoration: none;
  margin-right: 15px;
}
#sidebar a img {
  width: 18px;
  height: 18px;
}
#sidebar h2 {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
}
#sidebar h3 {
    width: 300px;
    margin: 0;
    margin-bottom: 0px;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: "Bodoni Moda", serif;
    text-transform: none;
}
#sidebar h3 img {
  margin-right: 10px;
  height: 18px;
  width: 18px;
}
#sidebar .logo {
  font-family: "Boldonse", sans-serif;
    position: relative;
    height: 80px;
    width: 300px;
    display: flex;
    flex-direction:row;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 20px;
    margin-bottom: 25px;
    color: #fff;
    font-size: 14px;
}
#sidebar .logo span.circle {
  width: 36px;
  height: 36px;
  background-color: #C08CDB;
  border-radius: 8px;
  margin-right: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#sidebar .logo span.circle img {
  width: 24px;
  height: 24px;
}
#sidebar .logo span {
  font-weight: 400;
    font-size: 16px;
    display: grid;
    margin-left: 10px;
    line-height: 1.2;
}
#sidebar .logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
#sidebar ul {
    list-style: none;
    padding: 0;
    width: 250px;
}
#sidebar ul li::after {
  content:"";
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0%,0%);
  width: 1px;
  height: 100%;
  background: #747474;
}
#sidebar ul li:nth-last-child(1)::after {
  height: 50%;
}
#sidebar ul li::before {
  content:"";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0%,-50%);
  width: 10px;
  height: 1px;
  background: #747474;
}

#sidebar ul li {
    margin-bottom: 5px;
    padding: 0px 10px;
    line-height: 1.4;
}

#sidebar ul li.disable {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

#sidebar ul li {
    text-decoration: none;
    color: #a1a1a1;
    font-weight: 300;
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0px 15px 20px;
    transition: all 0ms ease;
    position: relative;
    margin: 0px 0px;
    cursor: pointer;
}
#sidebar ul.submenu-none {
  width: 300px;
  padding: 5px 20px;
}

#sidebar ul.submenu-none li {
  padding: 5px 0px 25px 0px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

#sidebar ul.submenu-none li::after {
  display: none;
}
#sidebar ul.submenu-none li:nth-last-child(1)::after {
  display: none;
}
#sidebar ul.submenu-none li::before {
  display: none;
}


#sidebar ul li.active {
    transition: all ease 0.3s;
    color: #fff;
}
#sidebar ul li:hover{
    color: #fff;
}

#sidebar ul li:hover:after {
    opacity: 1;
}
#sidebar ul li.active img {
    filter: grayscale(0);
}
#sidebar ul li:hover img {
    filter: grayscale(0);
}
#sidebar ul li img {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    filter: grayscale(1);
}
#sidebar .count {
    background: #C08CDB;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 15px;
}
/* Horní menu stylizace */
#topbar {
    position: fixed;
    top: 0;
    left: 301px;
    right: 0;
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 70px;
    z-index: 99;
}
.alert-button {
    background-color: transparent;
    cursor: pointer;
    margin-right: 15px;
    padding: 10px 15px;
    border-radius: 14px; 
    position: relative;
}
.alert-button img {
    width: 16px;
    height: 16px;
}

.alert-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #C08CDB;
  color: #000;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 8px;
}

.account-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    background-color: transparent;
    color: #000;
    padding: 10px 15px;
    border-radius: 30px; 
}
button.add-funds {
    margin: 0;
    padding: 10px 15px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
}
button.add-funds #credit-count {
    margin-right: 5px;
}

button.add-funds img {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}
.account-info .hr-height {
    width: 1px;
    height: 16px;
    background-color: #494949;
}
.account-info img {
    width: 16px;
    height: 16px;
}
#public-key {
    font-size: 14px;
    background-color: transparent;
    color: #000;
    letter-spacing: 1px;
}

#logout-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
}

/* Obsah stránky */
#content {
    margin: 0px 0px 0px 300px;
    padding: 0px;
}
#content.logout {
  margin: 0;
}

.bots-table {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    border-top: 1px solid #d0d0d0;
    width: 100%;
}
.table-responsive {
  width: 100%;
}
.bots-container li {
    padding: 20px 0px;
    border-radius: 0px;
    margin-bottom: 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: transform 0.2s;
    border-bottom: 1px solid #d0d0d0;
}
.bots-table .bot-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.bots-container li:hover {
    transform: scale(1.0);
}

.bots-table .bot-actions strong {
    color: #ffffff;
    margin-right: auto;
    font-size: 14px;
    font-weight: 400;
}

.bots-table .bot-actions button {
    background: transparent;
    border: none;
    width: 50px;
    height: 30px;
    color: #000;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
    cursor: pointer;
    transition: opacity 0.3s;
}
.bots-table .bot-actions button:hover {
    background: transparent;
    color: #000;
}
.bots-table .bot-actions button:hover img {
    filter: brightness(0);
}
.bots-table .bot-actions button img {
    width: 16px;
    height: 16px;
}

.bots-table .bot-actions button:hover {
    opacity: 0.9;
}

.bots-table .bot-actions .btn-danger {
    background: #f85149;
    color: #ffffff;
}

.bots-table .bot-actions .btn-danger:hover {
    opacity: 0.9;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-indicator.running {
    background-color: green;
}

.status-indicator.stopped {
    background-color: red;
}

.status-indicator.unknown {
    background-color: gray;
}
/* Formulář */
form {
    background-color: #fff;
    color:#000;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
}

form label {
    display: block;
    font-size: 12px;
    color: #000;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
form label small {
    display: inline-block;
    margin-left: 10px;
}
form label small a {
    display: flex;
    justify-content: center;
    align-items: center;
    color:#aaa;
}
form label small img {
    width: 16px;
    height: 16px;
    margin-right: 3px;
}
form input,
form textarea {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    background-color: transparent;
    color: #000;
    font-size: 14px;
}

form textarea {
    height: 100px;
    resize: none;
}

form button {
    background: #C08CDB;
    border: none;
    color: #060610;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s;
    margin-top: 15px;
}

/* Přechody a animace */
button,
a {
    transition: all 0.3s ease;
}

.section-content {
    margin: 80px 50px 20px 50px;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.section h2 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.section h2 span.cost {
    color: #5e5e5e;
    font-family: "Bodoni Moda", serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
}
button.btn-secondary {
    background: #C08CDB;
    border: none;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s;
    margin-top: 25px;
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
button.btn-secondary img {
    width: 16px;
    height: 16px;
    margin-left: 10px;
}
/* Modal background */
.modal {
    display: none;
    position: fixed;
    z-index: 101;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Poloprůhledné pozadí */
    backdrop-filter: blur(10px); /* Rozmazání pozadí */
    justify-content: center;
    align-items: center;
}

/* Modal obsah */
.modal-content {
    padding: 0px;
    border-radius: 14px;
    width: 100%;
    max-width: 740px;
    position: relative;
    max-height: 90%;
    overflow: auto;
    border: 1px solid #303335;
}

/* Zavírací tlačítko */
.close {
  position: absolute;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 15px;
  right: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.close img {
    width: 22px;
    height: 22px;
}
.modal h3 {
  font-size: 18px;
  margin-bottom: 25px;
  margin-top: 15px;
  width: 100%;
}
.modal .button-box-modal {
    display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: flex-end;
      margin-top: 15px;
}
.modal .button-box-modal span {
    font-size: 12px;
    margin-bottom: 10px;
    margin-right: 10px;
    color: #717171;
}
.modal .button-box-modal button {
  margin-top: 0px;
}
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #62EA71; /* Zelené pozadí */
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.notification.show {
    display: block;
    animation: fadeOut 4s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.payment-content {
    background-color: #101112;
    border: 1px solid #303335;
    color: #fff;
    padding: 35px;
    border-radius: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    max-width: 640px;
}
.payment-content .close img {
  margin-bottom: 0;
}
.payment-step {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    
}
.payment-content img {
    margin-bottom: 10px;
}

.payment-step p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #8d8d8d;
}

.spinner {
    filter: invert(1);
    width: 40px;
    height: 40px;
}

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

.advanced-settings {
    width: 100%;
    transition: height 0.3s ease-out, opacity 0.3s ease-out;
}

.advanced-settings.hidden {
    height: 0;
    opacity: 0;
}

.advanced-settings.visible {
    max-height: 400px; /* Nastavte podle potřeby */
    height: 100%;
    opacity: 1;
}

button.light-btn {
    background: none;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

button.light-btn img {
    width: 20px;
    height: 20px;
    margin-right: 7px;
}
.advanced-settings-btn {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-right: auto;
    margin-top: 15px;
}

.advanced-settings input, .advanced-settings textarea {
    width: 100%; 
    box-sizing: border-box; 
}

/* Home */
#home-section {
    width: 100%;
    background-color: #1A151F;
    color: #fff;
}
header h1 {
  border:none;
  font-size: 126px;
  padding: 0;
  font-weight: 500;
  margin-bottom: 45px;
}
header p {
  font-size: 18px;
  color: #eedbf5;
  max-width: 80%;
}

header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFF6F7;
    background-color: #1A151F;
    text-align: center;
    overflow: hidden;
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99;
  text-align: center;
  width: 100%;
  max-width: 960px;
  color: #fff;
}

canvas#neuro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.95;
    z-index: 0;
}

.c-scrolldown {
  width: 1px;
  height: 60px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  overflow: hidden;
  z-index: 3;
  display: none;
}

.c-scrolldown .c-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #c0c0c09f 50%, rgba(195, 48, 48, 0) 50%);
  background-position: 0 -60px;
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
  0% {
      background-position: 0 -60px;
  }

  75% {
      background-position: 0 0;
  }

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

.next {
  position: absolute;
  bottom: 35px;
  z-index: 2;
}

.spinner {
  animation: rotator 3s linear infinite;
}

.spinner-arrow {
  animation: vertical-translate 3s ease-out infinite;
  position: absolute;
  margin-top: -10px;
  left: 15px;
}

@keyframes rotator {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(250deg);
  }
}

.spinner .path {
  stroke-dasharray: 245;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: #8f8f8f;
  animation: dash 3s linear infinite;
}

@keyframes dash {
  0% {
      stroke-dashoffset: 245;
  }

  70% {
      stroke-dashoffset: 61.25;
      transform: rotate(205deg);
  }

  100% {
      stroke-dashoffset: 245;
      transform: rotate(540deg);
  }
}

@keyframes vertical-translate {
  0% {
      opacity: 0;
      top: -20%;
  }

  25% {
      opacity: 1;
      top: 50%;
  }

  75% {
      opacity: 1;
      top: 50%;
  }

  100% {
      opacity: 0;
      top: 120%;
  }
}

@-webkit-keyframes dot {
  0% {
      left: 0;
  }

  50% {
      left: 88px;
  }

  100% {
      left: 0;
  }
}

@keyframes dot {
  0% {
      left: 0;
  }

  50% {
      left: 88px;
  }

  100% {
      left: 0;
  }
}

canvas {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* INTRO */
.intro {

}
.intro-content {
  width: 100%;
  max-width: 1240px;
  margin: 140px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.intro-box {
  padding-right: 65px;
}
.intro-box-img {
  position: relative;
  width: 100%;
  max-width: 1240px;
  border-radius: 14px;
}
.intro-box-img img {
  width: 100%;
  position: relative;
  z-index: 2;
}
.intro-box-img::after {
  content: "";
  position: absolute;
  left: 50%;               /* Zarovnáme střed pseudo-elementu s prostředkem tlačítka */
  bottom: 30px;            /* Umístění těsně pod tlačítkem – hodnotu lze doladit */
  transform: translateX(-50%);  /* Posuneme pseudo-element přesně na střed */
  width: 75%;              /* Šířka stínu bude 70% šířky tlačítka */
  height: 20px;             /* Výška stínu – lze upravit dle potřeby */
  background-color: #C08CDB; /* Zelená barva stínu */
  filter: blur(7px);       /* Rozmazání pro jemný efekt */
  border-radius: 50%;      /* Zaoblení, aby stín měl zakulacené okraje */
  z-index: 1;             /* Umístí stín pod tlačítko */
}
.intro-box h3 {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 45px;
}
.intro-box p {
  font-size: 14px;
  color: #bababa;
}
.intro-box img {
  width: 100%;
}
  #login-button {
    margin-top: 25px;
  }

  /* TOGGLE SWITCH pro ON/OFF */
  .toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin-right: 15px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-inner {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background-color: transparent;
}

.toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.toggle-input:checked + .toggle-label {
    background-color: #62EA71;
}

.toggle-input:checked + .toggle-label .toggle-knob {
    transform: translateX(20px);
}

/* Tooltip container */
.tooltip-icon {
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    color: #000;
    border: 1px solid #d0d0d0;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    margin-left: 5px;
    position: relative;
}

/* Tooltip text */
.tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 50%;
    left: 30px; /* Posun tooltipu doprava */
    transform: translateY(-50%);
    background-color: #303335;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;

    /* Důležité úpravy */
    display: inline-block;          /* pro zalamování obsahu */
    min-width: 250px;
    text-align: left;
    max-width: 360px;              /* místo width: 360px; (funguje jako horní limit šířky) */
    white-space: normal;           /* aby se text mohl lámat */
    overflow-wrap: break-word;     /* nebo word-wrap: break-word; */

    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
    z-index: 10;
    font-weight: 400;
}

/* Tooltip arrow */
.tooltip-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px; /* Posun šipky vlevo od textu */
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent #303335 transparent transparent; /* Šipka ukazuje doleva */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}

/* Show tooltip on hover */
.tooltip-icon:hover::after,
.tooltip-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

/* TABLE */
.bots-table {
    width: 100%;
    color: #000;
    background-color: #fff;
    margin: 0px 0px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    border-collapse: collapse;
}

/* Hlavička tabulky */
.bots-table thead {
    background-color: #000000;
}

.bots-table thead th {
    text-align: left;
    padding: 15px;
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
    border-bottom: 0.5px solid rgb(29, 31, 33);
}

/* Řádky tabulky */
.bots-table tbody tr {
    border-bottom: 1px solid #d0d0d0;
    transition: background-color 0.2s;
}

.bots-table tbody tr:last-child {
    border-bottom: none;
}

.bots-table tbody tr:hover {
    background-color: #cccccc;
}

/* Buňky tabulky */
.bots-table tbody td {
    padding: 15px;
    font-size: 14px;
    color: #000000;
    vertical-align: middle;
    border-bottom: 0.5px solid #1D2021;
    border-right: none;
}

th:last-child {
    text-align: right !important;
}

/* How it works */
.hiw {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    width: 100%;
    background-color: #101112;
    border: 0.5px solid #1D2021;
    border-radius: 14px;
    box-sizing: border-box;
    margin-bottom: 65px;
}
.hiw-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 15px 70px 15px 90px;
    word-wrap: break-word; /* Starší zápis */
    overflow-wrap: break-word;
}
.hiw-box:hover h3 {
    color: #62EA71;
}
.hiw-box div.number {
    font-size: 24px;
    font-weight: 600;
    border-radius: 50%;
    border: 0.5px solid #1D2021;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 35px;
}
.hiw-box:after {
    content:"";
    background-image: url("https://img.icons8.com/ios/50/717171/more-than.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    position: absolute;
    width: 24px;
    height: 24px;
    z-index: 1;
    right: 0px;
}
.hiw-box:last-child:after {
    display: none;
}
.hiw-box h3 {
    font-size: 14px;
    font-weight: 500;
    display: grid;
}
.hiw-box h3 small {
    color: #717171;
    font-weight: 400;
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.6;
    word-wrap: break-word; /* Starší zápis */
    overflow-wrap: break-word;
    word-break: break-all;
}
.hiw-box h3 small b {
    word-wrap: break-word; /* Starší zápis */
    overflow-wrap: break-word;
    word-break: break-all;
}
.hiw-box small a {
    color: #fff;
}

/* FAQ */

/* Kontejner FAQ */
.faq-container {
    margin: 0 auto;
  }

  /* Každá FAQ položka */
  .faq-item {
    background-color: #fff;  /* Tmavší šedá pro oddělení */
    margin-bottom: 5px;
    border-radius: 14px;
    overflow: hidden;
    border:1px solid #d0d0d0;
  }
  
  /* Tlačítko s otázkou */
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    color: #000;
    width: 100%;
    font-weight: 600;
    padding: 20px 20px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;              /* odstranění focus outline */
  }
  
  /* Symbol plus/mínus */
  .faq-icon {
    margin-left: 10px;
    font-weight: 400;
    color: #888; /* Lehce světlejší šedá */
    transition: transform 0.3s;
  }
  
  /* Po najetí myší */
  .faq-question:hover .faq-icon {
    color: #000;
  }
  
  /* Odpověď (skrytá/animovaná výška) */
  .faq-answer {
    max-height: 0;             /* Výchozí výška 0 */
    opacity: 0;                /* Výchozí neviditelná */
    transition: all 0.4s ease; /* Plynulá animace výšky a opacity */
    overflow: hidden;          /* skryje obsah, když je max-height 0 */
    padding: 0 20px;           /* vnitřní odsazení (vodorovně) */
    font-size: 14px;
    color: #000000;
  }
  .faq-answer a {
    color: #000;
  }
  /* Stav, kdy je položka otevřená (přidáme třídu .open v JS) */
  .faq-item.open .faq-answer {
    max-height: 200px;         /* Nastavíme dostatečnou výšku, nebo auto + JS (viz níže) */
    opacity: 1;
    padding-bottom: 15px;      /* trošku místa pod textem */
  }
  
  /* Rotace ikony plus na mínus */
  .faq-item.open .faq-icon {
    transform: rotate(45deg);  /* “+” se po otočení o 45° promění v “x”, ale působí jako “-” */
  }
  .faq-alert {
    padding-left: 45px;
    position: sticky;
    top: 80px;
  }
  .faq-alert-box {
    background-color: #fff;  /* Tmavší šedá pro oddělení */
    margin-bottom: 5px;
    border-radius: 14px;
    padding: 25px;
  }
  .faq-alert-box p {
    color: #717171;
  }
  .faq-alert-box a.btn-secondary {
    width: 100%;
    margin-bottom: 0;
    background: #C08CDB;
    border: none;
    color: #000;
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .faq-alert-box img {
    width: 34px;
    height: 34px;
    margin-bottom: 15px;
  }

  /* FUNDS content */
  .funds-stats {
    display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        padding: 45px 45px 45px 45px;
        border: 1px solid #d0d0d0;
        border-radius: 14px;
        background: #fff;
  }
  .funds-info-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 65px;
  }
  .funds-stats-around {
    padding-right: 15px;
  }
  .funds-stat-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 0.5px solid #d0d0d0;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .funds-stat-box:last-child {
    border:none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .stat-label {
    font-size: 14px;
    color: #8d8d8d;
    margin-bottom: 10px;
  }

  .stat-value {
    font-size: 26px;
    font-weight: 600;
  }
  .stat-value small {
    font-size: 14px;
    color: #575757;
    font-weight: 400;
  }

  .add-funds-around {
    padding-left: 15px;
  }
  .add-funds-box {
    background-color: #120F0F;
    border: 1px solid #d0d0d0;
    color: #fff;
    border-radius: 14px;
    padding: 45px 45px 45px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .add-funds-box:after {
    display: block;
    content: "";
    position: absolute;
    height: 800px;
    width: 800px;
    border-radius: 100%;
    right: -300px;
    bottom: -300px;
    opacity: 0.5;
    background: radial-gradient(circle, #C08CDB 0%, rgba(52,255,0,0) 45%);
  }
  .add-funds-box:before {
    display: block;
    content: "";
    position: absolute;
    height: 800px;
    width: 800px;
    border-radius: 100%;
    left: -400px;
    top: -400px;
    opacity: 0.5;
    background: radial-gradient(circle, #C08CDB 0%, rgba(52,255,0,0) 45%);
  }

  .add-funds-box button {
    background: #C08CDB;
    color: #000;
    margin-top: 25px;
    z-index: 1;
    margin-bottom: 0;
  }
  .add-funds-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
    z-index: 1;
  }

  .add-funds-box p {
    z-index: 1;
  }
  .add-funds-box .button-box {
    z-index: 1;
    width: 100%;
    display: flex;
  }
  .funds-stat-around:nth-child(2) {
    padding-left: 15px;
}
  .payment-content .price-summary {
    color:#C08CDB;
  }
  .payment-content button {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  .payment-content button img {
    margin-bottom: 0;
    margin-left: 10px;
  }
  .payment-content .step-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 15px;
    width: 100%;
  }
  .payment-content h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .payment-content .step-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .payment-content .step-box a.adress {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    font-weight: 600;
  }
  .payment-content .step-box a.adress img {
    height: 18px;
    width: 18px;
    margin-left: 10px;
    margin-bottom: 0;
  }
.payment-content .number {
  font-size: 18px;
    font-weight: 600;
    margin-right: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    color:#62EA71;
}
.payment-content #credits-input {
    width: 100%;
    padding: 15px 10px;
    margin-bottom: 15px;
    border: 1px solid #2F3936;
    border-radius: 8px;
    background-color: #0F1113;
    color: #ffffff;
    font-size: 14px;
}
.payment-content small {
  color:#8d8d8d;
  font-size: 12px;
}
.credit-calculator {
  margin-top: 15px;
  width: 100%;
  background: #000000;
  border-radius: 14px;
  padding:15px;
  }
  .credit-calculator label {
    font-weight: 600;
    margin-bottom: 15px;
  }
  .credit-calculator p {
    color: #62EA71;
    margin-bottom: 0;
  }

  /* Instructions */
.side-menu {
    position: sticky;
    top: 60px;              
    height: fit-content; 

  }
  
  /* Odkazy v menu */
  .side-menu ul {
    list-style: none;
    padding: 0;
  }
  
  .side-menu ul li {
    margin-bottom: 10px;
  }
  
  .side-menu a.menu-link {
    color: #8d8d8d;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: color 0.2s;
    position: relative;
    padding-left: 25px;
  }

  .side-menu a.menu-link:hover {
    color: #000;
    text-decoration: underline;
  }
  
  .side-menu a.menu-link.active {
    color: #000;
    text-decoration: underline;
  }

  /* Pravá část (obsah) */
  .content-instructions {
    padding: 0px 20px;
  }
  
  /* Sekce s nějakou mezerou mezi sebou */
  .content-instructions section {
    border-bottom: 0.5px solid #3a3c3d;
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
  
  /* Záhlaví sekcí */
  .content-instructions h3 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .content-instructions .tip {
    padding: 25px;
    width: 100%;
    border: 0.5px solid #1D2021;
    border-radius: 14px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .content-instructions .tip ul {
    margin-bottom: 0;
  }

  .content-instructions ol {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .content-instructions .tip strong {

  }
  .content-instructions a {
    text-decoration: underline;
  }

  /* TRANSACTIONS TABLE */

/* TABLE */
table {
  width: 100%;
  color: #000;
  background-color: #fff;
  margin: 0px 0px;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid rgb(29, 31, 33);
  border-collapse: collapse;
}

/* Hlavička tabulky */
.transaction-section {
  width: 100%;
}

table thead {
  background-color: #000000;
}

table thead th {
  text-align: left;
  padding: 15px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #d0d0d0;
}

/* Řádky tabulky */
table tbody tr {
  border-bottom: 1px solid #d0d0d0;
  transition: background-color 0.2s;
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody tr:hover {
  background-color: #c1c1c1;
}

/* Buňky tabulky */
table tbody td {
  padding: 15px;
  font-size: 14px;
  color: #000000;
  vertical-align: middle;
  border-bottom: 0.5px solid #1D2021;
  border-right: none;
}

#transaction-table th:last-child {
  text-align: left !important;
}
table a {
  color: #000;
}

/* Changelog */
.changelog-content {
  background-color: #101112;
    border: 1px solid #303335;
    color: #fff;
    padding: 35px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    max-width: 540px;
}

.changelog-content h2 {
  font-size: 22px;
  margin-bottom: 25px;
}
.changelog-content pre {
  margin-bottom: 0;
}


/* TUTORIALS */
.tutorial-container {
  width: 100%;
  text-align: left;
  margin-bottom: 65px;
  border-bottom: 1px solid #1D2021;
}

.tutorial {
  max-height: 200px;
  overflow: hidden;
  transition: height 0.4s ease-in-out;
  border-radius: 14px;
  padding: 20px 0px;
  margin-top: 0px;
  margin-bottom: 25px;
  position: relative;
}
.tutorial:after {
  content:"";
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(9,22,18,1) 0%, rgba(9,22,18,0) 100%);
  position: absolute;
}
.tutorial.toggled:after {
  display: none;
}
.tutorial h3 {
    margin-bottom: 15px;
    color: #62EA71;
    font-size: 18px;
  }

  .tutorial .tip {
    padding: 25px;
    width: 100%;
    background-color: #101112;
    border: 0.5px solid #1D2021;
    border-radius: 14px;
    margin-top: 35px;
    margin-bottom: 35px;
  }

  .tutorial .tip ul {
    margin-bottom: 0;
  }

  .tutorial ol {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .tutorial .tip strong {
    color: #62EA71;
  }
  .tutorial a {
    color: #62EA71;
  }
.tutorial.toggled {
  padding: 20px 0px;
  height: 100%;
  max-height: 20000px;
}


/* Burger Menu */
#burger-menu {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 25px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  z-index: 1100;
}

#burger-menu .line {
  width: 25px;
  height: 1px;
  margin: 3px 0px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animace pro otevřený burger */
#burger-menu.toggled .line:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}

#burger-menu.toggled .line:nth-child(2) {
  transform: rotate(-45deg) translateY(-5px);
}

/* Skrytí druhé čáry při přeměně na křížek */
#burger-menu.toggled .line:nth-child(2) {

}

/************************ HOME PAGE ************************/
.pc-mockup {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -100px;
  z-index: 3;
  overflow: hidden;
}

.pc-mockup img {
  width: 100%;
  max-width: 1240px;
  position: relative;
  z-index: 2;
}

.pc-mockup:before {
  content: "";
  position: absolute;
  height: 1500px;
  width: 1500px;
  border-radius: 100%;
  left: -300px;
  bottom: -700px;
  opacity: 0.5;
  background: radial-gradient(circle, #62EA71 0%, rgba(52, 255, 0, 0) 45%);
}

.pc-mockup:after {
  content: "";
  position: absolute;
  height: 1500px;
  width: 1500px;
  border-radius: 100%;
  right: -300px;
  bottom: -700px;
  opacity: 0.5;
  background: radial-gradient(circle, #62EA71 0%, rgba(52, 255, 0, 0) 45%);
}

.headline {
  width: 100%;
  margin-bottom: 65px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
.headline h2 {
  font-size: 46px;
  margin-bottom: 0;
  padding: 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.headline p {
  color: #eedbf5;
  font-style: italic;
  font-size: 18px;
}
.headline h4 {
  font-size: 16px;
  color:#b2aeb1;
}
.headline h3 {

}
.quote {
  width: 100%;
  margin-top: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 4;
  background-color: #110f0f;
  color: #474747;
  position: relative;
}
.quote p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
  width: 300px;
  height: 50px;
  background-image: url(/static/images/bg-blur-small.png);
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.quote p {
  max-width: 870px;
  background-color: #110f0f;
  text-align: center;
  font-weight: 400;
  position: relative;
}
.quote p span {
  font-style: italic;
  color: #62EA71;
}
.why {
  width: 100%;
  max-width: 1240px;
  padding: 80px 0 80px 0;
  margin: auto;
}

.why-content {
  display: flex;
  flex-wrap: wrap;
}
.why-box-around {
  padding: 0px 15px;
  margin-bottom: 30px;
}
.why-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  padding: 1px;
  background: #1a151f;
  transition: all 400ms ease;
}
.why-box:hover {
  transform: scale(1.05);
}
/* Rozostřený barevný efekt */
.blurred-color {
  position: absolute;
  z-index: 0;
  background-color: #4e405c;
  opacity: 0.5;           /* Můžete upravit průhlednost dle potřeby */
  filter: blur(30px);
  border-radius: 100%;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;   /* Aby efekt nebránil interakcím s obsahem */
}
.why-box-content {
  background: #1a151fcc;
  border-radius: 14px;
  width: 100%;
  height: 100%;
  padding: 35px 25px;
  z-index: 2;
  position: relative;
  text-align: center;
}
.why-box h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.why-box h3 img {
  filter: invert(1);
  opacity: 0.4;
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.why-box p {
  color: #eedbf5;
  margin-bottom: 0;
  font-size: 14px;
}

.why2 {
  width: 100%;
  margin: auto;
  padding: 60px 0px 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.grid {
  width: 100%;
  background-image: linear-gradient(to right, #3df63763 1px, transparent 1px), linear-gradient(to bottom, #3df63795 1px, transparent 1px);
  background-size: 150px 150px;
  position: absolute;
  height: 100%;
  z-index: -1;
  max-height: 1000px;
}

.grid:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 101%;
  height: 101%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, #091612 65%);
  bottom: 0;
  right: 0;
}

.why2-content {
  display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    max-width: 1040px;
}
.why2-box-img {
  padding: 0px 45px;
  position: relative;
}
.why2-box-img:after {
  display: none;
  content: "";
  position: absolute;
  height: 1100px;
  width: 1100px;
  top: -350px;
  left: -500px;
  border-radius: 100%;
  opacity: 0.5;
  z-index: -1;
  background: radial-gradient(circle, #62EA71 0%, rgba(52, 255, 0, 0) 45%);
}
.why2-box-img:before {
  display: none;
  content: "";
  position: absolute;
  height: 700px;
  width: 700px;
  bottom: 100px;
  right: -200px;
  border-radius: 100%;
  opacity: 0.5;
  z-index: -1;
  background: radial-gradient(circle, #62EA71 0%, rgba(52, 255, 0, 0) 45%);
}

.why2-box-img img {
  width: 100%;
}
.why2-box {

}
.why2-box h3 {
  margin-bottom: 25px;
}
.why2-box ul {
margin-bottom: 0;
}
.why2-box ul li {
  position: relative;
  list-style: none;
  line-height: 2;
}
.why2-box ul li:after {
  content:"";
    position: absolute;
    display: block;
    background-image: url("https://img.icons8.com/ios/50/62ea71/more-than.png");
    left: -30px;
    top: 7px;
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
    background-position: center;
}
.why2-float-box {
  position: absolute;
  border: 1px solid #1D2021;
  border-radius: 14px;
  background: rgba(16,17,18,1);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  max-width: 320px;
  height: auto !important;
  border-radius: 14px;
  font-size: 14px;
  padding: 20px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why2-float-box:hover {
  transform: scale(1.02);
}
.why2-float-box:hover h3 {
  color: #62EA71;
}
.why2-float-box h3 {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}
.why2-float-box p {
  color: #8d8d8d;
  margin-bottom: 0;
}
#why2-float-box1 {
  left: -60%;
  top: 15%;
}
#why2-float-box2 {
  right: -60%;
  top: 40%;
}
#why2-float-box3 {
  left: -60%;
  bottom: 15%;
}
/* FOOTER */
footer {
  position: relative;
  padding: 60px 0px 80px;
}
footer p {
  margin-top:70px;
  color: #eedbf5;
  font-size: 12px;
  text-align: center;
}
footer p a {
  color: #fff;
  text-decoration: underline;
}
.footer-content {
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .socials {

}
footer .socials a {
  margin: 0px 20px;
}
footer .socials a img {
  filter: invert(1);
  width: 24px;
  height: 24px;
}
/* NAV HEADER */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 10003;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
nav .nav-content {
  max-width: 1440px;
  width: 100%;
  display: flex;
  padding: 0 15px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
nav ul.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
}
nav ul.menu li {
  list-style-type: none;
}
nav ul.menu li a {
  color: inherit;
  text-decoration: none;
  padding: 10px 15px;
  position: relative;
  font-size: 14px;
}
nav ul.menu li a:hover {
  color: #eedbf5;
}

ul.menu li a img {
  filter: invert(1);
  height: 18px;
  width: 18px;
}
nav .logo {
  position: relative;
  display: flex;
  flex-direction:row;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 15px;
  font-family: "Boldonse", sans-serif;
  font-size: 14px;
}
nav .logo span.circle {
  width: 36px;
  height: 36px;
  background-color: #C08CDB;
  border-radius: 8px;
  margin-right: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .logo span.circle img {
  width: 24px;
  height: 24px;
}

nav .logo img {
height: 40px;
width: 40px;
border-radius: 50%;
}

/* TIMELINE */
.timeline-around {
  margin-bottom: 140px;
}
.timeline ul {
  padding: 0px 0px 50px;
}

.timeline ul li {
  list-style-type: none;
  position: relative;
  width: 1px;
  margin: 0 auto;
  padding-top: 50px;
  background: #4c6951;
  background: linear-gradient(180deg, #fff0, #3df6374e 50%, #fff0);
}

.timeline ul li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: inherit;
  z-index: 1;
}

.timeline ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  padding: 25px;
  border: 1px solid #1D2021;
  border-radius: 14px;
  background: rgba(16, 17, 18, 1);
  color: #8d8d8d;
  font-size: 15px;
}
.timeline ul li div b {
  font-weight: 400;
  color: #fff;
}
.timeline ul li div span {
  padding: 5px 13px;
  background: #62ea71;
  color: #060610;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 15px;
  border-radius: 14px;
}

.timeline ul li:nth-child(odd) div {
  left: 45px;
}
.timeline ul li:nth-child(even) div {
  left: -439px;
}

time {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color:#fff;
  margin-bottom: 2px;
  margin-top: 5px;
}


.timeline ul li::after {
  transition: background 0.5s ease-in-out;
}

.timeline ul li.in-view::after {
  background: #091612;
  border:1px solid #3df6374e;
}

.timeline ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.timeline ul li:nth-child(odd) div {
  transform: translate3d(100px, 0, 0);
}

.timeline ul li:nth-child(even) div {
  transform: translate3d(-100px, 0, 0);
}

.timeline ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .timeline ul li div {
    width: 250px;
  }
  .timeline ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
  
}

@media screen and (max-width: 600px) {
  .timeline ul li {
    margin-left: 20px;
  }
  .timeline ul li div {
    width: calc(100vw - 91px);
  }
  .timeline ul li:nth-child(even) div {
    left: 45px;
  }
}

.timeline-clippy ul li::after {
  width: 40px;
  height: 40px;
  border-radius: 0;
}

.timeline-rhombus ul li::after {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-rhombus ul li div::before {
  bottom: 12px;
}

.timeline-star ul li::after {
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.timeline-heptagon ul li::after {
  clip-path: polygon(
    50% 0%,
    90% 20%,
    100% 60%,
    75% 100%,
    25% 100%,
    0% 60%,
    10% 20%
  );
}

.timeline-infinite ul li::after {
  animation: scaleAnimation 2s infinite;
}

@keyframes scaleAnimation {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.25);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

/* TABLET */
@media (max-width: 768px) {
  #burger-menu {
    display: flex;
  }
  #sidebar {
    top: 80px;
    bottom: 0;
    height: auto;
    width: 275px;
      transform: translateX(-100%);
      transition: transform 400ms ease;
      z-index: 101;
      background-color: #091612; 
  }
  #sidebar.toggled {
      transform: translateX(0%);
  }
  #content {
    margin: 80px 0px 0px 0px;
  }

  .section-content {
    margin: 0;
  }
  .section {
    width: 100%;
  }
  table {
    word-wrap: normal;
    table-layout: auto;
}
#topbar {
  left: 0;
  padding: 5px;
  background-color: #091612; 
}
#topbar #public-key {
  display: none;
}
button.add-funds {
  padding: 5px;
  font-size: 12px;
}
.alert-button {
  padding: 5px;
}
#topbar .account-info .hr-height {
  display: none;
}
.account-info {
  padding: 5px;
}
header h1 {
  font-size: 40px;
}
.funds-stat-around {
  margin-bottom: 45px;
}
.funds-stats {
  overflow: hidden;
}
.faq-alert {
  padding-left: 0;
  margin-top: 45px;
}
.section h2 {
  font-size: 14px;
}
.section h2 span.cost {
  margin-left: 5px;
}
h1 {
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.quote p {
  font-size: 18px;
  max-width: 90%;
}
.why2-float-box {
  position: relative;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  top: auto !important;
  margin: 0;
  margin-bottom: 25px;
  width: 100%;
}
.why2-box-img img {
  margin-bottom: 65px;
}
.timeline ul {
  overflow: hidden;
  padding:0;
}
.headline h2 {
  font-size: 32px;
}
.why-box-around {
  padding:10px !important;
}
nav ul.menu {
  display: none;
}
.headline {
  margin-bottom: 25px;
}
.funds-stat-around {
  margin-bottom: 25px;
}
}

/* MOBILE */
@media (max-width: 480px) {

}

.custom-button {
  position: relative; /* Nutné pro absolutní umístění pseudo-elementu */
      background-color: #fff;   /* Černé pozadí */
      color: #000;              /* Bílý text */
      border: 1px solid white;   /* Bílý okraj */
      border-radius: 30px;       /* Zaoblení rohů */
      padding:15px 30px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      overflow: visible;     
      transition: all 400ms ease !important;
}
.custom-button#login-button-nav {
  padding: 7px 30px;
  margin-left: 15Px;
}
/* Případný hover efekt (volitelné) */
.custom-button:hover {
  background-color: #C08CDB;
  color: #fff;
}
.copy-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
}
.header-content .btn-around {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.header-content .btn-around .custom-button{
  margin: 0 !important;
}
.header-content .btn-around p {
  font-style: italic;
  font-size: 12px;
  margin-top: 5px;
  width: 100%;
  display: grid;
  text-align: center;
  margin-bottom: 5px;
}
.header-content .btn-around .credits-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.header-content .btn-around span.free-credits {
  background-color: #5bbd45;
  color: #fff;
  padding: 3px 15px;
  border-radius: 30px;
  margin-top: 5px;
  font-size: 12px;
}
.copy-button {
    display: flex;
    align-items: center;
    border: 1px solid white; 
    background-color: #FFFFFF; /* Bílé pozadí */
    color: #000000; /* Černý text */
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 400ms ease;
}

.copy-button:hover {
  background-color: #C08CDB;
  color: #fff;
}

.copy-text {
    margin-right: 10px;
}

.copy-icon {
    cursor: pointer;
    width: 16px;
    height: 16px;
    transition: opacity 0.3s;
}

.copy-icon:hover {
    opacity: 0.7;
}
.step {
   position: relative;
   padding: 120px 0 120px 0;
}
.step:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
  bottom: 120px;
  background: linear-gradient(90deg, rgb(26 21 31) 0%, rgb(40 33 47 / 33%) 50%, rgb(26 21 31) 100%);
  z-index: 1;
}
.step-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1240px;
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 150px 0px;
}
.step-content h2 {
  color: #fff;
}

.step-box-around {
  padding: 0px 15px;
}
.step-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 35px;
  text-align: center;
  position: relative;
  z-index: 4;
}

.step-box h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  z-index: 1;
}
.step-box p {
  color: #eedbf5;
  margin-bottom: 0;
  font-size: 14px;
  z-index: 1;
}
.step-box .icon {
  font-size: 200px;
  color: #28202f;
  font-family: "Boldonse", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 400ms ease;
  position: absolute;
  z-index: 0;
} 

p.big {
  font-size: 34px;
  color: #eedbf5;
  font-style: italic;
  margin-top: 25px;
}

.roadmap {
  width: 100%;
  max-width: 1240px;
  padding: 200px 0 200px 0;
  margin: auto;
}

.roadmap-content {
  display: flex;
  flex-wrap: wrap;
}

.roadmap .headline {
  margin-bottom: 15px;
}
.roadmap .quote {
  margin-top: 45px;
}

.coming-soon {
  background: #C08CDB;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 15px;
    font-family: "Bodoni Moda", serif;
}
.menu-item.disabled h3 {
    cursor: not-allowed; /* Kurzor "zakázáno" */
}

.menu-item.disabled {
  margin-bottom: 20px;
}

.video-container {
  width: 100%;
}
video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #dad3de7d;
}