body {
  margin: 0;
  font-family: 'Sansation', sans-serif;
}

.pasek-gorny {
  background-color: #120F0E;
  color: #FFF5F0;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lewa-strona {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 20px;
  margin-left: 10px;
  height: auto;
}

.logo img {
  max-height: 90px;
  height: auto;
  display: block;
}

.nazwa-strony-kontener {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-top: 0px;
}

.nazwa-strony {
  font-family: 'Geologica', sans-serif;
  font-size: 45px;
  color: #DE8A5C;
  background: linear-gradient(to right, #DE8A5C 0%, #C8566F 50%, #DE8A5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: slideAndWrap 4s linear infinite;
  cursor: pointer;
  transform: translateY(10px);
  transition: transform 0.3s ease-in-out;
}

.nazwa-strony-kontener:hover .nazwa-strony {
  transform: translateY(-1px);
}

.podnapis {
  font-family: 'Noto Sans', sans-serif;
  font-size: 15px;
  color: #8A8A8A;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(10px);
  margin-top: 5px;
}


.nazwa-strony-kontener:hover .podnapis {
  opacity: 1;
  transform: translateY(0px);
}

@keyframes slideAndWrap {
  0% { background-position: -100% 0; }
  50% { background-position: 100% 0; }
  50.1% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.prawa-strona {
  display: flex;
  align-items: center;
  height: 100%;
}

.prawa-strona .ikonki {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.prawa-strona .ikonki li {
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  height: 100%;
}

.prawa-strona .ikonki li a {
  color: inherit;
  display: flex;
  align-items: center;
  height: 100%;
}

.prawa-strona .ikonki li a img {
  max-height: 30px;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.prawa-strona .ikonki li a img:hover {
  transform: scale(1.2);
}   

@media (max-width: 400px) {
  .pasek-gorny {
    flex-direction: column; 
    align-items: center; 
  }

  .lewa-strona {
    width: 100%;
    justify-content: center; 
  }

  .nazwa-strony-kontener {
    align-items: center; 
  }

  .prawa-strona {
    width: 100%; 
    justify-content: center; 
    margin-top: 10px; 
  }

  .prawa-strona .ikonki {
    justify-content: center;
  }

  .prawa-strona .ikonki li {
    margin-left: 10px; 
    margin-right: 10px;
  }
}
    
    .animated-bg {
      background-color: #1E1E1E;
          }
          /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
                                                           Koniec Headera
                                                           Start Footera
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/

footer {
  background-color: #120F0E;
  color: #FFF5F0;
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: center;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-left a {
  color: #FFF5F0;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.footer-left a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #FFF5F0;
  width: 0;
  transition: width 0.3s ease-in-out;
}

.footer-left a:hover::after {
  width: var(--underline-width, 100%); 
}

.footer-separator {
  width: 1px;
  height: 60px;
  background-color: #FFF5F0;
}

.footer-right {
  text-align: left;
}

.copyright-info {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0;
}

.copyright-info img {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.copyright-info span {
  vertical-align: middle;
}

.footer-right p {
  margin: 5px 0;
}

.footer-right a {
  color: #FFF5F0;
  text-decoration: none;
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
                                                           Koniec Footera
                                                           Start Main Strony
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.background-container {
  position: relative;
  width: 100%;
  height: 1080px; 
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg,
    #1E1E1E 0%,
    #1E1E1E 9%,
    rgba(30, 30, 30, 0.6) 100%,
    rgba(30, 30, 30, 0.6) 100%,
    rgba(30, 30, 30, 0.2) 100%,
    rgba(30, 30, 30, 0.2) 100%
  );
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.animation-box {
  position: absolute;
  left: 50%;
  top: 475px; 
  transform: translate(-50%, calc(-50% - 100px));
  width: 300px; 
  height: 300px;
}

.animation-box img {
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
}

.peshpa-png-style {
  width: 264px;
  height: 264px;
  top: 466px; 
}

.sliding-text-container {
  position: absolute;
  top: 475px; 
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  width: 80%; 
  max-width: 900px; 
}

.sliding-text-container.show {
  transform: translate(-50%, 50px); 
  opacity: 1;
}

.sliding-text {
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 50px;
  text-align: center;
  color: #FFF5F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.text-with-buttons {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 20px; 
}

.gradient-text {
  color: #DE8A5C;
  background: linear-gradient(to right, #DE8A5C 0%, #C8566F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 50px;
  margin-right: 10px; 
}

.normal-text {
  font-family: 'Sansation', sans-serif;
}


html, body {
  box-sizing: border-box;
  overflow-x: hidden; 
}

*, *::before, *::after {
  box-sizing: inherit;
}

.main-container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
}

.panels-section {
  display: flex;
  width: 100%;
  position: relative;
  top: -180px;
  z-index: 10;
  padding: 0;
  margin: 0 auto;
  max-width: 1240px;
  gap: 20px;
  transition: top 0.3s ease-in-out;
  justify-content: center;
}

.panel {
  background-color: #ddd;
  padding: 20px;
  text-align: center;
  border-radius: 44px;
  height: 250px;
  margin: 0;
  width: 1150px; 
  margin-top: 0px;
}
@media (max-width: 400px) {
  .panels-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 20px;
    margin: 0;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }
}

@media (max-width: 480px) {
  .panel {
    padding: 15px;
    font-size: 0.9em;
    margin: 0;
  }

  .panels-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    top: -10px;
    z-index: 10;
    padding: 0 10px;
    gap: 10px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .panels-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 20px;
    gap: 200px;
    margin: 0;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }

  .panel {
    width: 100%;
    margin: 0;
    display: block;
    box-sizing: border-box;
    position: relative;
    z-index: 1; 
    position: absolute;
    top: 0;
    left: 0;
  }
}



.panel.new-panel {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  max-width: 600px;
  height: 300px;
  margin: 0 10px;
  margin-top: -150px;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  background-color: #ddd; 
  background-size: cover;
  background-position: center; 
}

.duelsbg {
  background-image: url('assets/panel1.png'); 
}

.ffabg {
  background-image: url('assets/panel2.png'); 
}

.panel.new-panel:hover {
  transform: scale(1.05);
}

.panel.new-panel img {
  max-width: 80%; 
  max-height: 80%; 
  object-fit: contain; 
}

.panel.new-panel .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF5F0;
}

.panel.new-panel .icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.panel.new-panel .label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  width: 70%;
  height: auto;
  margin: 90px auto 0;
}

.panel.new-panel .label span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(to right, #DE8A5C, #C8566F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel.new-panel .label img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.container1 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aktualnosci {
  font-size: 128px;
  font-family: 'Sansation', sans-serif;
  margin-bottom: 75px;
  color: #FFF5F0;
}

@media (max-width: 400px) {
  .aktualnosci {
  font-size: 64px;
  font-family: 'Sansation', sans-serif;
  margin-bottom: 75px;
  color: #FFF5F0;
}
}

.faq-section h2 {
  font-size: 128px;
  font-family: 'Sansation', sans-serif;
  color: #1E1E1E;
  padding-top: 100px;
}

@media (max-width: 400px) {

.faq-section h2 {
  font-size: 96px;
  font-family: 'Sansation', sans-serif;
  color: #1E1E1E;
  padding-top: 100px;

}}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 800px);
  grid-template-rows: repeat(2, 400px);
  gap: 35px;
  margin-bottom: 30px;
}

.nbox {
  width: 100%;
  height: 100%;
  background-color: #ddd;
  border-radius: 44px;
  position: relative; 
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  opacity: 0; 
  transform: translateX(-100px); 
  transition: transform 0.5s ease-out, opacity 0.5s ease-out; 
}
@media (max-width: 768px) {

  .nbox {
    opacity: 1 !important;
    transform: translateX(0) !important;
    width: 100%;
    max-width: 100%;
  }

  .grid-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px; 
    padding: 0 20px;
    box-sizing: border-box;
  }
  
  .article-link {
    width: 100%;
  }
}
.nbox.show {
  opacity: 1; 
  transform: translateX(0); 
}

