* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #020118;
    overflow-x: hidden;
    font-family: 'Inria Sans', sans-serif;
  }
  
  .galaxy-background {
    background-image: url('assets/zvjezdice.svg');
    background-repeat: repeat;
    background-position: center;
    background-size: contain;
    min-height: 100vh;
    padding: 60px 0;
  }
  
  .galaxy-path {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .stage-row {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 0 40px;
    position: relative;
  }
  
  .stage-row.right {
    justify-content: flex-end;
  }
  
  .stage {
    width: 70px;
    height: 70px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    border-radius: 50%;
    position: relative;
  }
  
  .stage img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .stage:not(.locked):hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.3);
  }
  
  .stage.locked {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    filter: grayscale(100%);
    pointer-events: none;
    background-image: url('assets/Sirius - 1. stage zakljucan.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .stage.locked img {
    width: 60%;
    height: auto;
    display: block;
  }
  
  .stage.active {
    opacity: 1;
    filter: none;
    box-shadow: 0 0 10px 2px rgba(0, 255, 255, 0.4);
  }
  
  .connector {
    width: 100px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .stage-row.left + .connector {
    background-image: url('assets/linija.svg');
    transform: translateX(10px) rotate(-18deg);
  }
  
  .stage-row.right + .connector {
    background-image: url('assets/linija2.svg');
    transform: translateX(-10px) rotate(18deg);
  }
  
  .button-row {
    display: flex;
    justify-content: center;
    margin-top: -20px;
  }
  
  .start-button {
    background-color: white;
    color: #0d0d16;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 15px;
    transition: background-color 0.3s;
  }

  .stage-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .inria-sans-light {
    font-family: "Inria Sans", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .inria-sans-regular {
    font-family: "Inria Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .inria-sans-bold {
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .inria-sans-light-italic {
    font-family: "Inria Sans", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .inria-sans-regular-italic {
    font-family: "Inria Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .inria-sans-bold-italic {
    font-family: "Inria Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  