@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* =========================================================
   Dove Men+Care × FIFA 2026 — Nagradna igra
   Design tokens + global layout
   Source: Figma "DMC Fifa 2026 desktop.fig"
   ========================================================= */

:root {
  --c-purple:   #706CAD;
  --c-blue:     #263D83;
  --c-blue-2:   #1961AA;
  --c-mint:     #73C8C1;
  --c-yellow:   #E2DA15;
  --c-white:    #ffffff;
  --c-black:    #000000;
  --c-shadow:   rgba(0,0,0,0.25);
  --c-error:    #ff6b6b;
  --c-success:  #5ed3a1;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 23px;
  --r-pill: 999px;
  --ff: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --t-hero:        clamp(48px, 8.5vw, 109px);
  --t-hero-sub:    clamp(30px, 5.2vw, 67px);
  --t-section:     clamp(32px, 4vw, 56px);
  --t-section-sub: clamp(22px, 2.4vw, 36px);
  --t-h3:          clamp(22px, 2vw, 30px);
  --t-body-lg:     clamp(18px, 1.6vw, 25px);
  --t-body:        clamp(15px, 1.1vw, 18px);
  --t-meta:        clamp(13px, 0.95vw, 16px);
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 80px);
  --header-h: 96px;
  --header-logo-h: 60px;
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --header-logo-h: 40px;
  }
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  font-weight: 500;
  color: var(--c-blue);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: var(--t-body);
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
ol, ul { padding: 0; margin: 0; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--c-purple);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  position: relative;
}
.site-header__home {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}
.site-header__logo {
  height: 416px;
    width: auto;
    display: block;
    position: absolute;
    top: 0px;
}
@media (min-width: 1620px) {
  .site-header__logo {
    height: 516px;
      top: -12px;
  }
}

@media (min-width: 1400px) and (max-width: 1619px) {
  .site-header__logo {
      height: 516px;
      top: -12px;
  }
}

@media (max-width: 992px) {
  .site-header__logo {
    height: 212px;
    top: 19px;
}
}

