body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background-color: #271580;
}

body::-webkit-scrollbar-thumb {
    background-color: #5e72e4;
}

body {
    background-color: #f1f3f4 !important;
}

.navbar-style {
    background-color: transparent;
    transition: all 0.5s ease;
}

.my-card {
	background: #fff;
    color: #525f7f;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
    margin-bottom: 30px;
    padding: 25px;
}

.card-text {
    color: #525f7f;
}

.brand-text {
    font-size: 13px;
    font-weight: bold;
    padding-top: 10px;
    position: absolute;
    margin-top: -3px;
    margin-left: 5px;
    text-transform: uppercase;
    color: black;
}

.counter-box {
    display: block;
    padding: 40px 20px 37px;
    text-align: center
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #fff
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 28px
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}

.card-prise {
    font-size: 18px;
}

.card-prise b {
    font-size: 25px;
    font-weight: bold;
}

.displayFixedBottom {
    position: fixed;
    bottom:  0;
    display: none;
    z-index: 9999;
}

.displayFixedBottomContact {
    position: fixed;
    bottom:  0;
    z-index: 9999;
}

.img-menu {
    height: 30px;
}

.category {
    padding: 10px 40px 10px 40px;
    border-radius: 50px;
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
}

.bg-tiktok {
    background-color: #000;
}

.bg-youtube {
    background-color: #ff0000;
}

.bg-facebook {
    background-color: #1b74e4;
}

.bg-twitch {
    background-color: #772ce8;
}

.bg-spotify {
    background-color: #1ed760;
}

.bg-twitter {
    background-color: #00abec;
}

.bg-kick {
    background-color: #02de03;
}

.bg-x {
    background-color: #000000;
}

.bg-www {
    background-color: #0084c8;
}


/* Stopka jasna */
.site-footer-light {
  background-color: #f9f9f9;
  color: #333;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-contact, .footer-links, .footer-social {
  flex: 1 1 200px;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: #0073e6;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

#cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: none;
  justify-content: center;
  z-index: 99999;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 10px; /* dodane, żeby nie przyklejało się do krawędzi */
}

.cookie-card {
  background: #fff;
  max-width: 760px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap; /* umożliwia zawijanie elementów na małych ekranach */
}

.cookie-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.cookie-content {
  flex: 1 1 auto;
  min-width: 200px; /* zapewnia minimalną szerokość treści */
}

.cookie-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #1f2a44;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.cookie-content a {
  color: #4c73f1;
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-wrap: wrap; /* przy małych ekranach przyciski przechodzą pod treść */
  margin-top: 10px; /* na telefonach odstęp od treści */
}

.cookie-actions button {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

#cookie-accept {
  background: #4c73f1;
  color: #fff;
}

#cookie-decline {
  background: #fff;
  color: #4c73f1;
  border: 1px solid #4c73f1;
}

/* MEDIA QUERIES DLA TELEFONÓW */
@media (max-width: 480px) {
  .cookie-card {
    flex-direction: column; /* treść i przyciski ułożone pionowo */
    align-items: flex-start;
    padding: 12px 16px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .cookie-actions button {
    flex: 1 1 48%; /* przyciski zajmują prawie połowę szerokości ekranu */
    margin-bottom: 8px;
  }

  .cookie-icon {
    font-size: 24px;
  }

  .cookie-content h3 {
    font-size: 16px;
  }

  .cookie-content p {
    font-size: 13px;
  }
}


/* PREMIUM CARD */
.premium-card {

  z-index: 2;
  overflow: visible;
}

/* Animowane gradientowe obramowanie */
.premium-card::before {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 10px;
  padding: 3px;
  background: linear-gradient(45deg, #ff00cc, #6c63ff, #00f0ff, #ff00cc);
  background-size: 300% 300%;
  animation: borderGlow 6s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

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

/* Glow pod kartą */
.premium-card {
  
}

/* Badge */
.popular-badge {
  position: absolute;
  top: -12px;
  left: 40%;
  z-index: 999;
  transform: translateX(-30%);
  background: linear-gradient(90deg, #ff00cc, #6c63ff);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
}

/* Ikona z lekkim pulsem */
.premium-icon {
  animation: pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(90deg, #ff00cc, #6c63ff);
  color: #fff;
  border: none;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 99, 255, 0.4);
}

