:root{
  --bg:#0b1018;
  --bg-soft:#101826;
  --card:#121b2a;
  --card-2:#162234;
  --text:#f4f1ea;
  --muted:#c6cedb;
  --faint:#8b97ab;
  --primary:#d4af37;
  --primary-strong:#f0c851;
  --primary-soft:rgba(212,175,55,.12);
  --border:rgba(255,255,255,.08);
  --border-strong:rgba(255,255,255,.12);
  --shadow:0 18px 40px rgba(0,0,0,.28);
  --radius:18px;
  --radius-sm:12px;
  --radius-xs:10px;
  --container:1180px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.08), transparent 28%),
    radial-gradient(circle at top left, rgba(255,255,255,.04), transparent 24%),
    linear-gradient(180deg, #0b1018 0%, #0d1320 100%);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.5;
}

img{
  max-width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

/* TYPO */

.h1{
  font-size:clamp(32px, 5vw, 54px);
  line-height:1.08;
  margin:12px 0 0;
  letter-spacing:-.03em;
}

.h2{
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.15;
  margin:10px 0 0;
  letter-spacing:-.02em;
}

.lead{
  color:var(--muted);
  font-size:clamp(16px, 2vw, 19px);
  line-height:1.75;
}

.kicker{
  color:var(--primary);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  font-weight:800;
}

.section{
  padding:56px 0;
}

.sectionHead{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin-bottom:20px;
}

/* NAV */

.nav{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(12px);
  background:rgba(9,14,24,.78);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.navInner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--text);
}

.brandLogoSimple{
  width:46px;
  height:46px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(212,175,55,.18), rgba(212,175,55,.08));
  border:1px solid rgba(212,175,55,.24);
  box-shadow:0 10px 24px rgba(0,0,0,.22);
}

.brandLogoImg{
  width:34px;
  height:34px;
  object-fit:contain;
  display:block;
}

.links{
  display:flex;
  align-items:center;
  gap:4px;
  flex-wrap:wrap;
}

.startStrong{
  color:var(--primary);
  font-weight:800;
}

.nav .links a,
.mobilePanel a,
.footerLinks a{
  position:relative;
  border-radius:10px;
  transition:
    background .18s ease,
    color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
  padding:8px 10px;
}

.nav .links a:hover,
.mobilePanel a:hover,
.footerLinks a:hover{
  background:rgba(212,175,55,.16);
  color:var(--primary);
  transform:translateY(-1px);
  box-shadow:0 0 0 1px rgba(212,175,55,.14) inset;
  text-decoration:none;
}

.nav .links a.active,
.mobilePanel a.active,
.footerLinks a.active{
  color:var(--primary);
  font-weight:800;
  background:rgba(212,175,55,.15);
  box-shadow:
    0 0 0 1px rgba(212,175,55,.25) inset,
    0 0 10px rgba(212,175,55,.2);
}

.actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.facebookIcon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#1877f2;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 24px rgba(24,119,242,.28);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.facebookIcon:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(24,119,242,.38);
  opacity:.96;
}

.facebookIcon svg{
  width:20px;
  height:20px;
  fill:#fff;
  display:block;
}

.mobilePanel{
  display:none;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(10,16,27,.96);
}

.mobilePanel.open{
  display:block;
}

.mobilePanel .container{
  display:grid;
  gap:6px;
  padding:12px 0 16px;
}

.mobilePanel a{
  display:block;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:0 18px;
  border-radius:12px;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:700;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btnPrimary{
  background:linear-gradient(180deg, var(--primary-strong), var(--primary));
  color:#1b1405;
  box-shadow:0 12px 26px rgba(212,175,55,.24);
}

.btnPrimary:hover{
  box-shadow:0 16px 32px rgba(212,175,55,.34);
}

.btnGhost{
  background:rgba(255,255,255,.03);
  color:var(--text);
  border-color:rgba(255,255,255,.08);
}

.btnGhost:hover{
  background:rgba(212,175,55,.10);
  border-color:rgba(212,175,55,.22);
  color:var(--primary);
}

.btnSmall{
  min-height:40px;
  padding:0 14px;
  font-size:14px;
}

.hamburger{
  display:none;
}

/* CARDS */

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--primary);
  box-shadow:0 0 0 6px rgba(212,175,55,.12);
}