.nav {
  display: flex;
  gap: clamp(28px, 5vw, 100px);
  align-items: center;
}
.nav a {
  color: var(--c-white);
  font-size: clamp(16px, 1.4vw, 25px);
  font-weight: 700;
  padding: 8px 4px;
  position: relative;
  transition: opacity .15s ease;
}
.nav a:hover { opacity: 0.78; }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--c-mint);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--c-white);
  padding: 8px;
  border-radius: var(--r-sm);
  z-index: 2;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 768px) {
  .nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--c-purple);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 50px 0 16px;
    transform: translateY(-121%);
    transition: transform .28s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    pointer-events: none;
  }
  .nav.open { transform: translateY(-17%); pointer-events: auto; }
  .nav a {
    padding: 16px clamp(20px, 5vw, 40px);
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 18px;
  }
  .nav a.active::after { display: none; }
  .nav a.active { background: rgba(255,255,255,0.08); }
  .nav-toggle { display: inline-grid; place-items: center; margin-left: auto; }

  .prijava_bg::before{
    width: 104%!important;
  }
  .prijava_bg_right{
    display: none;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(38px, 7vw, 50px) var(--gutter);
}
.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer__copy {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Back-to-top */
.btt {
  position: fixed;
  right: clamp(20px, 4vw, 80px);
  bottom: clamp(20px, 5vw, 98px);
  width: 81px; height: 81px;
  border-radius: 50%;
  background: var(--c-blue);
  border: 1px solid var(--c-mint);
  display: grid; place-items: center;
  z-index: 40;
  transition: transform .15s ease, opacity .25s ease;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { transform: translateY(-3px); }
.btt svg { width: 50px; height: 48px; display: block; }

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(48px, 6vw, 96px) 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: var(--r-lg);
  font-family: var(--ff);
  font-weight: 700;
  font-size: clamp(18px, 1.4vw, 22px);
  border: 0;
  transition: transform .12s ease, box-shadow .15s ease;
  text-align: center;
  line-height: 1;
  cursor: pointer;
}
.btn--primary { background: var(--c-yellow); color: var(--c-blue); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(226,218,21,0.4); }

/* =========================================================
   Page hero (Prijava, Dobitnici)
   ========================================================= */
.page-hero {
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(40px, 5vw, 72px) 0;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.page-hero p { font-size: var(--t-body-lg); max-width: 640px; opacity: 0.9; }
.page-hero .breadcrumb {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* =========================================================
   Winner summary cards
   ========================================================= */
.winner-summary-card {
  background: var(--c-white);
  border: 1px solid rgba(38,61,131,0.12);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.winner-summary-card__label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; color: var(--c-blue); }
.winner-summary-card__value { font-size: clamp(28px, 2.6vw, 40px); font-weight: 700; line-height: 1; color: var(--c-blue); }
.winner-summary-card__meta { font-size: 13px; opacity: 0.75; color: var(--c-blue); }

/* =========================================================
   Honeypot
   ========================================================= */
.dove-hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   Form message
   ========================================================= */
.dove-form-message {
  padding: 16px 20px;
  border-radius: var(--r-lg);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  text-align: center;
}
.dove-form-message.success {
  background: rgba(94,211,161,0.18);
  color: var(--c-success);
  border: 1px solid var(--c-success);
}
.dove-form-message.error {
  background: rgba(255,107,107,0.15);
  color: var(--c-error);
  border: 1px solid var(--c-error);
}

/* =========================================================
   FIGMA 1:1 — Početna (Home)
   ========================================================= */
.fig-home { background: var(--c-blue); }

/* ---- Hero ---- */
.fig-hero {
  position: relative;
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(20px, 7vw, 40px) clamp(20px, 5vw, 80px) clamp(60px, 7vw, 120px);
  overflow: visible;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  gap: clamp(20px, 3vw, 60px);
  align-items: center;
  /* min-height: clamp(420px, 38vw, 640px); */
  max-width: 1728px;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .fig-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 200px;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
    padding-bottom: 40px;
    text-align: center;
    min-height: 0;
    gap: 20px;
  }
}

.fig-hero__home-link {
  position: absolute;
  left: 0;
  top: clamp(-140px, -7.6vw, -80px);
  width: clamp(280px, 30vw, 460px);
  height: clamp(520px, 50vw, 800px);
  z-index: 4;
  display: block;
  cursor: pointer;
}
.fig-hero__home-link:hover .fig-hero__products { transform: translateY(-3px); }
.fig-hero__home-link:hover .fig-hero__teal-shape { transform: scale(1.02); }

.fig-hero__teal-shape {
  position: absolute;
  left: clamp(20px, 6vw, 110px);
  top: 0;
  width: clamp(220px, 22vw, 360px);
  height: clamp(420px, 42vw, 680px);
  background: var(--c-mint);
  border-radius: 50%;
  z-index: 1;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .fig-hero__home-link {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    width: 220px;
    height: 280px;
  }
  .fig-hero__teal-shape {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 200px;
    height: 260px;
  }
  .fig-hero__home-link:hover .fig-hero__teal-shape { transform: translateX(-50%) scale(1.02); }
}

.fig-hero__products {
  position: absolute;
  left: clamp(40px, 7vw, 140px);
  top: clamp(30px, 3vw, 60px);
  width: clamp(160px, 18vw, 290px);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.30));
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .fig-hero__products {
    left: 50%;
    transform: translateX(-50%);
    top: 24px;
    width: 160px;
  }
  .fig-hero__home-link:hover .fig-hero__products { transform: translateX(-50%) translateY(-3px); }
}

.fig-hero__center {
  grid-column: 2;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 28px);
}
@media (max-width: 767px) {
  .fig-hero__center { grid-column: 1; grid-row: 2; justify-self: center; }
  .fig-hero__sub { justify-content: center; }
  .fig-hero__title { font-size: clamp(40px, 11vw, 64px); }
  .fig-hero__sub-text { font-size: clamp(26px, 7vw, 40px); }
  .fig-hero__dmc { width: clamp(80px, 22vw, 120px); }
}