.nbox:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.image-container {
  width: 100%;
  height: 100%;
}

.image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #FFF5F0;
  padding: 10px;
  text-align: left;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; 
}

.text-container .line1,
.text-container .line2,
.text-container .line-hover {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-container .line1 {
  font-size: 16px;
  margin-left: 10px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.text-container .line2 {
  font-size: 32px;
  margin-left: 16px;
  margin-bottom: 10px;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

@media (max-width: 400px) {

.text-container .line1 {
  font-size: 12px;
  margin-left: 10px;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
}

.text-container .line2 {
  font-size: 24px;
  margin-left: 16px;
  margin-bottom: 10px;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  word-wrap: break-word;
  overflow-wrap: break-word; 
  white-space: normal;  
}

}

.nbox:hover .text-container .line2 {
  transform: translateY(-100%);
  opacity: 0;
}

.text-container .line-hover {
  position: absolute;
  bottom: 26px; 
  left: 26px; 
  font-size: 32px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: translateY(100%); 
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.nbox:hover .text-container .line-hover {
  transform: translateY(0); 
  opacity: 1;
}

.icon {
  width: 32px;
  height: auto;
  margin-right: 3px;
}

.outer-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: space-between; 
    padding: 20px;
    box-sizing: border-box;
    width: 100%; 
}

.faq-container {
  width: 100%;
  max-width: 1200px;
  max-height: 400px;
  margin: 100px auto;
}

.faq-item {
  margin-bottom: 10px; 
  border-radius: 44px;
  overflow: hidden;
  background-color: #120F0E; 
}

.faq-question {
  padding: 10px 15px; 
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent; 
}

.faq-question h3 {
  margin: 0;
  font-size: 24px;
  color: #FFF5F0;
  flex-grow: 1;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding-left: 10px; 
  font-size: 20px;
  color: #FFF5F0;
  transition: transform 0.3s ease-in-out;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 5px 15px;
  background-color: transparent;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out, padding 0.3s ease-in-out, background-color 0.3s ease-in-out;
  text-align: center;
  font-size: 16px;
  color: #FFF5F0;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}

.faq-answer.active {
  padding: 10px 15px;
  background-color: #1E1E1E;
}
@media (max-width: 400px) {
  .faq-container {
    margin-top: 50px;
    margin-bottom: 50px; 
  }

  .faq-question h3 {
    font-size: 20px; 
  }

  .faq-answer {
    font-size: 14px; 
  }



  .faq-item.faq-item-open {
    margin-bottom: 25px; 
  }

}

h2 {
  text-align: center;
  font-size: 24px;
  color: #1E1E1E;
  margin-bottom: 20px;
}





.container5 {
  background-color: #FFF5F0;
}

.linkf a {
  text-decoration: underline;
  font-weight: bold;
  background: linear-gradient(to right, #DE8A5C 0%, #C8566F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.opiss {
  display: block;
  padding: 20px 200px;
  background-color: transparent;
  text-align: left;
  padding-bottom: 100px;
  font-size: 20px;
  color: #1E1E1E;
  line-height: 1.7; 
  font-family: 'Montserrat', sans-serif;
  margin-left: 100px;
  margin-right: 100px;
  border-radius: 5px;
}

  @media (max-width: 768px) {
.opiss {
  display: block;
  padding: 20px 15px;
  background-color: transparent;
  text-align: left;
  padding-bottom: 100px;
  font-size: 20px;
  color: #1E1E1E;
  line-height: 1.7; 
  font-family: 'Montserrat', sans-serif;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 5px;
}

  }

.article-link {
    text-decoration: none; 
    color: inherit; 
    display: block; 
}

/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
                                                           Koniec Main Strony
                                                           Start Wzoru Artykułu
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
.bg-container3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #1E1E1E;
  background-size: cover;
  background-position: center;
  filter: blur(0px) brightness(100%);
  transition: filter 0.3s ease-out, brightness 0.4s ease-out; 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.overlay3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0; 
  z-index: -1;
  transition: opacity 0.3s ease-out;
  pointer-events: none; 
}

.content3 {
  position: relative;
  padding-top: 50vh;
  text-align: center;
  padding-bottom: 0;  
}

.text-overlay3 {
  color: #FFF5F0;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-align: left;
  width: auto; 
  padding: 20px;
  margin-left: 10vw; 
  margin-right: 10vw; 
}

.text-overlay3 h2 {
  font-size: 96px;
  color: #FFF5F0;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: 'Sansation', sans-serif;
  background-clip: text;
  text-align: left;
}

.text-overlay3 h3 {
  font-size: 64px;
  color: #FFF5F0;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: 'Sansation', sans-serif;
  background-clip: text;
  text-align: left;
}

.content3 h1 {
  font-size: 128px;
  font-family: 'Sansation', sans-serif;
  background-clip: text;
  text-align: center;
  margin-top: -250px;
  background: linear-gradient(to right, #DE8A5C, #C8566F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 400px) {
  .content3 h1 {
  font-size: 64px;
  font-family: 'Sansation', sans-serif;
  background-clip: text;
  text-align: center;
  margin-top: -250px;
  background: linear-gradient(to right, #DE8A5C, #C8566F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-overlay3 h2 {
  font-size: 48px;
  color: #FFF5F0;
  padding-top: 50px;
  padding-bottom: 50px;
  font-family: 'Sansation', sans-serif;
  background-clip: text;
  text-align: left;
}

.text-overlay3 {
  color: #FFF5F0;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  text-align: left;
  width: auto; 
  padding: 20px;
  margin-left: 4vw; 
  margin-right: 4vw; 
}

}
.content3 h3 {
  font-size: 32px;
  font-family: 'Sansation', sans-serif;
  background-clip: text;
  text-align: center;
  color: #FFF5F0;
}


.icon1 {
  width: 48px;
  margin-right: 3px;
  padding-top: 30px;
  position: relative; 
  top: 12px;
}

.text-overlay3 a {
  background: linear-gradient(to right, #DE8A5C, #C8566F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.media-image, .media-video {
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);    
    display: block;
    margin: 20px auto;
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
                                                           Koniec Artykulu
                                                           Start Sklepu
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
    .main-content {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 60px 20px 40px;
        min-height: auto;
        box-sizing: border-box;
        margin-bottom: 50px;
    }
    .dsffa-button { /*jak bedzie sie chcialo dodac cos nowego to wybrane maja ten kolor co dsffa a nie wybrane jasnoszare*/
        padding: 18px 40px;
        background-color: #120F0E;
        color: #F7F7F7;
        text-decoration: none;
        font-family: 'Sansation', sans-serif;
        font-size: 28px;
        font-weight: 700;
        border-radius: 44px;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px #00000033;
        text-align: center;
    }
    .dsffa-button:hover {
        background-color: #202020;
        transform: translateY(-2px);
    }

    .products-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        padding: 0 20px 60px;
        max-width: 1500px;
        margin: 0 auto;
    }
    .product-panel {
        background-color: #fff;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: #F7F7F7;
        height: 450px;
    }
    .product-panel:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    .product-panel img {
        width: 290px;
        height: 300px;
        border-radius: 10px;
        margin-bottom: 20px;
        object-fit: cover;
    }
    .product-panel h3 {
    font-family: 'Sansation', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px 0;
    background: linear-gradient(to right, #DE8A5C, #C8566F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    }
    .product-panel p {
        font-family: 'Geologica', sans-serif;
        font-size: 18px;
        color: #1e1e1e;
        margin: 0;
        font-weight: bold;
    }
    .product-panel h1 {
        font-family: 'Nono sans', sans-serif;
        font-size: 14px;
        color: #1e1e1e;
        margin: 0;
        font-weight: lighter;
    }
    .products-container a {
        text-decoration: none;
    }

.product-display-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 40px;
}

.product-image {
  flex: 1 1 450px;
  max-width: 500px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.product-info-panel {
  flex: 1 1 500px;
  max-width: 600px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 50px 60px;
}

main.product-display-section .product-info-panel h1 {
  font-family: 'Geologica', sans-serif;
  font-size: 3.8em;
  margin: 0 0 10px 0;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(to right, #DE8A5C, #c8566f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.product-info-panel .meta-details {
  font-family: 'Noto Sans', sans-serif;
  font-size: 32px;
  color: #1e1e1e;
  margin-bottom: 15px;
  font-weight: bold;
}

.product-info-panel .description-prompt {
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  color: #1e1e1e;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.buy-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 60px;
    background: linear-gradient(to right, #DE8A5C, #df637e, #DE8A5C);
    background-size: 200% auto;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Sansation', sans-serif;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(222, 138, 92, 0.4);
    animation: gradient-flow 6s linear infinite;
}
    .slider-container {
        margin: 25px 0;
    }

    #coin-slider {
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 10px;
        background: #ddd;
        outline: none;
        border-radius: 5px;
        margin-top: 15px;
        --progress-percent: 0%;
        
        background-image: linear-gradient(#DE8A5C, #DE8A5C);
        background-size: var(--progress-percent) 100%;
        background-repeat: no-repeat;
    }
    
    #coin-slider::-webkit-slider-runnable-track {
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        border: none;
        height: 10px;
    }
    
    #coin-slider::-moz-range-track {
        width: 100%;
        height: 10px;
        cursor: pointer;
        border-radius: 5px;
        background: #ddd;
    }

    #coin-slider::-moz-range-progress {
        height: 10px;
        border-radius: 5px;
        background: #DE8A5C;
    }

    #coin-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 22px;
        height: 22px;
        background: #DE8A5C;
        cursor: pointer;
        border-radius: 50%;
        border: 2px solid white;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
        margin-top: -6px;
    }

    #coin-slider::-moz-range-thumb {
        width: 22px;
        height: 22px;
        background: #DE8A5C;
        cursor: pointer;
        border-radius: 50%;
        border: 2px solid white;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }

    #product-price-display {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.5em;
        font-weight: 700;
        margin: 15px 0 20px 0;
        text-align: center;
    }
    
    #product-price-display .coins {
        color: #D66E69;
    }
    
    #product-price-display .price-details {
        color: #1e1e1e;
    }

    .notification {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #333;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s, visibility 0.5s, bottom 0.5s;
        font-family: 'Noto Sans', sans-serif;
    }

    .notification.show {
        opacity: 1;
        visibility: visible;
        bottom: 30px;
    }
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
                                                           Koniec sklepu
                                                           Start trybow
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/

#duels-page .wrapper14 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    background-image: url(assets/panel1b.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

#ffa-page .wrapper14 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    background-image: url(assets/panel2b.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wrapper14::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(255, 245, 240, 1) 0%,
        rgba(255, 245, 240, 1) 30%,
        rgba(255, 245, 240, 0.8) 50%,
        rgba(255, 245, 240, 0.6) 70%,
        rgba(255, 245, 240, 0.4) 80%,
        rgba(255, 245, 240, 0.2) 90%,
        rgba(255, 245, 240, 0) 100%
    );
    pointer-events: none;
    z-index: 1; 
}

