<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === GLOBAL === */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #e0e0e0;
  height: 100%;
  overflow-x: hidden;
}

/* === KONTEJNER === */
.container {
  display: flex;
}

/* === FIKSNA SLIKA STRANA === */
.image-side {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  z-index: 1;
}

.image-side img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 0 25px #4374BA;
}

/* === SCROLL STRANA === */
.info-side {
  margin-left: 50vw;
  width: 50vw;
  min-height: 100vh;
  padding: 60px;
  background-color: #0a0a0a;
  box-sizing: border-box;
  z-index: 2;
}

.info-side h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #4374BA;
}

.meta {
  margin-bottom: 10px;
  color: #aaa;
  font-size: 14px;
}

.tags {
  margin: 10px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 6px 14px;
  color: #4374BA;
  font-size: 14px;
}

.content {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: #d5d5d5;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 20px 0;
}

/* === BACK BUTTON === */
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  color: #4374BA;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  z-index: 999;
}

.back-btn:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .container {
    flex-direction: column;
  }

  .image-side {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 20px 20px 20px;  
  }

  .info-side {
    margin-left: 0;
    width: 100%;
    padding: 20px;
  }

  .image-side img {
    max-height: 300px;
  }

  .info-side h1 {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .content {
    font-size: 15px;
  }

  .back-btn {
    top: 10px;
    left: 10px;
    font-size: 14px;
  }
}
</pre></body></html>