.fig-hero__title {
  font-size: clamp(48px, 7.5vw, 109px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
}

.fig-hero__sub {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: clamp(12px, 1.6vw, 32px);
  flex-wrap: wrap;
}

.fig-hero__sub-text {
  font-size: clamp(32px, 4.8vw, 67px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.fig-hero__dmc {
  width: clamp(100px, 12vw, 192px);
  height: auto;
}

.fig-hero__fifa {
  grid-column: 3;
  width: 100%;
  max-width: clamp(200px, 22vw, 360px);
  height: auto;
  justify-self: end;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.35));
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .fig-hero__fifa {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
    max-width: 180px;
  }
}

/* Hero mid-range: keep 3-column layout, scale down elements */
@media (min-width: 768px) and (max-width: 900px) {
  .fig-hero {
    gap: clamp(12px, 2vw, 28px);
    padding: clamp(16px, 4vw, 36px) clamp(16px, 3vw, 48px) clamp(40px, 5vw, 72px);
  }
  .fig-hero__home-link {
    width: clamp(200px, 27vw, 320px);
    height: clamp(340px, 46vw, 520px);
    top: clamp(-100px, -6vw, -60px);
  }
  .fig-hero__teal-shape {
    width: clamp(160px, 22vw, 280px);
    height: clamp(300px, 42vw, 480px);
  }
  .fig-hero__products {
    width: clamp(120px, 16vw, 220px);
  }
  .fig-hero__fifa {
    max-width: clamp(140px, 18vw, 240px);
  }
}

/* ---- Prizes section ---- */
.fig-prizes-section {
  background: var(--c-blue);
  overflow: hidden;
  position: relative;
}
.fig-prizes__disclaimer {
    color: var(--c-white);
    font-size: clamp(16px, 1.8vw, 30px);
    font-weight: 500;
    /* margin: 50px 0; */
    /* padding: 0 20px; */
    text-align: left;
    display: block;
}

.fig-prizes {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(0px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  z-index: 16;
}
.fig-prize.fig-prize--main{
  margin: auto;
}
/* .fig-prize--main {
  display: flex;
  justify-content: center;
} */
.fig-prize__arch {
    background: var(--c-mint);
    border-radius: 50% 50% 0 0;
    width: clamp(300px, 42vw, 1000px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(48px, 7vw, 100px) clamp(24px, 4vw, 56px) 0;
    gap: clamp(8px, 1vw, 14px);
    text-align: center;
    overflow: hidden;
    display: block;
}
.fig-prize__arch-title {
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 700;
  color: var(--c-yellow);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
}
.fig-prize__arch-desc {
  font-size: clamp(13px, 1.4vw, 30px);
  color: var(--c-white);
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.fig-prize__arch-img {
  /* width: 90%; */
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.28));
  margin-top: clamp(12px, 2vw, 28px);
  flex-shrink: 0;
}

.fig-prizes__row {
  display: flex;
  /* overflow: hidden; */
}

.fig-prize--weekly,
.fig-prize--daily {
  flex: 1;
  display: flex;
}
.fig-prize--daily  { justify-content: flex-start; }
.fig-prize--weekly { justify-content: flex-end; }

.fig-prize__circle {
  position: relative;
  background: var(--c-mint);
  border-radius: 50%;
  width: clamp(260px, 40vw, 550px);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 16px);
  padding: clamp(28px, 5vw, 72px);
  text-align: center;
  flex-shrink: 0;
}
section.fig-prizes-section::after {
    content: "";
    position: absolute;
    width: 55%;
    height: 72%;
    background: var(--c-purple);
    left: 0;
    bottom: 0;
    z-index: 1;
    border-radius: 0 50% 0 0;
}
.fig-prize__circle--left  { margin-left:  clamp(-80px, -5vw, -20px); }
.fig-prize__circle--right { margin-right: clamp(-80px, -5vw, -20px); }

@media (max-width: 900px) {
  .fig-prize__arch {
    width: min(88vw, 420px);
  }
  .fig-prizes__row {
    flex-direction: column;
    overflow: visible;
  }
  .fig-prize--weekly,
  .fig-prize--daily {
    justify-content: center;
  }
  .fig-prize__circle {
    width: min(92vw, 460px);
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 32px;
  }
  .fig-prize__copy { align-items: center; }
  .fig-prize__media-img { width: clamp(100px, 36vw, 200px); }
}

.fig-prize__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.8vw, 12px);
  z-index: 9999;
}
.fig-prize__count {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--c-yellow);
  line-height: 1;
}
.fig-prize__title {
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 700;
  color: var(--c-yellow);
  line-height: 1;
  letter-spacing: 0.01em;
}
.fig-prize__desc {
  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.3;
  margin: clamp(8px, 1vw, 16px) 0 0;
}
.fig-prize__media {
  display: grid;
  place-items: center;
  margin-top: clamp(8px, 1vw, 16px);
  z-index: 99999;
}

