body {
  margin: 0;
  padding: 0;
  background: #111;
  color: #fff;
  font-family: sans-serif;

}


a, a:visited, a:hover, a:active, a:focus {
  text-decoration: none !important;
  color: #fff !important; /* lub inny kolor, np. #ccc, #aaa itd. */
}


header {
  position: sticky;
  top: 0;
  background: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}
.logo {
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}
nav {
  position: relative;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  color: #ccc;
  cursor: pointer;
  padding: 5px 10px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: #222;
  padding: 10px;
  top: 100%;
  left: 0;
  min-width: 150px;
  z-index: 1000;
}
.dropdown-menu a {
  color: #fff;
  display: block;
  padding: 5px 0;
  text-decoration: none;
}
.dropdown-menu a:hover {
  background: #333;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.video-wrapper {
  margin-bottom: 30px;
  scroll-margin-top: 70px;
}
.video-container {
  width: 100vw;
  height: calc(100vw * 0.5625);
  overflow: hidden;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.video-info {
  padding: 10px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}
.video-info h3 {
  margin: 0 0 5px;
  font-size: 1.2em;
  color: #fff;
}
.video-info p {
  margin: 0 0 10px;
  font-size: 0.95em;
}
.video-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.video-controls button {
  background: #333;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.video-controls button.active {
  background: #5a0;
}


 @keyframes flameAnimation {
      0% { text-shadow: 0 0 10px #ff9800, 0 0 20px #ff9800, 0 0 30px #ff9800; }
      50% { text-shadow: 0 0 10px #ff5722, 0 0 20px #ff5722, 0 0 30px #ff5722; }
      100% { text-shadow: 0 0 10px #ff9800, 0 0 20px #ff9800, 0 0 30px #ff9800; }
    }

    .flame-text {
      font-size: 25px;
      font-weight: bold;
      color: #fff;
      background: linear-gradient(to right, #ff5722, #ff9800);
      background-clip: text;
      -webkit-background-clip: text;
      animation: flameAnimation 2s infinite;
    }


.story-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.3;
  font-size: 1.05em;
  color: #ddd;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.story-content p {
  margin-bottom: 1em;
}

.story-content {
  white-space: pre-wrap;
}








.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
}

.search-box {
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
}

.search-box input[type="text"] {
  padding: 10px;
  width: 70%;
  max-width: 400px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
}

.search-box button {
  padding: 10px 20px;
  font-size: 16px;
  margin-left: 5px;
  background: #ff3366;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.story {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #000;
}

.story h2 {
  margin-top: 0;
  font-size: 20px;
  color: #ff3366;
}

.story p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.story button {
  background: #444;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pagination a {
  padding: 8px 12px;
  background: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.pagination a.current {
  background: #ff3366;
}


  #copyToast {
    transition: opacity 0.3s ease;
    opacity: 0;
  }

#news-ticker-wrapper {
  width: 100%;
  background: #000;
  overflow: hidden;
  padding: 10px 0;
  box-sizing: border-box;
}

#news-ticker-inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  position: relative;
  left: 100%;
}

#news-ticker-content {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  padding-right: 100px;
  font-family: sans-serif;
}

@media (max-width: 768px) {
  #news-ticker-content {
    font-size: 0.9rem;
  }
}

.pagination a {
  display: inline-block;
  background: #222;
  color: #fff !important;
  padding: 8px 12px;
  margin: 0 3px;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #444;
  transition: background 0.2s;
}

.pagination a:hover {
  background: #333;
}

.pagination a.active {
  background: #fff;
  color: #000 !important;
  font-weight: bold;
  border-color: #fff;
}


<style>
#chat-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #c00;
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 10px #000;
  font-weight: bold;
  font-family: sans-serif;
  transition: background 0.2s;
}
#chat-float-btn:hover {
  background: #f00;
}
</style>