.content14 {
    overflow-x: hidden;
}

.content14 .section14 {
    width: 100%;
    height: 100vh;
}



.content14 .section14.hero14::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    background: linear-gradient(
    to top,
    rgba(255, 245, 240, 1) 0%,    
    rgba(255, 245, 240, 1) 30%,   
    rgba(255, 245, 240, 0.8) 50%, 
    rgba(255, 245, 240, 0.6) 70%, 
    rgba(255, 245, 240, 0.4) 80%, 
    rgba(255, 245, 240, 0.2) 90%, 
    rgba(255, 245, 240, 0) 100%   
    );
    pointer-events: none;
}


.content14 .section14.gradient-purple14 {
    background-color: #FFF5F0;
   height: auto;
}

.content14 .section14.gradient-purple14::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; 
}


.content14 .section14.gradient-blue14 {
    background-color: blue; 
}

.image-container14 {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    perspective: 500px;
    overflow: hidden;
}

.image-container14 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 768px) {
  .image-container14 img {
    object-fit: contain !important;
    object-position: center center !important;
  }
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; 
}

.artykul-tresc {
  margin-left: 10vw; 
  margin-right: 10vw; 
  font-size: 24px;
  padding-bottom: 100px;
  flex: 1;
}

.artykul-tresc a {
    text-decoration: underline;
    font-weight: bold;
    background: linear-gradient(to right, #DE8A5C 0%, #C8566F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.artykul-tresc h2 {
  margin-left: 10vw; 
  margin-right: 10vw; 
  font-size: 96px; 
}




.vidio {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.content65, .video-container65 {
    all: unset; 
}

.video-full-width65 {
    display: block; 
    width: 98vw; 
    height: auto; 
    margin: 1vw auto; 
}

.hidden-spacer65 {
    height: 100px; 
}

.bottom-spacer65 {
    height: 100px; 
}
video::-webkit-media-controls65 {
    display: none !important;
}

video::-webkit-media-controls-enclosure65 {
    display: none !important;
}

video::-webkit-media-controls-panel65 {
    display: none !important;
}

video::--media-controls65 {
    display: none !important;
}

video::--media-controls-enclosure65 {
    display: none !important;
}

video::--media-controls-panel65 {
    display: none !important;
}

.wrapper445 {
  background: linear-gradient(to bottom, #fff5f0, #1e1e1e);
}

.container47 {
    width: 90%;
    color: #FFF5F0; 
    font-family: Arial, sans-serif; 
    position: relative;
    z-index: 2;
    margin-top: 10vh; 
    background-color: #1e1e1e;
    border-radius: 44px;
    margin-left: 100px;
    opacity: 0; 
    transform: translateX(-50px); 
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 
}

@media (max-width: 768px) {
  .container47 {
    width: 90%;
    color: #FFF5F0; 
    font-family: Arial, sans-serif; 
    position: relative;
    z-index: 2;
    margin-top: 10vh; 
    background-color: #1e1e1e;
    border-radius: 44px;
    margin-left: 40px;
    opacity: 0; 
    transform: translateX(-50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 
}
}

.ns {
 background-color: #1E1E1E;
}

.container47.visible {
    opacity: 1; 
    transform: translateX(0); 
}

.uno {
  background-color: #1E1E1E;
  font-size: 24px;  
  display: flex;
  flex-direction: column; 
  font-family: 'Noto Sans', sans-serif;
}

.uno h3 {
  background-color: #1E1E1E;
  font-size: 48px;
  order: -1; 
  font-family: 'Sansation', sans-serif;
}

.uno p {
  margin-top: 0; 
  font-size: 24px;  
}
@media (max-width: 400px) {
  .vidio {
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .video-full-width65 {
    display: none !important;
  }

  .container47 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 25px;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    height: auto;
  }

  .row47 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .text-column47 {
    max-width: 95vw;
    width: 100%;
    text-align: left;
    margin: 0 auto;
    padding: 20px;
    font-size: 18px;
    line-height: 2.1; 
    word-break: normal;
    hyphens: none;
  }

  .video-column47 {
    display: none;
  }

  .uno h3 {
    text-align: left;
    font-size: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .uno p {
    font-size: 18px;
    line-height: 2.1;
    text-align: left;
  }

  .hidden-spacer65,
  .bottom-spacer65 {
    height: 20px;
  }




}



.text-column47 {
  display: flex;
  flex-direction: column;
}

.text-column47 h3 {
  order: -1;
  text-align: center;
}

.dos {
  background-color: #FFF5F0;
  color: #1E1E1E;
  font-size: 24px;  
  display: flex; 
  flex-direction: column; 
  font-family: 'Noto Sans', sans-serif;
}

.dos h3 {
  background-color: #FFF5F0;
  font-size: 48px;
  order: -1; 
  font-family: 'Sansation', sans-serif;
}

.dos p {
  margin-top: 0; 
}

.tres {
  background-color: #FFF5F0;
  color: #1E1E1E;
  font-size: 24px;  
  display: flex; 
  flex-direction: column;
  font-family: 'Noto Sans', sans-serif;
}

.tres h3 {
  background-color: #FFF5F0;
  font-size: 48px;
  order: -1; 
  font-family: 'Sansation', sans-serif;
}

.tres p {
  margin-top: 0; 
}

.cuatro {
  background-color: #1E1E1E;
  color: #FFF5F0;
  font-size: 28px;  
  display: flex; 
  flex-direction: column;
  padding-right: 100px;
  padding-left: 150px;
  font-family: 'Noto Sans', sans-serif;
  padding-top: 70px;
  padding-bottom: 50px;
}

.cuatro h3 {
  color: #FFF5F0;
  font-size: 64px;
  order: -1; 
  font-family: 'Sansation', sans-serif;
}

.cuatro p {
  margin-top: 0; 
}

@media (max-width: 400px) {

  .cuatro {
  background-color: #1E1E1E;
  color: #FFF5F0;
  font-size: 24px;  
  display: flex; 
  flex-direction: column; 
  font-family: 'Noto Sans', sans-serif;
  padding-top: 70px;
  padding-bottom: 50px;
}

.cuatro h3 {
  color: #FFF5F0;
  font-size: 48px;
  order: -1; 
  font-family: 'Sansation', sans-serif;
}
}

.row47 {
    display: flex;
    border-bottom: 1px solid #FFF5F0; 
}

.row47:last-child {
    border-bottom: none; 
}

.column47 {
    width: 50%;
    padding: 20px;
    box-sizing: border-box; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px; 
}

.text-column47 {

}

.video-column47 {

    padding: 0; 
}

.column47:first-child {
}

.full-width-row47 {
}

.text-column-full47 {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    min-height: 100px; 
}


.hidden-spacer65 {
}

.video-full-width65 {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
    display: block; 
}

.bottom-spacer65 {
}

.bg31 {
    background-color: #1e1e1e;
}
/*-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
                                                           Koniec trybow
                                                           Start X
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