.fig-prize__media-img {
  width: clamp(101px, 22vw, 252px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.28));
}

/* ---- Kako učestvuješ ---- */
.fig-howto {
  background: var(--c-blue-2);
  color: var(--c-white);
  padding: clamp(64px, 8vw, 80px) clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
}
.fig-howto__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 40px);
  max-width: 900px;
}
.fig-howto__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(8px, 1vw, 16px);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.3;
}
.fig-howto__num { font-weight: 700; color: var(--c-yellow); }
.fig-howto__hl  { color: var(--c-yellow); font-weight: 700; }
a.fig-howto__hl { display: block; }
a.fig-howto__hl:hover { opacity: 0.85; }

.fig-howto__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
}
.fig-howto__teal {
  position: absolute;
  width: 80%; height: 92%;
  background: var(--c-mint);
  border-radius: 50%;
  z-index: 0;
}
.fig-howto__products {
  position: relative;
  z-index: 1;
  width: 70%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.3));
}

/* ---- Prijava band ---- */
.fig-prijava {
  position: relative;
  background: var(--c-blue);
  padding: clamp(64px, 8vw, 135px) clamp(20px, 5vw, 80px) clamp(48px, 6vw, 100px);
  overflow: hidden;
}
.prijava_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--c-blue-2);
}
.prijava_bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 95%;
    height: 100%;
    background: var(--c-purple);
    border-radius: 0 44% 0 0;
}
.prijava_bg_right {
    background: var(--c-mint);
    position: absolute;
    width: 35%;
    height: 80%;
    bottom: -10%;
    right: -9%;
}
.prijava_bg_right::after {
    position: absolute;
    content: "";
    background: var(--c-mint);
    width: 100%;
    height: 54%;
    border-radius: 50%;
    top: -26%;
}
/* .prijava_bg::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: 0%;
    width: 40%;
    height: 90%;
    background: var(--c-mint);
    border-radius: 50% 50% 0 0;
} */
/* .fig-prijava::before {
  content: "";
  position: absolute;
  right: clamp(-100px, -6vw, -40px);
  top: clamp(-100px, -8vw, -40px);
  width: clamp(200px, 20vw, 320px);
  height: clamp(280px, 28vw, 460px);
  background: var(--c-mint);
  border-radius: 50%;
  z-index: 0;
}
.fig-prijava::after {
  content: "";
  position: absolute;
  right: clamp(-200px, -16vw, -80px);
  bottom: clamp(-160px, -12vw, -60px);
  width: clamp(360px, 36vw, 600px);
  height: clamp(440px, 44vw, 720px);
  background: var(--c-mint);
  border-radius: 50%;
  z-index: 0;
} */
.fig-prijava__legal {
  margin: clamp(40px, 5vw, 80px) auto 0;
  text-align: center;
  color: var(--c-white);
  font-size: clamp(16px, 1.6vw, 30px);
  font-weight: 500;
  max-width: 1120px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ---- Fig form ---- */
.fig-form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 28px);
  position: relative;
  z-index: 2;
}
.fig-form__title {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--c-white);
  text-align: center;
  line-height: 1;
  margin: 0 0 clamp(8px, 1.5vw, 24px);
}

.fig-field input {
  width: 100%;
  background: rgb(217, 217, 217);
  border: 0;
  border-radius: 23px;
  padding: 0 clamp(20px, 2.5vw, 40px);
  font-family: var(--ff);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 25px);
  color: var(--c-blue);
  outline: 0;
  transition: box-shadow 0.15s, background 0.15s;
  height: clamp(60px, 7vw, 80px);
  box-sizing: border-box;
}
.fig-field input::placeholder { color: rgba(0,0,0,0.5); font-weight: 500; }
.fig-field input:focus { background: rgb(235,235,235); box-shadow: 0 0 0 3px var(--c-mint); }
.fig-field--error input { box-shadow: 0 0 0 3px var(--c-error); }

