/* ====== LANDING: NOWA STRONA 2026 ====== */

.ns26 {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: #111;
  width: 100%;
  overflow-x: hidden;
}

/* ── HERO / BANNER ── */
.ns26__hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #111;
  padding-top: 160px;
  text-align: center;
}
@media (max-width: 1200px) { .ns26__hero { padding-top: 140px; } }
@media (max-width: 600px)  { .ns26__hero { padding-top: 110px; } }

/* Force white nav text on dark/transparent header */
body:has(.ns26) .header:not(.header--scrolled) .header__navLink,
body:has(.ns26) .header:not(.header--scrolled) .header__navLink--red,
body:has(.ns26) .header:not(.header--scrolled) a,
body:has(.ns26) .header:not(.header--scrolled) .header__searchBtn {
  color: #fff !important;
}
/* Hamburger lines white on transparent header */
body:has(.ns26) .header:not(.header--scrolled) .header__hamburger span {
  background: #fff;
}

.ns26__heroBanner {
  display: block;
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 12px;
}

/* ── COMMON ── */
.ns26__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.ns26__section {
  padding: 64px 0;
}

.ns26__sectionTitle {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}
.ns26__sectionTitle em {
  font-style: normal;
  color: #e53935;
}

.ns26__sectionSub {
  font-size: 17px;
  text-align: center;
  color: #bbb;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ── INTRO ── */
.ns26__intro {
  background: linear-gradient(180deg, #1a1a1a 0%, #111 100%);
  text-align: center;
  padding: 56px 0 48px;
}
.ns26__introLead {
  font-size: 22px;
  font-weight: 300;
  color: #ccc;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.ns26__introLead strong {
  color: #fff;
  font-weight: 700;
}
.ns26__introLead em {
  font-style: normal;
  color: #e53935;
  font-weight: 700;
}

/* ── STATS ROW ── */
.ns26__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.ns26__stat {
  text-align: center;
}
.ns26__statNum {
  font-size: 48px;
  font-weight: 900;
  color: #e53935;
  line-height: 1;
}
.ns26__statLabel {
  font-size: 14px;
  color: #999;
  margin-top: 8px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .ns26__stats { flex-direction: column; gap: 24px; padding: 32px 0; }
  .ns26__statNum { font-size: 36px; }
}

/* ── RULES / ZASADY ── */
.ns26__rules {
  background: #151515;
}
.ns26__rulesList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ns26__rule {
  background: #1e1e1e;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s;
}
.ns26__rule:hover {
  border-color: #e53935;
}
.ns26__rule--highlight {
  border-color: #e53935;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a1010 100%);
  box-shadow: 0 0 20px rgba(229, 57, 53, 0.15), inset 0 0 30px rgba(229, 57, 53, 0.05);
}
.ns26__rule--highlight .ns26__ruleTitle {
  color: #e53935;
  font-size: 18px;
}
.ns26__rule--highlight .ns26__ruleDesc {
  color: #ccc;
}
.ns26__ruleIcon {
  font-size: 24px;
  color: #e53935;
  flex-shrink: 0;
  margin-top: 2px;
}
.ns26__ruleTitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.ns26__ruleDesc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .ns26__rulesList { grid-template-columns: 1fr; }
}

/* ── HOW TO ── */
.ns26__how {
  background: #111;
}
.ns26__steps {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.ns26__step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  background: #1a1a1a;
  border-radius: 12px;
  padding: 32px 24px;
  border: 1px solid #2a2a2a;
  position: relative;
}
.ns26__stepNum {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #c62828, #e53935);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 16px;
}
.ns26__stepTitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ns26__stepDesc {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}
.ns26__stepBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c62828, #e53935);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ns26__stepBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}
@media (max-width: 768px) {
  .ns26__steps { flex-direction: column; align-items: center; }
}

/* ── CTA ── */
.ns26__cta {
  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  text-align: center;
  padding: 64px 0 80px;
}
.ns26__ctaTitle {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.ns26__ctaTitle em {
  font-style: normal;
  color: #e53935;
}
.ns26__ctaSub {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 36px;
  line-height: 1.6;
}

.ns26__ctaBtns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ns26__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ns26__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.3);
}
.ns26__btn--primary {
  background: linear-gradient(135deg, #c62828, #e53935);
  color: #fff;
}
.ns26__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #e53935;
}
.ns26__btn--secondary:hover {
  background: rgba(229, 57, 53, 0.1);
}

.ns26__ctaNote {
  font-size: 13px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.ns26__ctaNote strong {
  color: #aaa;
}

/* ── DISCLAIMER ── */
.ns26__disclaimer {
  background: #1a1a1a;
  padding: 32px 24px;
  border: 1px solid #e53935;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto 48px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.7;
}
.ns26__disclaimerTitle {
  font-size: 15px;
  font-weight: 800;
  color: #e53935;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── SECTION TITLE RESPONSIVE ── */
@media (max-width: 600px) {
  .ns26__sectionTitle { font-size: 24px; }
  .ns26__sectionSub { font-size: 15px; }
  .ns26__introLead { font-size: 18px; }
  .ns26__ctaTitle { font-size: 22px; }
  .ns26__btn { padding: 14px 24px; font-size: 15px; }
}
