/* Reset */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #000;
}

a{ color: inherit; text-decoration: none; }

/* Layout */
.page{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 56px);
}

/* Tło: bez przyciemniania */
.bg{
  position: absolute;
  inset: 0;
  background: url("tlo.jpg") center / cover no-repeat;
  transform: scale(1.02);
  z-index: 0;
}

/* Kontener treści — całkowicie przezroczysty, bez rogów/cieni */
.wrap{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Header */
.top{
  display: flex;
  justify-content: center;
  padding: 22px 22px 10px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
}

.logo{
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.45));
}

.brand-name{
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

/* Content */
.content{
  padding: clamp(18px, 4vw, 52px);
  padding-top: 14px;
  text-align: center;
}

.title{
  margin: 6px 0 12px;
  font-size: clamp(38px, 5.3vw, 64px);
  line-height: 1.02;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0 18px 50px rgba(0,0,0,0.60);
}

.lead{
  margin: 0 auto 24px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,1);
  text-shadow: 0 18px 44px rgba(0,0,0,0.55);
}

/* Countdown — białe liczby */
.countdown{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 16px auto 22px;
  width: 100%;
}

.time{
  display: grid;
  justify-items: center;
  gap: 6px;
  min-width: 64px;
}

.num{
  display:block;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0,0,0,0.60);
}

.lbl{
  display:block;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,1);
  text-shadow: 0 18px 36px rgba(0,0,0,0.55);
}

.sep{
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,1);
  transform: translateY(-6px);
  text-shadow: 0 18px 36px rgba(0,0,0,0.55);
}

/* Social */
.social{
  display:flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.social-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: transform 0.12s ease, opacity 0.15s ease;
  opacity: 0.92;
}

.social-icon:hover{
  transform: translateY(-1px);
  opacity: 1;
}

.social-icon svg{
  width: 22px;
  height: 22px;
  fill: #fff;              /* białe ikonki */
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.45));
}
/* Footer */
.footer{
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,1);
  text-shadow: 0 18px 36px rgba(0,0,0,0.55);
  padding-bottom: 6px;
}

/* RWD */
@media (max-width: 520px){
  .countdown{ gap: 10px; }
  .sep{ display:none; }
  .brand-name{ font-size: 14px; letter-spacing: 0.14em; }
  .title{ letter-spacing: 0.08em; }
}
/* Delikatne odcięcie tekstu od tła: miękki czarny cień + lekka "poświata" */
.brand-name,
.lead,
.lbl,
.social-link,
.footer{
  text-shadow:
    0 1px 1px rgba(0,0,0,0.55),
    0 6px 14px rgba(0,0,0,0.45),
    0 14px 30px rgba(0,0,0,0.30);
}

/* Średnie elementy */
.sep{
  text-shadow:
    0 1px 1px rgba(0,0,0,0.55),
    0 8px 18px rgba(0,0,0,0.42);
}

/* Duże — tytuł i liczby (mocniej, bo duże pola jasne na tle) */
.title,
.num{
  text-shadow:
    0 2px 2px rgba(0,0,0,0.60),
    0 12px 26px rgba(0,0,0,0.48),
    0 22px 46px rgba(0,0,0,0.32);
}
.bg::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.20),
    rgba(255,255,255,0.08)
  );
  pointer-events: none;
}


.bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.10);
  pointer-events:none;
}