.fig-pfr {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: clamp(8px, 1vw, 16px);
}
.fig-pfr__label {
  color: var(--c-white);
  font-size: clamp(18px, 2vw, 35px);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.01em;
}
.fig-pfr__row {
  display: flex;
  gap: clamp(6px, 0.8vw, 14px);
  align-items: center;
  width: 100%;
}
.fig-pfr__row input {
  flex: 1 1 0;
  width: auto;
  background: rgb(217, 217, 217);
  border: 0;
  border-radius: 23px;
  padding: 0 8px;
  font-family: var(--ff);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 25px);
  color: var(--c-blue);
  outline: 0;
  transition: box-shadow 0.15s, background 0.15s;
  height: clamp(60px, 7vw, 80px);
  text-align: center;
  min-width: 0;
  box-sizing: border-box;
}
.fig-pfr__row input::placeholder { color: rgba(0,0,0,0.5); }
.fig-pfr__row input:focus { background: rgb(235,235,235); box-shadow: 0 0 0 3px var(--c-mint); }
.fig-pfr__row--error input { box-shadow: 0 0 0 3px var(--c-error); }
.fig-pfr__dash {
  color: var(--c-white);
  font-size: clamp(20px, 2.5vw, 35px);
  font-weight: 500;
  flex: 0 0 auto;
}

.fig-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(12px, 1.4vw, 18px);
  align-items: flex-start;
  color: var(--c-white);
  font-size: clamp(15px, 1.6vw, 25px);
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
  margin-top: clamp(8px, 1vw, 16px);
  position: relative;
}
.fig-check input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.fig-check__box {
  width: clamp(36px, 3vw, 51px);
  height: clamp(34px, 2.7vw, 46px);
  background: rgb(217, 217, 217);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--c-blue);
  flex-shrink: 0;
  transition: background 0.15s;
}
.fig-check__box svg { opacity: 0; transition: opacity 0.12s; }
.fig-check input:checked + .fig-check__box { background: var(--c-yellow); }
.fig-check input:checked + .fig-check__box svg { opacity: 1; }
.fig-check--error .fig-check__box { outline: 2px solid var(--c-error); outline-offset: 2px; }
.fig-check__text a { text-decoration: underline; }
.fig-check__text a:hover { color: var(--c-yellow); }

.fig-form__btn {
  margin-top: clamp(12px, 2vw, 24px);
  align-self: center;
  background: var(--c-yellow);
  color: var(--c-blue);
  border: 0;
  border-radius: 23px;
  padding: 0 clamp(40px, 5vw, 90px);
  font-family: var(--ff);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 700;
  cursor: pointer;
  min-width: clamp(240px, 26vw, 371px);
  height: clamp(60px, 5.5vw, 76px);
  transition: transform 0.12s, box-shadow 0.15s;
  line-height: 1;
}
.fig-form__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(226,218,21,0.45); }
.fig-form__btn:active { transform: translateY(0); }
.fig-form__btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.fig-form--success {
  text-align: center;
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  z-index: 2;
}
.fig-form__success-icon {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--c-mint);
  display: grid; place-items: center;
  color: var(--c-blue);
}
.fig-form__success-icon svg { width: 56px; height: 56px; }

/* =========================================================
   FIGMA 1:1 — Pravila
   ========================================================= */
