/* vizionari-grafika.css – UPRAVENÉ pre maximálnu responzivitu a štvorcový orbit! */

#vizionari-grafika-wrap {
    width: 100%;
    max-width: 850px;       /* tu nastav rovnakú šírku ako hlavný container stránky, kľudne aj viac */
    aspect-ratio: 1 / 1;    /* vždy štvorcové */
    margin: 1.5em auto 2em auto;
    /* background: url('../assets/planeta-pozadie.webp') center center no-repeat #111c2a; */ /* TOTO BOLO ODSTRÁNENÉ ALEBO ZAKOMENTOVANÉ */
    background-size: cover;
    border-radius: 24px;
    box-shadow: 0 6px 24px #004;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    min-width: 220px;
    min-height: 220px;
    transition: max-width 0.2s;
}

@media (max-width: 900px) {
    #vizionari-grafika-wrap {
        max-width: 98vw;
        min-width: 0;
        min-height: 0;
    }
}

#vizionari-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    position: relative;
    touch-action: none;
    background: transparent;
}

.vizionari-controls {
    display: flex;
    gap: 0.75em;
    align-items: center;
    justify-content: center;
    margin: 1em auto 1.5em auto;
    max-width: 1100px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 1em;
}

.vizionari-controls input[type="text"] {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 80px;
    padding: 0.6em 1em;
    border-radius: 8px;
    border: 1px solid #00cfff;
    background: #161a2b;
    color: #00cfff;
    font-size: 1em;
    max-width: 300px;
}

.vizionari-controls button {
    padding: 0.6em 1em;
    border-radius: 8px;
    border: 1px solid #00cfff;
    background: #0e121f;
    color: #00cfff;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.vizionari-controls button:hover {
    background-color: #00cfff;
    color: #0e121f;
}

/* ========== ZAČIATOK NASTAVENIA POPUP OKNA ========== */
.viz-popup {
    position: absolute; /* JS nastavuje left/top */
    background: linear-gradient(135deg, #172840 80%, #1b354e 100%);
    color: #c3f4ff;
    padding: 18px 26px 18px 26px;
    border-radius: 28px;
    box-shadow: 0 0 30px 12px #00eaffcc, 0 2px 12px 0 #00eaff55;
    z-index: 9999; /* Vysoký z-index pre prekrytie */
    max-width: 410px;
    min-width: 310px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.23s cubic-bezier(.33,1,.68,1), visibility 0.23s;
    display: flex; /* Flex pre vnútorný obsah */
    flex-direction: column;
    gap: 0.95em;
    border: none;
}
/* Animácia pre zobrazenie popupu. Aplikovaná na hlavný viz-popup element */
.viz-popup.active {
    position: fixed; /* centrovanie vo viewporte */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 94vw;
    opacity: 1;
    visibility: visible;
}
.viz-popup-inner {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrovanie obsahu */
    text-align: center;
}
.viz-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.8em;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}
.viz-popup-close:hover {
    background-color: #333;
}
.viz-popup-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #00f2ff;
    box-shadow: 0 0 15px #00f2ff55, 0 0 30px #00f2ff33;
}
.viz-popup-meno {
    font-size: 2em;
    font-weight: 900;
    color: #00eaff;
    margin-bottom: 5px;
    line-height: 1.2;
    text-shadow: 0 0 10px #00eaff66;
}
.viz-popup-popis {
    font-size: 1em;
    color: #c3f4ff;
    line-height: 1.5;
    margin-top: 10px;
    text-align: justify;
    padding: 0 5px; /* Vnútorné odsadenie pre text */
}
.viz-popup-details {
    margin-top: 15px;
    font-size: 0.95em;
    color: #a7e0ff;
    text-align: left; /* Zarovnanie detailov naľavo */
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.viz-popup-details p {
    margin: 3px 0;
}
.viz-popup-details strong {
    color: #d6f6ff;
}

/* Štýl pre obálku "viz-popup-modern" */
.viz-popup-modern {
    background: linear-gradient(135deg, #172840 80%, #1b354e 100%);
    border-radius: 28px;
    box-shadow: 0 0 30px 12px #00eaffcc, 0 2px 12px 0 #00eaff55;
    padding: 20px 25px; /* Väčšie vnútorné odsadenie */
    max-width: 450px; /* Väčšia maximálna šírka */
    width: 100%;
    color: #c3f4ff;
    position: relative;
    z-index: 9999;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Väčšia medzera medzi sekciami */
}

/* Štýl pre hlavičku v "viz-popup-modern" */
.viz-popup-modern-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #00f2ff44; /* Jemná spodná čiara */
    padding-bottom: 15px;
}

/* Štýl pre obrázok v hlavičke "viz-popup-modern" */
.viz-popup-modern-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00f2ff;
    box-shadow: 0 0 12px #00f2ff66;
    flex-shrink: 0; /* Zabraňuje zmenšeniu obrázku */
}

/* Štýl pre textový kontajner v hlavičke "viz-popup-modern" */
.viz-popup-modern-text {
    flex-grow: 1; /* Zaberie zostávajúci priestor */
}

