
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  height: 100vh;
  color: #fff;
  background: url('furioza1.png') center/cover no-repeat fixed;
  backdrop-filter: blur(4px);
  overflow: hidden;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  text-shadow: 0 6px 22px rgba(0,0,0,0.6);
  animation: sparkles 4s infinite;
}


.slider {
  display: flex;
  align-items: center;
  gap: 12px;
  height: auto;
}


.arrow {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  padding: 6px 10px;
  transition: transform .15s ease, color .15s ease;
}
.arrow:hover { transform: scale(1.06); color: #C15D10; 
animation: pulsate 2s infinite;
}


.cards-viewport {
  width: 1000px;              
  max-width: calc(100vw - 120px);
  overflow: hidden;
  border-radius: 4px;
 
}


.cards {
  display: flex;
  align-items: center;
  will-change: transform;
  height: 250px;
}


.card {
  flex: 0 0 auto;
  min-width: 180px; 
  margin: 0 10px;
  text-align: center;
  user-select: none;
  transition: transform 0.5s ease;
}

.card img {
  width: 150px;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.nickname {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.role {
  margin-top: 4px;
  font-size: .9rem;
  color: #C15D10;
  font-weight: bold;
}

.card:hover   {
  color: #ffffff;
  cursor: pointer;
  transform: scale(1.2); /* powiększenie o 10% */
}

.controls {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.6);
  border-radius:  8px;
  width: 300px;
  height: 50px;
  justify-content: center;
}
.volume {
 padding-left: 20px;
 color: #fff;
 text-shadow: 0 0 7px #fff,
      0 0 10px #fff,
      0 0 21px #fff,
      0 0 42px #C15D10,
      0 0 82px #C15D10,
      0 0 92px #C15D10,
      0 0 102px #C15D10,
      0 0 151px #C15D10;
 animation: pulsate 3s infinite;
}

a {
  text-decoration: none;
  color:#fff
}

#volumeRange {
    -webkit-appearance: none;
    width: 200px;
    height: 6px;
    border-radius: 5px;
    background: #444;
    outline: none;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: url('furia.png') ;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.stopka {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;

}


input[type="range"] { width: 180px; }


@media (max-width: 600px) {
  .cards-viewport { width: calc(100vw - 40px); }
  .arrow { font-size: 2rem; }
  .card img, .card { min-width: 140px; }
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.6s ease;
  cursor: pointer; 
}

#loading-text {
  font-size: 24px;
  white-space: pre;
  text-align: center;
  animation: pulsate 2s infinite;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #fff;
  margin-left: 2px;
  animation: blink 0.8s steps(1) infinite;
}

#visit-counter {
  width: 60px;
  height: 30px;
  border-radius: 6px;
  position: absolute;
  z-index: 10;
  float: right; 
  display:flex;
  align-items:center;
  gap:8px;
  font-family:sans-serif;
  font-size:19px;
  transform: scale(1.06); color: #C15D10; 
  animation: pulsate 2s infinite;
  box-shadow: 0 6px 22px rgba(0,0,0,0.6);
}

@keyframes blink {
  50% { background-color: transparent; }
}

@keyframes pulsate {
    
  100% {

      text-shadow:
      0 0 4px #fff,
      0 0 9px #fff,
      0 0 40px #C15D10,
      0 0 80px #C15D10,
      0 0 90px #C15D10,
      0 0 100px #C15D10,
      0 0 150px #C15D10,
      0 0 190px #C15D10;
  
  }
  
  0% {

    text-shadow:
    0 0 4px #fff,
    0 0 10px #fff,
    0 0 38px #C15D10,
    0 0 73px #C15D10,
    0 0 80px #C15D10,
    0 0 94px #C15D10,
    0 0 140px #C15D10,
    0 0 180px #C15D10;
  }

}

@keyframes sparkles{
  
  100%{
    text-shadow: 0 0 8px #D46D1E, 0 0 12px #ED7B24, 0 0 14px #F3A468;
    color: #D46D1E;
  }
  75%{
    text-shadow: 0 0 6px #D46D1E, 0 0 10px #ED7B24, 0 0 12px #F3A468;
    color: #C15D10;
  }
  50%{
    text-shadow: 0 0 4px #D46D1E, 0 0 8px #ED7B24, 0 0 10px #F3A468;
    color: #C15D10;
  }
  25%{
    text-shadow: 0 0 2px #D46D1E, 0 0 6px #ED7B24, 0 0 8px #F3A468;
    color: #C15D10;
  }
  0%{
    text-shadow: 0 0 8px #D46D1E, 0 0 12px #ED7B24, 0 0 14px #F3A468;
    color: #D46D1E;
  }

}

@keyframes scaleUp {
  0%   { transform: scale(1); }
  100% { transform: scale(1.15); }
}
  
.hidden {
  opacity: 0;
  pointer-events: none;
}