/* START / HERO */

.hero{
  padding:38px 0 26px;
}

.heroGrid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
}

.heroMain,
.heroSide{
  padding:28px;
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.heroQuote{
  margin-top:20px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
  color:var(--muted);
}

.noticeBox{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:start;
  padding:18px 20px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,196,0,.10), rgba(255,196,0,.05));
  border:1px solid rgba(212,175,55,.22);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.noticeIcon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(212,175,55,.14);
  color:var(--primary);
  font-size:24px;
  font-weight:800;
  flex-shrink:0;
}

.noticeText h3{
  margin:0 0 6px;
  color:var(--text);
  font-size:20px;
  line-height:1.2;
}

.noticeText p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.miniGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.mini{
  padding:16px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  display:flex;
  flex-direction:column;
  gap:6px;
}

.mini strong{
  color:var(--text);
}

.mini em{
  font-style:normal;
  color:var(--muted);
}

.mapWrap{
  overflow:hidden;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  box-shadow:0 14px 30px rgba(0,0,0,.22);
}

.mapWrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}

.miniMap{
  margin-top:14px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.miniMap iframe{
  width:100%;
  height:180px;
  border:0;
  display:block;
}

.weaponsGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.weaponCard{
  padding:22px;
}

.weaponCard h3{
  margin:0 0 10px;
}

.weaponCard p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.weaponIcon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.22);
  font-size:24px;
  margin-bottom:14px;
}

.counterGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.counterCard{
  padding:24px;
  text-align:center;
}

.counterNumber{
  font-size:46px;
  font-weight:800;
  color:var(--primary);
  line-height:1;
}

.counterSub{
  margin-top:10px;
  color:var(--faint);
  font-size:14px;
}

.counterLabel{
  margin-top:8px;
  color:var(--muted);
  font-weight:700;
}

.nextEventBanner{
  overflow:hidden;
}

.nextEventInner{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  padding:26px;
}

.nextEventTitle{
  margin:12px 0 0;
  font-size:clamp(24px, 3vw, 36px);
  line-height:1.12;
}

.nextEventMeta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.tag .a,
.tag .p,
.tag .w{
  width:9px;
  height:9px;
  border-radius:999px;
  display:inline-block;
}

.tag .a{ background:var(--primary); }
.tag .p{ background:#5db7ff; }
.tag .w{ background:#64d38a; }

.nextCountdown{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

.countBox{
  min-width:150px;
  padding:16px 18px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  text-align:center;
}

.countBox b{
  display:block;
  font-size:38px;
  line-height:1;
  color:var(--primary);
}

.countBox span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:14px;
  white-space:nowrap;
}

.nextEventRight{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.bigDate{
  font-size:clamp(28px, 4vw, 48px);
  font-weight:800;
  line-height:1.05;
  color:var(--text);
}

/* COMMON PAGE BLOCKS */

.pageHeroCompact{
  padding:56px 0 12px;
}

.introCard,
.infoCard,
.contentCard,
.summaryCard,
.noteCard{
  padding:24px;
}

.cardGrid2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}

.cardGrid3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.miniCard{
  padding:22px;
  height:100%;
}

.numBadge{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(212,175,55,.14);
  border:1px solid rgba(212,175,55,.28);
  color:var(--primary);
  font-weight:800;
  margin-bottom:14px;
}

.cleanList{
  margin:14px 0 0;
  padding-left:20px;
  color:var(--muted);
}

.cleanList li{
  margin:8px 0;
  line-height:1.65;
}

.formulaBox{
  margin-top:16px;
  padding:16px 18px;
  border-radius:14px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.22);
  color:var(--text);
  font-weight:800;
}

.chipRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.chipGold{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.22);
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

/* NEWS / AKTUALNOSCI */

.newsGrid{
  display:grid;
  gap:20px;
}

.newsCard{
  padding:24px;
}

.newsTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.newsBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.22);
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.newsDate{
  color:var(--faint);
  font-size:14px;
  font-weight:700;
}

.newsActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.blueNote{
  margin-top:16px;
  padding:16px 18px;
  border-radius:14px;
  background:rgba(24,119,242,.12);
  border:1px solid rgba(24,119,242,.25);
  color:var(--text);
}

.postGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.postCard{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding:0;
}

.postImage{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111827;
}

.postImage img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.postBody{
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
  flex:1;
}

.postMeta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.postBadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(212,175,55,.10);
  border:1px solid rgba(212,175,55,.22);
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.postDate{
  color:var(--faint);
  font-size:14px;
  font-weight:700;
}

/* GALLERY */

.galleryGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:20px;
  margin-top:20px;
}

.galleryCard{
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding:0;
}

.galleryThumb{
  position:relative;
  display:block;
  width:100%;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#111827;
  cursor:zoom-in;
}

.galleryThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .25s ease, filter .25s ease;
}

.galleryThumb::after{
  content:"Powiększ";
  position:absolute;
  right:14px;
  bottom:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.03em;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .22s ease, transform .22s ease;
  pointer-events:none;
}

.galleryCard:hover .galleryThumb img{
  transform:scale(1.04);
  filter:brightness(1.04);
}

.galleryCard:hover .galleryThumb::after{
  opacity:1;
  transform:translateY(0);
}

.galleryContent{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.galleryContent h3{
  margin:0;
  font-size:19px;
  line-height:1.2;
}

.galleryContent p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

/* LIGHTBOX */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:9999;
  cursor:pointer;
}

.lightbox.show{
  display:flex;
}

.lightbox img{
  max-width:92%;
  max-height:92%;
  border-radius:14px;
  box-shadow:0 20px 50px rgba(0,0,0,.45);
  background:#111827;
  display:block;
}

/* FOOTER */

.footer{
  margin-top:40px;
  border-top:1px solid rgba(255,255,255,.06);
  background:rgba(8,12,20,.72);
}

.footerInner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:18px 0;
}

.footerLinks{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
}

.footerStrong a{
  color:var(--primary);
  font-weight:800;
  text-decoration:none;
}

.footerStrong a:hover{
  text-decoration:underline;
}

.footerDesktopMenu{
  display:flex;
}

/* RESPONSIVE */

@media (max-width: 1180px){
  .weaponsGrid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .counterGrid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .galleryGrid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .cardGrid3{
    grid-template-columns:1fr;
  }
}

@media (max-width: 980px){
  .heroGrid,
  .nextEventInner,
  .cardGrid2,
  .postGrid{
    grid-template-columns:1fr;
  }

  .links{
    display:none;
  }

  .hamburger{
    display:inline-flex;
  }
}

@media (max-width: 760px){
  .section{
    padding:44px 0;
  }

  .heroMain,
  .heroSide,
  .newsCard,
  .introCard,
  .infoCard,
  .contentCard,
  .summaryCard,
  .noteCard,
  .miniCard{
    padding:20px;
  }

  .galleryGrid,
  .weaponsGrid,
  .counterGrid,
  .miniGrid{
    grid-template-columns:1fr;
  }

  .noticeBox{
    grid-template-columns:1fr;
  }

  .noticeIcon{
    width:40px;
    height:40px;
  }

  .mapWrap iframe{
    height:300px;
  }

  .footerDesktopMenu{
    display:none;
  }

  .footerInner{
    justify-content:center;
    text-align:center;
  }
}

@media (max-width: 480px){
  .container{
    width:min(var(--container), calc(100% - 20px));
  }

  .countBox{
    min-width:100%;
  }
}

.footerDesktopMenu{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

@media (max-width:760px){
  .footerDesktopMenu{
    display:none !important;
  }

  .footerInner{
    justify-content:center;
    text-align:center;
  }
}