.fig-pravila {
  background: var(--c-blue);
  color: var(--c-white);
  padding: clamp(20px, 3vw, 40px) 0 clamp(60px, 6vw, 100px);
  position: relative;
  overflow: hidden;
}
.fig-pravila__decor {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  z-index: 2;
  margin-bottom: clamp(-80px, -4vw, -40px);
}
.fig-pravila__products {
  width: clamp(120px, 14vw, 220px);
  height: auto;
  flex-shrink: 0;
}
.fig-pravila__fifa {
  width: clamp(120px, 14vw, 220px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}
@media (max-width: 700px) {
  .fig-pravila__decor { flex-direction: row; justify-content: center; gap: 20px; margin-bottom: 0; }
  .fig-pravila__products, .fig-pravila__fifa { width: clamp(80px, 22vw, 120px); }
}
.fig-pravila__inner {
  max-width: 1116px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  position: relative;
  z-index: 1;
}
.fig-pravila__head {
  text-align: center;
  margin-bottom: clamp(28px, 3.5vw, 56px);
  padding-top: clamp(40px, 5vw, 80px);
}
.fig-pravila__title {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}
.fig-pravila__subtitle {
  display: block;
  font-weight: 500;
  text-transform: none;
  margin-top: 8px;
  font-size: 0.85em;
  font-style: italic;
  letter-spacing: 0;
}
.fig-pravila__title-meta {
  display: block;
  font-weight: 400;
  text-transform: none;
  font-size: 0.55em;
  margin-top: 8px;
  opacity: 0.85;
}
.fig-pravila__intro {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  text-align: center;
  margin: 0 0 clamp(40px, 5vw, 64px);
  padding: 0 clamp(0px, 2vw, 24px);
  font-weight: 500;
}

.fig-clan { margin-bottom: clamp(28px, 3vw, 48px); }
.fig-clan h2 {
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  padding-bottom: 12px;
  /* border-bottom: 1px solid rgba(115,200,193,0.45); */
}
.fig-clan p {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.75;
  margin: 0 0 12px;
  font-weight: 500;
}
.fig-clan ul, .fig-clan ol {
  padding-left: 24px;
  margin: 0 0 14px;
}
.fig-clan li {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 4px;
}
.fig-clan__products {
  list-style: auto;
}
.fig-clan__products li { break-inside: avoid; font-size: 13px; }
@media (max-width: 700px) { .fig-clan__products { columns: 1; } }
.fig-clan__sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(115,200,193,0.3);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Prize table (mint cells) */
.fig-prize-table {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fig-prize-table__row {
  display: grid;
  grid-template-columns: 1.2fr 2.4fr 0.55fr 1fr 1fr;
  gap: 4px;
  align-items: stretch;
}
.fig-prize-table__cell {
  background: var(--c-mint);
  color: var(--c-blue);
  padding: 14px 18px;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.45;
  display: flex;
  align-items: center;
}
.fig-prize-table__row--head .fig-prize-table__cell { font-weight: 700; letter-spacing: 0.02em; }
.fig-prize-table__cell--name { font-weight: 700; }
.fig-prize-table__cell--num { justify-content: center; text-align: center; font-weight: 600; }
.fig-prize-table__row--total { grid-template-columns: 1fr auto; margin-top: 4px; }
.fig-prize-table__row--total .fig-prize-table__cell { font-weight: 700; padding: 18px 24px; font-size: clamp(13px, 1.05vw, 16px); }
.fig-prize-table__row--total .fig-prize-table__cell--num { min-width: 160px;  }

@media (max-width: 900px) {
  .fig-prize-table { gap: 12px; }
  .fig-prize-table__row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 12px;
    background: rgba(115,200,193,0.12);
    border-radius: 12px;
  }
  .fig-prize-table__row--head { display: none; }
  .fig-prize-table__cell {
    padding: 6px 12px;
    background: transparent;
    color: var(--c-white);
    display: block;
  }
  .fig-prize-table__cell[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-mint);
    margin-bottom: 4px;
  }
  .fig-prize-table__cell--content { grid-column: 1 / -1; }
  .fig-prize-table__cell--num { text-align: left; justify-content: flex-start; }
  .fig-prize-table__row--total { grid-template-columns: 1fr; background: var(--c-mint); padding: 16px; }
  .fig-prize-table__row--total .fig-prize-table__cell { color: var(--c-blue); }
  .fig-prize-table__row--total .fig-prize-table__cell--num {
    background: var(--c-yellow);
    border-radius: 8px;
    margin-top: 8px;
    padding: 12px;
    font-size: 18px;
    min-width: 0;
    text-align: center;
    justify-content: center;
  }
  .fig-prize.fig-prize--daily,
  .fig-prize.fig-prize--weekly {
    margin-bottom: 30px;
}
}

/* .fig-prize.fig-prize--daily .fig-prize__circle{
  align-items: start;
}
.fig-prize.fig-prize--weekly .fig-prize__circle{
align-items: end;
} */
/* =========================================================
   Winners page layout
   ========================================================= */
.fig-home--winners { padding-bottom: 0; }

.fig-winners {
  background: var(--c-blue);
  padding: clamp(40px, 5vw, 72px) 0 clamp(48px, 6vw, 80px);
}

