/* ======== HEADER ======== */
a { color: aliceblue; text-decoration: none; }
header { background: #000; color: #fff; }

.pasek{
  position: relative; /* do burgera na mobile */
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1900px; min-width: 50%; height: 90px; margin: auto; padding: 0 8px;
}

/* Lewa część – tylko własna szerokość */
.lewa_pasek{ display: flex; align-items: center; flex: 0 0 auto; min-width: fit-content; }
.logo-link{ display: inline-flex; align-items: center; height: 90px; color:#fff; padding: 0 10px; }
.brand{
  font-family: 'Lilita One', sans-serif; font-size: clamp(28px, 4.4vw, 44px);
  letter-spacing:.2px; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  text-shadow: 0 0 10px rgba(255,0,204,.12), 0 0 14px rgba(0,183,255,.12);
}
.logo-link:hover .brand{
  background: linear-gradient(90deg, #ff00cc, #00b7ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Prawa część */
.prawa_pasek{ display:flex; justify-content:flex-end; align-items:center; }
.nav-list{ margin:0; padding:0; list-style:none; display:flex; height:90px; align-items:center; gap:10px; }
.nav-item{ display:block; }
.nav-link{ color: aliceblue; padding:8px 14px; font-size:24px; border-radius:10px; transition: color .2s, background .2s, transform .08s; }
.nav-link:hover, .nav-link.aktywna{ color:#fff; background: rgba(255,255,255,.06); transform: translateY(-1px); }

/* Burger */
.menu{ display:none; background:#000; color:#fff; border:none; font-size:16px; padding:10px 20px; cursor:pointer; z-index:10001; position:relative; border-radius:12px; }
.menu:focus{ outline:none; }
.menu span{ display:block; width:35px; height:3px; background:#fff; margin-bottom:7px; transition: background .3s; }
.menu:hover span{ background:#00b7ff; }
.menu:hover{ background:#313030; color:#00b7ff; }

/* Mobile: brand na środku, burger po prawej krawędzi */
@media (max-width: 777px){
  .prawa_pasek{ display:none; }
  .lewa_pasek{ margin: 0 auto; } /* wyśrodkowanie nazwy */
  .menu{
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    position:absolute; right:8px; top:50%; transform: translateY(-50%);
  }
}

/* Fullscreen menu */
.fullscreen-menu{
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(10px);
  display: none; justify-content: center; align-items: center; z-index: 10000;
}
.fullscreen-nav{ list-style: none; padding: 0; margin: 0; text-align: center; }
.fullscreen-link{
  display: block; font-size: 48px; color: #fff; margin: 20px 0;
  font-family: 'Lilita One', sans-serif; transition: color .3s ease, transform .12s ease;
}
.fullscreen-link:hover{ color:#00b7ff; transform: translateY(-1px); }

/* ======== TŁO / LAYOUT ======== */
html, body {
  margin: 0; min-height: 100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #fff; overflow-x: hidden;
  background: #000; /* particles */
}
#particles-js{ top: 90px; position: fixed; width: 100%; height: 100%; z-index: 0; }

.container{ width: min(1100px, 92vw); margin: 0 auto; }
.main-scroll{
  position: relative; z-index: 1; /* nad particles */
  max-width: 1100px; width: 92%; margin: 32px auto 40px;
  max-height: calc(100vh - 90px - 80px); /* header 90px, footer ~80px */
  overflow: auto; padding-bottom: 8px;
  scrollbar-width: thin;
}

/* Sekcje + reveal */
.section{ padding: 56px 0; }
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

.badge{
  display:inline-block; padding:6px 12px; margin-bottom:12px;
  border-radius:999px; font-weight:700; font-size:12px; letter-spacing:.4px;
  background: linear-gradient(90deg, #ff00cc33, #00b7ff33);
  border:1px solid rgba(255,255,255,.18);
}
.gradient-title{
  background: linear-gradient(90deg, #ff00cc, #00b7ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0 8px; font-size: clamp(28px, 4.2vw, 44px); line-height: 1.1; text-align:center;
}
.lead{ text-align:center; color:#e1e1e1; margin: 8px 0 0; }

/* ======== KARTY / PLACEHOLDER ======== */
.card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 18px;
  transition: transform .12s, box-shadow .2s, border-color .2s;
  color:#fff; text-decoration:none;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.card:hover{ transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.45); border-color: rgba(0,183,255,.35); }

.card--placeholder h2{
  margin: 4px 0 12px; text-align:center; font-size: clamp(20px, 3.2vw, 28px);
}
.placeholder-media{
  display:flex; justify-content:center; align-items:center; margin: 8px 0 12px;
}
.placeholder-media img{
  width: min(520px, 90%); height: auto; display:block; border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 20px rgba(0,0,0,.5);
}
.muted{ color:#cfcfcf; text-align:center; margin: 0 0 12px; }

/* Przyciski */
.hero-cta{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px; border-radius: 14px; font-weight: 600; font-size: 16px;
  border: 1px solid rgba(255,255,255,0.18); cursor: pointer;
  transition: transform .1s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  color:#fff; text-decoration:none;
}
.btn-primary{ background: linear-gradient(90deg, #ff00cc40, #00b7ff40); box-shadow: 0 0 12px rgba(255,0,204,0.2), 0 0 16px rgba(0,183,255,0.2); }
.btn-primary:hover{ background: linear-gradient(90deg, #ff00cc66, #00b7ff66); transform: translateY(-2px); box-shadow: 0 0 16px rgba(255,0,204,0.35), 0 0 22px rgba(0,183,255,0.35); }
.btn-ghost{ background: transparent; }
.btn-ghost:hover{ background: rgba(255,255,255,0.08); transform: translateY(-2px); }

/* FOOTER */
footer{ text-align:center; padding: 1rem 0 2rem; color:#fff; }

/* ===== Całkowicie ukryj scrollbary ===== */

/* Viewport (strona) */
html, body {
  -ms-overflow-style: none;   /* IE / stary Edge */
  scrollbar-width: none;      /* Firefox */
}

/* Chrome / Edge / Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.main-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.main-scroll::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

html { scrollbar-gutter: stable both-edges; }
