  body {
            background: #000000;
            color: #e8ecf5;
            font-family: "Montserrat", sans-serif;
        }

        .gold {
            color: #c4a46a;
        }

        .section-title {
            font-size: 3rem;
            line-height: 1.1;
            font-weight: 700;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #111827;
        }

        ::-webkit-scrollbar-thumb {
            background: #374151;
            border-radius: 10px;
        }
		.support-btn {
		  background: linear-gradient(135deg, #D60032, #FF0066);
		  color: #fff;
		  border: none;
		  border-radius: 50px;
		  padding: 12px 36px;
		  font-size: 1.1rem;
		  font-weight: 600;
		  letter-spacing: 0.5px;
		  cursor: pointer;
		  transition: all 0.3s ease;
		  box-shadow: 0 4px 15px rgba(214, 0, 50, 0.4);
		}

		.support-btn:hover {
		  background: linear-gradient(135deg, #FF0066, #9B0038);
		  box-shadow: 0 6px 20px rgba(255, 0, 102, 0.45);
		  transform: translateY(-2px);
		}

		.support-btn:active {
		  transform: translateY(0);
		  box-shadow: 0 2px 10px rgba(214, 0, 50, 0.3);
		}

		.support-btn:focus {
		  outline: none;
		  box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.4);
		}
		
		label a {
  color: #3B82F6;
  text-decoration: underline;
  font-weight: 500;
}
label a:hover {
  color: #60A5FA;
}
		.big-checkbox {
		transform: scale(1.4); /* zwiększa o 40% */
		margin-right: 6px;
		cursor: pointer;
		}
		/* Pasek z logotypami – zostaw jak masz */
		.logo-marquee{
		  overflow: hidden;
		  padding: 20px 0;
		  background: #000;
		  
		  /* możesz zostawić display:flex; justify-content:center; */
		}

		/* tor z logotypami */
		.track{
		  display: flex;
		  gap: 80px;
		  will-change: transform;

		  /* NOWE: niech ma szer. treści i animuje się w kółko */
		  width: max-content;
		  animation: marquee var(--speed, 40s) linear infinite;
		}

		@keyframes marquee{
		  from { transform: translateX(0); }
		  to   { transform: translateX(-50%); } /* tylko połowa, bo treść jest zdublowana */
		}

		/* nie zawijaj elementów i nie pozwól im się kurczyć */
		.track > a{
		  display: inline-flex;
		  align-items: center;
		  justify-content: center;
		  flex: 0 0 auto;
		 
		}

		.track img{
		  width: 160px;
		  height: 80px;
		  object-fit: contain;
		  display: block;
		  opacity: .9;
		  transition: transform .3s ease, opacity .3s ease;

		}
		.track img:hover{
		  transform: scale(1.1);
		  opacity: 1;
		}

		/* (opcjonalnie) pauza na hover */
		.logo-marquee:hover .track { animation-play-state: paused; }

		/* A11y: jeśli użytkownik ogranicza animacje */
		@media (prefers-reduced-motion: reduce){
		  .track { animation: none; transform: none; }
		}
		
.consent-wrap{
  text-align:center;
  max-width:600px;
  margin:0 auto;
}