<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === Základné štýly === */
body {
  background-color: #111;
  color: #eee;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Fullscreen background video */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay over the video */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

/* Content on top of video */
.content-over-video {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20vh;
  color: #fff;
}

.content-over-video h1 {
  font-size: 3em;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #000;
}

/* === Moderné tlačidlo === */
.media-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.media-button {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-family: "Courier New", Courier, monospace;
  text-transform: uppercase;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 65, 108, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.media-button:hover {
  box-shadow: 0 0 20px rgba(255, 65, 108, 0.6);
  transform: scale(1.05);
}

.media-button:active {
  transform: scale(0.98);
  box-shadow: 0 0 10px rgba(255, 65, 108, 0.3);
}

/* === Footer === */
.site-footer {
  text-align: center;
  color: #888;
  font-size: 0.9em;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

/* === Navigácia: fullscreen mriežka 2x4 === */
nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  height: 75vh;
  max-height: 75vh;
  padding: 1.5vh 2vw;
  gap: 1.5vh 2vw;
  box-sizing: border-box;
  align-items: center;
  justify-items: center;
}

nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: background-color 0.2s ease;
  overflow: hidden;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* === Zvyšok obsahu stránky === */
.contract {
  color: #aaa;
  font-size: 1.2em;
}

.hero img {
  display: block;
  width: 75%;
  max-width: 75%;
  height: auto;
  margin: 0 auto;
}

.content {
  text-align: justify;
  max-width: 1420px;
  margin: 40px auto;
  padding: 0 20px;
}

h1 {
  color: #fff;
  margin-top: 40px;
  font-size: 2em;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  color: #fff;
  margin-top: 40px;
  font-size: 2em;
  text-transform: uppercase;
}

p {
  line-height: 1.6;
  font-size: 1.2em;
  color: #ccc;
}

em {
  color: #aaa;
}

.quote {
  text-align: center;
  font-style: italic;
  color: #fff;
  margin-top: 30px;
  font-size: 1.2em;
}

/* === Galéria obrázkov === */
.meme-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 0 16px;
}

.meme-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  background-color: #000;
}

.meme-item img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.meme-item img:hover {
  transform: scale(1.02);
}

/* === Modal === */
.modal {
  display: flex;
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  z-index: 1000;
  opacity: 1;
  pointer-events: auto;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px #000;
  animation: fadeIn 0.3s ease-in-out;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* === Download button === */
.download-btn {
  display: inline-block;
  margin-top: 20px;
  color: white;
  background: #444;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.1em;
}

.download-btn:hover {
  background: #666;
}

/* === Galéria videí === */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 60px;
  padding: 0 16px;
}

.video-gallery .meme-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  background-color: #000;
}

.video-gallery .meme-item video {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
  background-color: #000;
}

.video-gallery .meme-item video:hover {
  transform: scale(1.02);
}

/* === Responzívne prispôsobenie === */
@media (max-width: 1024px) {
  .meme-gallery {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
  }

  nav {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto !important;
    max-height: none !important;
    padding: 1rem;
    gap: 1rem;
  }

  nav a {
    display: block;
    height: 90px;
    font-size: 0.95em;
  }

  h1,
  h2 {
    font-size: 1.8em;
  }

  .contract {
    font-size: 1.1em;
  }

  .video-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .meme-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  nav {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto !important;
    max-height: none !important;
  }

  nav a {
    display: block;
    height: 90px;
    font-size: 0.95em;
  }

  .contract {
    font-size: 1em;
  }

  .download-btn {
    font-size: 1em;
    padding: 8px 20px;
  }

  .content {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .meme-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 0;
    margin: 0 auto;
  }

  .meme-item,
  .meme-item img,
  .video-gallery .meme-item,
  .video-gallery .meme-item video {
    border-radius: 0;
    box-shadow: none;
  }

  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0;
    margin: 0 auto;
  }

  .video-gallery .meme-item video {
    max-height: 240px;
  }

  .modal-content {
    width: 95%;
    max-height: 80vh;
    margin: auto;
    object-fit: contain;
  }

  nav {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto !important;
    max-height: none !important;
    padding: 1rem;
    gap: 0.8rem;
  }

  nav a {
    display: block;
    height: 90px;
    font-size: 0.95em;
  }

  .contract {
    font-size: 1em;
  }

  .media-button {
    font-size: 0.95em;
    padding: 0.6rem 1.2rem;
  }

  .content {
    text-align: left;
  }
}
</pre></body></html>