.fig-winners__cta {
  margin-top: clamp(40px, 4vw, 64px);
  text-align: center;
}
.fig-winners__cta p {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}
.fig-winners__footnote {
  margin-top: clamp(16px, 2vw, 24px);
  font-size: 13px;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

/* =========================================================
   Winners shortcode output (.dove-winners-*)
   ========================================================= */
.dove-winners-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

.dove-winners-section {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(115,200,193,0.18);
}

.dove-winners-title {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  margin: 0;
}

.dove-winners-grand .dove-winners-title {
  background: rgba(226,218,21,0.12);
  color: var(--c-yellow);
  border-bottom: 1px solid rgba(226,218,21,0.15);
}
.dove-winners-weekly .dove-winners-title {
  background: rgba(115,200,193,0.1);
  color: var(--c-mint);
  border-bottom: 1px solid rgba(115,200,193,0.15);
}
.dove-winners-daily .dove-winners-title {
  background: rgba(255,255,255,0.05);
  color: var(--c-white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dove-winners-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  padding: 20px 24px;
}

.dove-winner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(115,200,193,0.14);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
}

/* Grand winner */
.dove-winner-grand {
  grid-column: 1 / -1;
  background: rgba(226,218,21,0.07);
  border: 1px solid rgba(226,218,21,0.25);
  border-radius: 16px;
  padding: 36px 28px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.dove-winner-trophy { font-size: 52px; line-height: 1; }
.dove-winner-grand strong {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 700;
  color: var(--c-yellow);
  display: block;
}
.dove-winner-grand .dove-winner-phone {
  font-size: 15px;
  color: var(--c-mint);
  opacity: 1;
  margin-left: 0;
}

/* Weekly winner — single full-width rows */
.dove-winners-weekly .dove-winners-list {
  grid-template-columns: 1fr;
}
.dove-winner-weekly {
  border-left: 3px solid var(--c-mint);
  justify-content: space-between;
}
.dove-winner-week {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--c-mint);
  color: var(--c-blue);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  white-space: nowrap;
}
.dove-winner-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-white);
  opacity: 0.9;
  flex-shrink: 0;
  white-space: nowrap;
}
.dove-winner-weekly .dove-winner-phone {
  font-size: 15px;
}

/* Daily winners */
.dove-winners-daily .dove-winners-list {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  padding: 12px 24px 20px;
}
.dove-winner-daily {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 18px 16px;
  border: 1px solid rgba(115,200,193,0.2);
  background: rgba(115,200,193,0.05);
  border-radius: 12px;
  gap: 0;
}
.dove-winner-daily .dove-winner-phone {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  color: var(--c-white);
  opacity: 1;
  margin-left: 0;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.dove-winners-day { padding: 0 24px 4px; }
.dove-day-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-yellow);
  padding: 20px 0 12px;
  border-top: 1px solid rgba(115,200,193,0.1);
  margin: 0;
}

.dove-no-winners {
  text-align: center;
  font-size: 18px;
  opacity: 0.7;
  padding: clamp(32px, 4vw, 64px);
  color: var(--c-white);
}

/* =========================================================
   Animations
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .45s ease both; }




.fig-prize__circle.fig-prize__circle--right::after {
    background: var(--c-mint);
    content: "";
    position: absolute;
    height: 100%;
    width: 100vh;
    z-index: 5;
    left: 50%;
}
.fig-prize__circle.fig-prize__circle--left::after {
    background: var(--c-mint);
    content: "";
    position: absolute;
    height: 100%;
    width: 100vh;
    z-index: 5;
    right: 50%;
}

.fig-home-prijava .prijava_bg {
    background-color: var(--c-blue);
}
/* =========================================================
   404 page
   ========================================================= */
/* Hide oversized header logo on 404 — it's a homepage-hero design element */
.error404 .site-header__logo { display: none; }

.fig-404 {
  background: var(--c-blue);
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
}
.fig-404__hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
  padding: clamp(60px, 8vw, 120px) clamp(24px, 6vw, 120px);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.fig-404__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 28px);
}
.fig-404__code {
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--c-mint);
  letter-spacing: -0.04em;
  display: block;
}
.fig-404__title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.fig-404__text {
  font-size: clamp(15px, 1.4vw, 20px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.fig-404__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn--ghost-white {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color .15s ease, background .15s ease;
}
.btn--ghost-white:hover {
  border-color: var(--c-white);
  background: rgba(255,255,255,0.08);
}
.fig-404__badge {
  width: clamp(160px, 22vw, 320px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  align-self: center;
}
@media (max-width: 767px) {
  .fig-404__hero {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .fig-404__badge { display: none; }
  .fig-404__code { font-size: clamp(80px, 26vw, 140px); }
}
