/* styles.css — FULL */

:root{
  --bg-main:#ff3b30;
  --btn-green:#12cf12;
  --text-dark:#1a1a1a;
}

*{ box-sizing:border-box; margin:0; padding:0; }

body{
  background: var(--bg-main);
  font-family:'Inter',sans-serif;
  padding:40px 15px;
  color:var(--text-dark);
  display:flex;
  justify-content:center;
}

.container{ width:100%; max-width:1000px; }

/* =========================
   HEADER
   ========================= */
header{ text-align:center; margin-bottom:28px; color:#fff; }
.logo{
  font-size:56px;
  font-weight:900;
  letter-spacing:-2px;
  line-height:1;
}
.logo .up{ color:#00ff6a; display:inline-block; transform:translateY(-2px); }

.subtitle{
  font-size:14px;
  font-weight:700;
  opacity:.92;
  margin-top:6px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.header-points{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.chip{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color:#fff;
  font-weight:800;
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
}

/* =========================
   CARD
   ========================= */
.card{
  background:#fff;
  border-radius:24px;
  margin-bottom:25px;
  position:relative;
  border:0;
  outline:0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  transition:transform .25s ease;
  display:flex;
  align-items:center;
  padding:30px 35px;
  gap:25px;
}
.card:hover{ transform: translateY(-4px); }

/* Space for floating badge */
.card.has-badge{ padding-top:38px; }

/* PULSE for first card */
.card.pulse{ animation: topPulse 2.2s ease-in-out infinite; }
@keyframes topPulse{
  0%{ transform:translateY(0) scale(1); }
  50%{ transform:translateY(-6px) scale(1.01); }
  100%{ transform:translateY(0) scale(1); }
}

/* =========================
   FLOATING BADGE (replaces notch)
   ========================= */
.notch, .notch-cover-up{ display:none !important; } /* на всякий випадок, якщо десь лишилось */

.badge-float{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  z-index:20;
  pointer-events:none;
}

.badge-pill{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  padding:10px 18px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}

/* =========================
   LOGO COLUMN (image in circle)
   ========================= */
.col-logo{ flex:0 0 110px; }

.circle-logo{
  width:100px;
  height:100px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  /* дефолт — білий фон */
  background:#fff;

  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
  overflow:hidden;
}

.circle-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* ✅ ЧЕРВОНИЙ ФОН під логами PZBUK і BETCLIC */
.circle-logo.is-red-bg{
  background: var(--bg-main);
}

.circle-logo:focus-visible{
  outline:3px solid rgba(0,0,0,.25);
  outline-offset:2px;
}

/* =========================
   BONUS COLUMN
   ========================= */
.col-bonus{
  flex:0 0 170px;
  text-align:center;
  border-right:1px solid #eaeaea;
  padding-right:20px;
}

.new-price{
  font-size:38px;
  font-weight:900;
  line-height:1;
  margin:2px 0;
  color:var(--text-dark);
  display:block;
}

.bonus-txt{
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  color:#666;
}

/* =========================
   FEATURES
   ========================= */
.col-features{ flex:1; padding:0 15px; }

.features-list{
  list-style:none;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 15px;
}

.features-list li{
  font-size:14px;
  font-weight:500;
  position:relative;
  padding-left:18px;
  line-height:1.3;
}

.features-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0;
  color:var(--btn-green);
  font-size:12px;
  font-weight:900;
}

/* =========================
   ACTIONS
   ========================= */
.col-actions{ flex:0 0 180px; display:flex; flex-direction:column; gap:10px; }

.btn-copy{
  background:#f8f9fa;
  border:2px dashed #bbb;
  color:var(--text-dark);
  border-radius:12px;
  padding:12px;
  font-size:14px;
  font-weight:800;
  text-align:center;
  cursor:pointer;
  transition:all .2s ease;
  user-select:none;
}
.btn-copy:hover{ background:#eee; border-color:#888; }

.btn-odbierz{
  background:var(--btn-green);
  color:#fff;
  text-decoration:none;
  padding:15px;
  border-radius:12px;
  font-weight:900;
  font-size:16px;
  text-align:center;
  text-transform:uppercase;
  transition:transform .2s, filter .2s;
}
.btn-odbierz:hover{ transform:scale(1.03); filter:brightness(1.05); }

/* =========================
   AD BANNER
   ========================= */
.ad-wrap{
  background: rgba(255,255,255,0.12);
  border: 1px dashed rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 14px;
  margin: 18px 0 22px;
}

.ad{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  background: rgba(0,0,0,0.08);
  text-decoration:none;
}

.ad img{
  width:100%;
  height:auto;
  display:block;
}

.ad-mobile{ display:none; }

/* =========================
   CONTENT BOX (big text)
   ========================= */
.content-box{
  margin-top:18px;
  background:#fff;
  border-radius:24px;
  padding:28px 30px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}

.content-box h2{
  font-size:26px;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:12px;
}

.content-box h3{
  font-size:18px;
  font-weight:900;
  margin-top:18px;
  margin-bottom:8px;
}

.content-box p{
  font-size:14px;
  font-weight:500;
  color:#2b2b2b;
  line-height:1.75;
  margin-top:10px;
}

.text-list{
  margin-top:12px;
  padding-left:18px;
  display:grid;
  gap:8px;
}

.text-list li{
  font-size:14px;
  font-weight:500;
  color:#2b2b2b;
  line-height:1.6;
}

.qa-list{
  margin-top:10px;
  list-style:none;
  display:grid;
  gap:8px;
  padding-left:0;
}

.qa-list li{
  position:relative;
  padding-left:18px;
  font-size:14px;
  font-weight:500;
  color:#2b2b2b;
  line-height:1.55;
}

.qa-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color: var(--btn-green);
  font-weight:900;
}

.callout{
  margin-top:18px;
  padding:16px 16px;
  border-radius:16px;
  background: rgba(18, 207, 18, 0.08);
  border: 1px solid rgba(18, 207, 18, 0.18);
}

.callout p{ margin-top:8px; }
.callout p:first-child{ margin-top:0; }

/* =========================
   FOOTER NOTE
   ========================= */
.footer-note{
  color: rgba(255,255,255,.85);
  font-weight:700;
  font-size:12px;
  text-align:center;
  margin:18px 0 6px;
}

/* =========================
   COOKIE
   ========================= */
.cookie-overlay{
  position:fixed;
  bottom:18px;
  left:50%;
  transform:translateX(-50%) translateY(160%);
  width:calc(100% - 22px);
  max-width:720px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 36px rgba(0,0,0,.22);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  z-index:9999;
  opacity:0;
  transition:transform .55s cubic-bezier(0.16,1,0.3,1), opacity .55s ease;
}
.cookie-overlay.show{ transform:translateX(-50%) translateY(0); opacity:1; }

.cookie-content{ flex:1; padding-right:14px; }
.cookie-title{
  font-size:14px;
  font-weight:900;
  color:#1a1a1a;
  margin-bottom:6px;
  display:flex;
  align-items:center;
  gap:8px;
}
.cookie-text{ font-size:12px; font-weight:500; color:#666; line-height:1.45; margin:0; }
.cookie-text a{ color:#1a1a1a; font-weight:800; text-decoration:underline; }
.cookie-actions{ display:flex; gap:10px; flex-shrink:0; }

.btn-cookie-accept{
  background:#12cf12;
  color:#fff;
  border:none;
  border-radius:14px;
  padding:10px 16px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  cursor:pointer;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width:800px){
  body{ padding:20px 8px; }
  .logo{ font-size:42px; }

  .header-points{ gap:8px; }
  .chip{ font-size:11px; padding:7px 10px; }

  .card{
    padding:15px 12px 12px;
    border-radius:20px;
    display:grid;
    grid-template-columns:70px 1fr;
    grid-template-areas:
      "logo bonus"
      "feat feat"
      "acts acts";
    gap:10px;
  }

  .card.has-badge{ padding-top:34px; }

  .badge-float{ top:-12px; }
  .badge-pill{ padding:8px 12px; font-size:10px; }

  .col-logo{ grid-area:logo; display:flex; align-items:center; justify-content:center; }
  .circle-logo{ width:65px; height:65px; }
  .circle-logo img{ width:100%; height:100%; }

  .col-bonus{
    grid-area:bonus;
    border:none;
    text-align:left;
    padding:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
  }
  .new-price{ font-size:26px; margin:0; display:inline-block; }
  .bonus-txt{ font-size:11px; margin-top:2px; }

  .col-features{
    grid-area:feat;
    padding:8px 0;
    border-top:1px dashed #eee;
    border-bottom:1px dashed #eee;
  }
  .features-list{ grid-template-columns:1fr 1fr; gap:6px 10px; }
  .features-list li{ font-size:11px; padding-left:14px; }
  .features-list li::before{ font-size:10px; top:1px; }

  .col-actions{ grid-area:acts; flex-direction:row; align-items:center; gap:8px; }
  .btn-copy{ flex:1; padding:10px 5px; font-size:11px; }
  .btn-odbierz{ flex:1; padding:10px 5px; font-size:13px; }

  .ad-desktop{ display:none; }
  .ad-mobile{ display:block; }

  .content-box{ border-radius:20px; padding:18px 16px; }
  .content-box h2{ font-size:20px; }
  .content-box h3{ font-size:16px; }
  .content-box p, .text-list li, .qa-list li{ font-size:13px; }

  .cookie-overlay{
    bottom:12px;
    padding:12px 12px;
    border-radius:16px;
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
  .cookie-content{ padding-right:0; }
  .cookie-actions{ width:100%; }
  .btn-cookie-accept{ width:100%; padding:12px 14px; font-size:13px; }
}
/* IMAGE LOGO (replaces .logo text) */
.site-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.site-logo img{
  display:block;
  height:64px;       /* розмір на ПК */
  width:auto;
  max-width:92vw;    /* щоб не вилізало за екран */
  object-fit:contain;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.18));
}

/* responsive logo size */
@media (max-width:800px){
  .site-logo img{
    height:48px;
  }
}