/* Štýl pre "close" tlačidlo v "viz-popup-modern" */
.viz-popup-modern-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.8em;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}
.viz-popup-modern-close:hover {
    background-color: #333;
}

/* Štýl pre meno v "viz-popup-modern" */
.viz-popup-modern-meno {
    font-size: 1.8em;
    font-weight: 900;
    color: #00eaff;
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 0 0 8px #00eaff66;
}

/* Štýl pre popis v "viz-popup-modern" */
.viz-popup-modern-popis {
    font-size: 0.95em;
    color: #c3f4ff;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 0;
}

/* Štýl pre detaily v "viz-popup-modern" */
.viz-popup-modern-details {
    font-size: 0.9em;
    color: #a7e0ff;
    line-height: 1.6;
}
.viz-popup-modern-details p {
    margin: 0;
}
.viz-popup-modern-details strong {
    color: #d6f6ff;
}

/* Štýl pre súčet (badge) v "viz-popup-modern" */
.viz-popup-modern-suma-badge {
    position: absolute; /* Pevná pozícia */
    top: -15px; /* Posunutie nad popup */
    left: 50%; /* Centrovanie horizontálne */
    transform: translateX(-50%); /* Jemné doladenie centrovania */
    background: linear-gradient(135deg, #ff6b6b, #ee4c4c); /* Atraktívny gradient */
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px; /* Zaoblené rohy */
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4); /* Tieň pre hĺbku */
    border: 2px solid #fff; /* Jemný biely okraj */
    z-index: 10000; /* Nad popupom */
}

/* Pre číslo v badge */
.viz-popup-modern-suma-badge span {
    display: inline-block;
    margin-left: 5px;
    font-size: 1.1em; /* Trochu väčšie číslo */
    vertical-align: middle;
}

/* Štýly pre bubliny (balls) */
.viz-ball {
    cursor: pointer;
    transition: transform 0.15s ease-out; /* Hladká transformácia pri hoveri */
}
.viz-ball:hover {
    transform: scale(1.08); /* Jemné zväčšenie pri nabehnutí myšou */
}

/* Pre číslo v guličke */
.viz-ball-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ff1c44;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1em;
    font-weight: 800;
    border: 3px solid #fff5;
    box-shadow: 0 3px 12px #001e;
    letter-spacing: 1px;
}
.viz-popup-title { /* This is for the title *inside* viz-popup-modern */
    font-size: 1.38em;
    font-weight: 700;
    color: #45f0f7;
    margin-bottom: 3px;
    text-shadow: 0 2px 12px #00e7ff26;
    line-height: 0.8;   /* ← sem pridaj */
}
.viz-popup-group {
  display: block;         /* zabezpečí, že pôjde pod meno */
  margin-top: 0.1em;      /* alebo väčšie číslo podľa potreby, napr. 0.2em alebo 3px */
  font-size: 1em;
  color: #5efff7;
  opacity: 0.7;
  font-weight: 400;
}
.viz-popup-suma {
    font-size: 1.23em;
    color: #d5feff;
    font-weight: 800;
    margin-top: 0.3em;
    text-shadow: 0 1px 8px #00eaff33;
}
#vizionari-control-panel {
  display: flex; gap: 12px; justify-content: center; align-items: center;
  padding: 18px 0 8px 0; background: none;
}
#vizionari-control-panel input[type="text"] {
  background: #060a14;
  border: 2px solid #55e0ff;
  color: #b8f2ff;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.1em;
  min-width: 260px;
  box-shadow: 0 0 8px #55e0ff33;
  outline: none;
  transition: border .2s;
}
#vizionari-control-panel input[type="text"]:focus {
  border: 2px solid #00ffea;
  box-shadow: 0 0 18px #55e0ff88;
}
#vizionari-control-panel button {
  background: #04071b;
  border: 2px solid #55e0ff;
  border-radius: 10px;
  color: #55e0ff;
  padding: 7px 17px;
  min-width: 44px;
  min-height: 44px;
  font-size: 1.3em;
  box-shadow: 0 0 9px #55e0ff99, 0 0 4px #249cfb44;
  cursor: pointer;
  transition: background .22s, border .22s, color .22s;
  display: flex; align-items: center; justify-content: center;
}
#vizionari-control-panel button:hover {
  background: #001e24;
  border-color: #00ffea;
  color: #00ffea;
}
#vizionari-pause .pause-icon, #vizionari-pause .play-icon {
  display: inline-block;
  width: 22px; height: 22px; border-radius: 6px;
  box-shadow: 0 0 12px #55e0ff, 0 0 24px #249cfb;
  background: transparent;
  position: relative;
}
#vizionari-pause .pause-icon::before, #vizionari-pause .pause-icon::after {
  content: "";
  position: absolute; top: 5px;
  width: 4px; height: 12px; background: #55e0ff;
  border-radius: 3px;
  box-shadow: 0 0 8px #55e0ff, 0 0 16px #249cfb;
}
#vizionari-pause .pause-icon::before { left: 6px; }
#vizionari-pause .pause-icon::after { left: 12px; }
#vizionari-pause .play-icon::before {
  content: "";
  position: absolute;
  left: 7px; top: 5px;
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid #55e0ff;
  filter: drop-shadow(0 0 8px #55e0ff);
}

