
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: Helvetica, Arial, sans-serif;
  background: url('city.jpg') center/cover no-repeat fixed;
  overflow: hidden;
  color: #fff;
    user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 26, 0, 0.7);
  z-index: 0;
}
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
header {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 3;
}
.nav-buttons {
  display: flex;
  gap: 10px;
}
.nav-btn {
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-btn:hover, .nav-btn:active {
  background: #fff;
  color: #000;
}
.nav-btn.active {
  border: 1px solid #4caf50;
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.logo {
  width: 300px;
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.info {
  margin-top: 20px;
}
.countdown {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.discord-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.discord-btn:hover {
  background: #43a047;
}
main {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 100px 20px 20px;
  z-index: 2;
  position: relative;
}
.rules {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  height: 80%;
  overflow-y: auto;
}
.rules-content {
  text-align: left;
}

.accordion-header {
  background: rgba(0,0,0,0.7);
  cursor: pointer;
  padding: 15px;
  margin-top: 10px;
  border-radius: 10px;
  transition: background 0.3s ease;
}
.accordion-header:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
}
.accordion-header.active {
  background: rgba(255,255,255,0.9);
  color: #000;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.6);
  padding: 0 10px;
  border-radius: 0 0 10px 10px;
}
.accordion-content pre {
  white-space: pre-wrap;
  font-size: 0.9rem;
  line-height: 1.4;
  padding: 10px 0;
}

.rules-content pre {
  font-size: 1.2rem;
  line-height: 1.7;
}

/* stylizacja scrollbara */
.rules-content::-webkit-scrollbar {
  width: 10px;
}
.rules-content::-webkit-scrollbar-thumb {
  background-color: rgba(76, 175, 80, 0.6);
  border-radius: 10px;
}
.rules-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

#chujciwstarom {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 20px;
    font-family: Helvetica;
    color: rgba(255, 255, 255, 0.3);
    z-index: 9999;
    pointer-events: none; 
    user-select: none; 
}





.podania-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 100px;
}

.podanie-tile {
  position: relative;
  width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  border-radius: 15px;
  overflow: hidden;
  animation: breathe 3s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.podanie-tile span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.podanie-tile:hover {
  filter: brightness(0.7);
  border-color: #00ff88;
  box-shadow: 0 0 15px #00ff88;
}

.podanie-tile:hover span {
  opacity: 1;
  transform: translateY(0);
}

.podanie-tile.lspd {
  background-image: url("lspd.jpg");
}

.podanie-tile.ems {
  background-image: url("ems.jpg");
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

.klipy-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.klip {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s;
}

.klip:hover {
  transform: translateY(-5px) scale(1.02);
}

.klip video {
  width: 100%;
  border-radius: 10px;
}
