/* ============================================================
   SSO "Retro Cartoon Studio" dizajn sistem (Faza 0)
   Novi vizuelni jezik - postepeno zamenjuje style.css, stranicu
   po stranicu (vidi plan redizajna). Ne diraj stare klase u
   style.css dok se odgovarajuća stranica ne migrira.
   ============================================================ */

:root {
  --v2-bg: #FFF6E8;
  --v2-ink: #1F1A17;
  --v2-yellow: #F5B301;
  --v2-red: #E5442A;
  --v2-blue: #2B7DE0;
  --v2-green: #2FA36B;
  --v2-orange: #E07A10;
  --v2-brown-dark: #3a332d;
  --v2-text-2: #8a7f70;
  --v2-text-3: #4a413b;
  --v2-text-4: #b3a996;
  --v2-card: #ffffff;
  --v2-border: 3px solid var(--v2-ink);
  --v2-border-thin: 2px solid var(--v2-ink);
  --v2-shadow: 4px 4px 0 var(--v2-ink);
  --v2-shadow-card: 5px 5px 0 var(--v2-ink);
  --v2-shadow-hero: 6px 6px 0 var(--v2-ink);
}

html { scroll-behavior: smooth; }

.v2 { font-family: 'Nunito', -apple-system, sans-serif; background: var(--v2-bg); color: var(--v2-text-3); }

.v2 h1, .v2 h2, .v2 h3, .v2 .v2-display {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  font-weight: 800;
  color: var(--v2-ink);
  line-height: 1.1;
}

.v2 h1 { font-size: 56px; }
.v2 h2 { font-size: 38px; }
.v2 h3 { font-size: 19px; }

@media (max-width: 720px) {
  .v2 h1 { font-size: 38px; }
  .v2 h2 { font-size: 28px; }
}

/* ---------------- Cards ---------------- */

.v2-card {
  background: var(--v2-card);
  border: var(--v2-border);
  border-radius: 18px;
  box-shadow: var(--v2-shadow-card);
}

.v2-card-hover {
  transition: transform .12s ease, box-shadow .12s ease;
  cursor: pointer;
}

.v2-card-hover:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--v2-ink);
}

/* ---------------- Pills / badges ---------------- */

.v2-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: var(--v2-border-thin);
  font-weight: 800;
  font-size: 14px;
  background: #fff;
  color: var(--v2-ink);
}

.v2-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: var(--v2-border-thin);
  font-weight: 800;
  font-size: 12px;
  background: var(--v2-yellow);
  color: var(--v2-ink);
  transform: rotate(-3deg);
}

.v2-badge.rot-2 { transform: rotate(2deg); }
.v2-badge.rot-4 { transform: rotate(4deg); }
.v2-badge.rot-neg { transform: rotate(-2deg); }

/* Kategorije */
.v2-cat-kvizovi { background: var(--v2-yellow); }
.v2-cat-gosti { background: var(--v2-blue); color: #fff; }
.v2-cat-izazovi { background: var(--v2-red); color: #fff; }
.v2-cat-diskusije { background: var(--v2-green); color: #fff; }

/* ---------------- Buttons ---------------- */

.v2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  border: var(--v2-border);
  box-shadow: var(--v2-shadow);
  cursor: pointer;
  text-decoration: none;
  color: var(--v2-ink);
  background: var(--v2-yellow);
  transition: transform .12s ease, box-shadow .12s ease;
}

.v2-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--v2-ink);
}

.v2-btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--v2-ink);
}

.v2-btn img.v2-btn-thumb {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 6px;
  border: 1.5px solid var(--v2-ink);
  flex-shrink: 0;
}

.v2-btn-red { background: var(--v2-red); color: #fff; }
.v2-btn-blue { background: var(--v2-blue); color: #fff; }
.v2-btn-white { background: #fff; color: var(--v2-ink); }
.v2-btn-outline { background: transparent; box-shadow: none; }
.v2-btn-outline:hover { box-shadow: var(--v2-shadow); }

/* ---------------- Header / Nav ---------------- */

.v2-header {
  background: #fff;
  border-bottom: var(--v2-border);
  position: relative;
  z-index: 20;
}

.v2-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v2-logo img { height: 56px; }

.v2-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.v2-nav a {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--v2-ink);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  border: 2px solid transparent;
}

.v2-nav a.active {
  background: var(--v2-yellow);
  border: var(--v2-border-thin);
}

.v2-nav a:hover:not(.active) { background: var(--v2-bg); }

.v2-header-cta {
  background: var(--v2-red);
  color: #fff;
  border: var(--v2-border);
  box-shadow: 3px 3px 0 var(--v2-ink);
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.v2-cart-icon {
  position: relative;
  color: var(--v2-ink);
  display: inline-flex;
}

.v2-cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--v2-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--v2-ink);
}

.v2-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.v2-nav-toggle span { width: 24px; height: 3px; background: var(--v2-ink); border-radius: 2px; }

@media (max-width: 900px) {
  .v2-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: var(--v2-border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    display: none;
  }
  .v2-nav.open { display: flex; }
  .v2-nav a { text-align: center; }
  .v2-nav-toggle { display: flex; }
}

/* ---------------- Footer ---------------- */

.v2-footer {
  background: var(--v2-ink);
  color: #d8d0c4;
  padding-top: 56px;
}

.v2-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.v2-footer-logo { height: 56px; margin-bottom: 12px; }

.v2-footer-col h4 { color: #fff; font-family: 'Baloo 2', sans-serif; font-size: 16px; margin-bottom: 14px; }

.v2-footer-col a {
  display: block;
  color: #d8d0c4;
  padding: 5px 0;
  font-size: 14px;
  text-decoration: none;
}

.v2-footer-col a:hover { color: var(--v2-yellow); }

.v2-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 24px;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 860px) {
  .v2-footer-inner { grid-template-columns: 1fr; }
}

/* ---------------- Sekcije / wrap ---------------- */

.v2-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.v2-section { padding: 64px 24px; }
.v2-section-inner { max-width: 1280px; margin: 0 auto; }
.v2-section.alt { background: #FBEFDC; }
.v2-section-title { text-align: center; margin-bottom: 36px; }
.v2-section-title h2 { display: inline-block; }

/* ---------------- Hero (2 kolone) ---------------- */

.v2-hero {
  background: var(--v2-bg);
  position: relative;
  overflow: hidden;
  border-bottom: var(--v2-border);
}

.v2-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.v2-hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  z-index: 2;
}

.v2-hero h1 { font-size: 52px; margin-bottom: 18px; }
.v2-hero h1 .accent { color: var(--v2-red); display: block; }
.v2-hero p.lead { font-size: 18px; margin-bottom: 28px; max-width: 520px; }

.v2-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.v2-hero-platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.v2-hero-platforms span, .v2-hero-platforms a {
  font-size: 13px; font-weight: 800; padding: 6px 14px; border-radius: 999px;
  border: var(--v2-border-thin); background: #fff;
}
.v2-hero-platforms a { color: var(--v2-ink); text-decoration: none; }
.v2-hero-platforms a:hover { background: var(--v2-bg); }

.v2-hero-mascot { text-align: center; position: relative; }
.v2-hero-mascot img {
  max-width: 100%;
  max-height: 420px;
  animation: v2-float 5s ease-in-out infinite;
}

@keyframes v2-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@media (max-width: 900px) {
  .v2-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .v2-hero-actions, .v2-hero-platforms { justify-content: center; }
  .v2-hero p.lead { margin-left: auto; margin-right: auto; }
  .v2-hero h1 { font-size: 38px; }
}

/* ---------------- Stat kartice (rotirane) ---------------- */

.v2-stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v2-stat-card {
  background: #fff;
  text-align: center;
  padding: 24px 16px;
  transform: rotate(-1.5deg);
}

.v2-stat-card:nth-child(2n) { transform: rotate(1.5deg); }
.v2-stat-card:nth-child(3n) { transform: rotate(-1deg); }

.v2-stat-card .num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 32px;
  display: block;
}
.v2-stat-card .num.c-yellow { color: #a06e00; }
.v2-stat-card .num.c-blue { color: var(--v2-blue); }
.v2-stat-card .num.c-red { color: var(--v2-red); }
.v2-stat-card .num.c-green { color: var(--v2-green); }

.v2-stat-card .label { font-size: 13px; font-weight: 700; color: var(--v2-text-3); margin-top: 4px; }

@media (max-width: 720px) {
  .v2-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------------- Epizode kartice ---------------- */

.v2-episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.v2-episode-card {
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.v2-episode-card .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: var(--v2-border);
  position: relative;
  background: #000;
}

.v2-episode-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.v2-episode-card .thumb .v2-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  font-size: 12px;
}

.v2-episode-card .body { padding: 16px; }
.v2-episode-card h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.35; }
.v2-episode-card .views { font-size: 13px; font-weight: 700; color: var(--v2-text-2); }

/* ---------------- Tim kartice ---------------- */

.v2-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.v2-team-card {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
  transform: rotate(-1deg);
}
.v2-team-card:nth-child(2) { transform: rotate(1deg); }
.v2-team-card:nth-child(3) { transform: rotate(-1.5deg); }

.v2-team-photo {
  width: 96px; height: 96px; border-radius: 50%;
  border: var(--v2-border);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--v2-text-2);
  overflow: hidden;
}

.v2-team-photo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; box-sizing: border-box; }

.v2-team-photo.c-blue { background: #DCEBFF; }
.v2-team-photo.c-yellow { background: #FFF1D6; }
.v2-team-photo.c-red { background: #FDE3E8; }

.v2-team-card h3 { font-size: 18px; margin-bottom: 4px; }
.v2-team-card .role { font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.v2-team-card .role.c-blue { color: var(--v2-blue); }
.v2-team-card .role.c-yellow { color: #a06e00; }
.v2-team-card .role.c-red { color: var(--v2-red); }
.v2-team-card p.bio { font-size: 14px; }

/* ---------------- Platforme grid ---------------- */

.v2-platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.v2-platform-card {
  background: #fff;
  text-align: center;
  padding: 22px 16px;
  text-decoration: none;
  color: inherit;
}

.v2-platform-card .name { font-weight: 800; margin-bottom: 4px; }
.v2-platform-card .count { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 20px; color: var(--v2-blue); }

/* ---------------- Page hero (interior stranice) ---------------- */

.v2-page-hero {
  text-align: center;
  padding: 56px 24px 40px;
  border-bottom: var(--v2-border);
  background: var(--v2-bg);
}

.v2-page-hero p { font-size: 18px; max-width: 600px; margin: 0 auto; }

/* ---------------- Filter bar (Epizode i sl.) ---------------- */

.v2-filter-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.v2-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }

.v2-filter-tab {
  padding: 8px 18px;
  border-radius: 999px;
  border: var(--v2-border-thin);
  background: #fff;
  color: var(--v2-ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
}

.v2-filter-tab.active { background: var(--v2-yellow); }

.v2-search-box { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.v2-search-box input, .v2-search-box select {
  padding: 10px 14px;
  border: var(--v2-border-thin);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  background: #fff;
  color: var(--v2-ink);
}

.v2-search-box input { min-width: 220px; }

/* ---------------- Prazno stanje ---------------- */

.v2-empty {
  text-align: center;
  padding: 60px 24px;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* ---------------- Prodavnica: product grid ---------------- */

.v2-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  padding: 32px 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.v2-product-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.v2-product-card .v2-badge-sale {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.v2-product-card .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f0e2;
  border-bottom: var(--v2-border);
}

.v2-product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

.v2-product-card .body { padding: 16px; }
.v2-product-card h3 { font-size: 18px; margin-bottom: 8px; }

.v2-price { font-size: 16px; font-weight: 800; font-family: 'Baloo 2', sans-serif; }
.v2-price .old { text-decoration: line-through; color: var(--v2-text-4); margin-right: 8px; font-weight: 700; }
.v2-price .current { color: var(--v2-red); }

.v2-badge-sale {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: var(--v2-border-thin);
  background: var(--v2-red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  transform: rotate(-3deg);
}

/* ---------------- Product detail ---------------- */

.v2-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  align-items: flex-start;
}

@media (max-width: 860px) {
  .v2-product-detail { grid-template-columns: 1fr; gap: 32px; }
}

.v2-product-gallery { position: relative; }

.v2-product-gallery-main {
  border-radius: 18px;
  overflow: hidden;
  background: #f7f0e2;
  border: var(--v2-border);
  box-shadow: var(--v2-shadow-card);
  margin-bottom: 14px;
}

.v2-product-gallery-thumbs { display: flex; gap: 10px; }

.v2-product-gallery-thumbs img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: var(--v2-border-thin);
  opacity: .6;
}

.v2-product-gallery-thumbs img.active { opacity: 1; border-color: var(--v2-blue); }

.v2-product-summary .v2-price { font-size: 26px; margin-bottom: 20px; display: block; }
.v2-product-summary .desc { margin-bottom: 24px; font-size: 16px; }

.v2-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }

.v2-qty-input {
  display: flex;
  align-items: center;
  border: var(--v2-border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.v2-qty-input button {
  background: none;
  border: none;
  width: 40px;
  height: 44px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  color: var(--v2-ink);
}

.v2-qty-input input {
  width: 44px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  -moz-appearance: textfield;
}

.v2-product-meta {
  font-size: 14px;
  border-top: 2px solid var(--v2-ink);
  padding-top: 16px;
  margin-top: 8px;
}

/* ---------------- Prazno stanje (proizvod nije nadjen i sl.) ---------------- */

.v2-empty-state {
  text-align: center;
  padding: 80px 24px;
}

/* ---------------- Aplikacija ---------------- */

.v2-app-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 48px;
}

.v2-app-hero p.lead { font-size: 18px; margin-bottom: 24px; }

.v2-app-hero-shot { text-align: center; }

.v2-app-hero-shot img {
  max-height: 480px;
  margin: 0 auto;
  border-radius: 20px;
  border: var(--v2-border);
  box-shadow: var(--v2-shadow-hero);
}

.v2-badges-row { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-badges-row img { height: 48px; }

.v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.v2-feature-card { padding: 24px; text-align: center; }
.v2-feature-card .icon { font-size: 30px; margin-bottom: 12px; }
.v2-feature-card h3 { font-size: 17px; margin-bottom: 6px; }
.v2-feature-card p { font-size: 14px; }

.v2-screenshot-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 24px 24px;
  scroll-snap-type: x mandatory;
}

.v2-screenshot-gallery img {
  height: 420px;
  border-radius: 16px;
  border: var(--v2-border);
  scroll-snap-align: start;
  flex-shrink: 0;
}

.v2-app-soon {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 24px;
}

.v2-app-soon p { margin-bottom: 24px; }

.v2-signup-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.v2-signup-form input {
  flex: 1;
  min-width: 220px;
  padding: 12px 18px;
  border: var(--v2-border-thin);
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
}

@media (max-width: 860px) {
  .v2-app-hero { grid-template-columns: 1fr; text-align: center; }
  .v2-badges-row { justify-content: center; }
}

/* ---------------- Alert ---------------- */

.v2-alert {
  padding: 14px 18px;
  border-radius: 12px;
  border: var(--v2-border-thin);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
}

.v2-alert-error { background: #FDE3E8; color: #9B2C2C; }
.v2-alert-success { background: #E1F5EA; color: #1E6B3C; }

/* ---------------- Forme (kontakt, sponzori, itd) ---------------- */

.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.v2-form-group { margin-bottom: 18px; }

.v2-form-group label {
  display: block;
  font-size: 14px;
  color: var(--v2-ink);
  font-weight: 800;
  margin-bottom: 6px;
}

.v2-required { color: var(--v2-red); }

.v2-consent { margin: 16px 0; }
.v2-consent p { font-size: 13px; color: var(--v2-text-2); line-height: 1.6; margin-bottom: 10px; }
.v2-consent a { color: var(--v2-blue); font-weight: 700; text-decoration: underline; }

.v2-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-ink);
  cursor: pointer;
}

.v2-consent-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--v2-yellow);
}

.v2-form-group input,
.v2-form-group textarea,
.v2-form-group select {
  width: 100%;
  padding: 12px 14px;
  border: var(--v2-border-thin);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  background: #fff;
  color: var(--v2-ink);
}

.v2-form-group input:focus,
.v2-form-group textarea:focus,
.v2-form-group select:focus {
  outline: none;
  border-color: var(--v2-blue);
}

@media (max-width: 720px) {
  .v2-form-row { grid-template-columns: 1fr; }
}

/* ---------------- Za sponzore ---------------- */

.v2-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.v2-why-card { text-align: center; padding: 20px; }
.v2-why-card .icon { font-size: 28px; margin-bottom: 10px; }
.v2-why-card h3 { font-size: 16px; margin-bottom: 6px; }
.v2-why-card p { font-size: 14px; }

/* ============================================================
   Za sponzore — redizajn (design handoff, avgust 2026)
   Namerno koristi postojeće v2 tokene (ink/yellow/red/blue) umesto
   handoff-ovih skoro-identičnih nijansi, da ostane u boji sa
   ostatkom sajta (header/footer dele isti --v2-ink itd).
   Jedina nova boja je --v2-orange (Instagram, treći akcent broja).
   ============================================================ */

.v2-sp-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: var(--v2-border-thin);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ---------------- Hero ---------------- */

.v2-sp-hero {
  background: #FDF1E0;
  border-bottom: var(--v2-border);
}

.v2-sp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.v2-sp-hero h1 { font-size: 42px; margin: 16px 0 14px; line-height: 1.1; }
.v2-sp-hero-lead { font-size: 16px; max-width: 52ch; margin-bottom: 22px; }
.v2-sp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.v2-sp-hero-fineprint { font-size: 13px; color: var(--v2-text-2); }

.v2-sp-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.v2-sp-stat-card {
  background: #fff;
  border: var(--v2-border);
  border-radius: 16px;
  box-shadow: var(--v2-shadow-card);
  padding: 18px;
}

.v2-sp-stat-card.full { grid-column: 1 / -1; padding: 22px; }

.v2-sp-stat-card .num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: .85;
  display: block;
}
.v2-sp-stat-card.full .num { font-size: 44px; }
.v2-sp-stat-card .num.c-red { color: var(--v2-red); }
.v2-sp-stat-card .num.c-blue { color: var(--v2-blue); }
.v2-sp-stat-card .num.c-orange { color: var(--v2-orange); }

.v2-sp-stat-card .label { display: block; font-size: 13px; font-weight: 700; margin: 6px 0 10px; }
.v2-sp-icon-row { display: flex; align-items: center; gap: 9px; }
.v2-sp-icon-row svg { display: block; }

@media (max-width: 900px) {
  .v2-sp-hero-inner { grid-template-columns: 1fr; }
}

/* ---------------- Zašto brendovi (nasleđeno, i dalje se koristi) ---------------- */

.v2-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.v2-why-card { text-align: center; padding: 20px; }
.v2-why-card .icon { font-size: 28px; margin-bottom: 10px; }
.v2-why-card h3 { font-size: 16px; margin-bottom: 6px; }
.v2-why-card p { font-size: 14px; }

/* ---------------- Ključne brojke: toggle ---------------- */

.v2-sp-numbers-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.v2-sp-toggle {
  display: inline-flex;
  background: #fff;
  border: var(--v2-border);
  border-radius: 999px;
  box-shadow: var(--v2-shadow);
  padding: 5px;
  gap: 4px;
  flex-shrink: 0;
}

.v2-sp-toggle button {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--v2-text-3);
  cursor: pointer;
}

.v2-sp-toggle button.active { background: var(--v2-yellow); color: var(--v2-ink); }

.v2-sp-scope-note { font-size: 13px; color: var(--v2-text-2); margin-top: 6px; }

/* ---------------- Numerisane kartice (01/02/03) ---------------- */

.v2-sp-numbered-grid { display: grid; gap: 20px; }

.v2-sp-numbered-card { padding: 22px; }

.v2-sp-numbered-card .head { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }

.v2-sp-numbered-card .badge-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--v2-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}

.v2-sp-numbered-card h3 { font-size: 20px; }
.v2-sp-numbered-card .sub-label { font-size: 13px; color: var(--v2-text-2); margin: 2px 0 16px 42px; }

.v2-sp-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .v2-sp-dual { grid-template-columns: 1fr; } }

.v2-sp-dashed-group {
  border: 2px dashed #C9BBA3;
  border-radius: 14px;
  padding: 16px;
}

.v2-sp-dashed-group .eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .08em;
  color: var(--v2-text-2); text-transform: uppercase;
  display: block; margin-bottom: 10px;
}

.v2-sp-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .v2-sp-mini-grid { grid-template-columns: 1fr; } }

.v2-sp-mini-card {
  background: #FFFDF8;
  border: var(--v2-border-thin);
  border-radius: 12px;
  padding: 16px;
}

.v2-sp-mini-card .num { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 26px; display: block; line-height: 1; }
.v2-sp-mini-card .num.c-red { color: var(--v2-red); }
.v2-sp-mini-card .num.c-blue { color: var(--v2-blue); }
.v2-sp-mini-card .num.c-orange { color: var(--v2-orange); }
.v2-sp-mini-card .num.c-ink { color: var(--v2-ink); }
.v2-sp-mini-card .label { display: block; font-size: 12px; font-weight: 700; margin: 6px 0 10px; }

.v2-sp-community-row { display: flex; gap: 14px; flex-wrap: wrap; }

.v2-sp-community-total {
  background: var(--v2-yellow);
  border: var(--v2-border-thin);
  border-radius: 12px;
  padding: 16px 18px;
  min-width: 150px;
  flex-shrink: 0;
}
.v2-sp-community-total .num { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 28px; display: block; line-height: 1; }
.v2-sp-community-total .label { display: block; font-size: 12px; font-weight: 700; margin: 6px 0 10px; }

.v2-sp-community-grid {
  flex: 1;
  min-width: 240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.v2-sp-network-count {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: #FFFDF8; border: var(--v2-border-thin); border-radius: 10px;
  padding: 10px 12px;
}
.v2-sp-network-count span { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 15px; white-space: nowrap; }

/* ---------------- Demografija (unutar brojki + Ko gleda) ---------------- */

.v2-sp-donut-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }

.v2-sp-donut {
  width: 132px; height: 132px; border-radius: 50%;
  border: var(--v2-border);
  position: relative;
  flex-shrink: 0;
}
.v2-sp-donut::after {
  content: '';
  position: absolute; inset: 34px;
  background: #fff; border-radius: 50%;
  border: var(--v2-border-thin);
}
.v2-sp-donut .donut-label {
  position: absolute; inset: 34px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 20px; color: var(--v2-blue);
  text-align: center; z-index: 1;
}
.v2-sp-donut .donut-label small { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 11px; color: var(--v2-text-3); }

.v2-sp-donut.big { width: 168px; height: 168px; }
.v2-sp-donut.big::after { inset: 42px; }
.v2-sp-donut.big .donut-label { inset: 42px; font-size: 24px; }

.v2-sp-legend { display: flex; gap: 16px; font-size: 13px; font-weight: 700; }
.v2-sp-legend span { display: inline-flex; align-items: center; gap: 6px; }
.v2-sp-legend i { width: 12px; height: 12px; border-radius: 3px; border: 1.5px solid var(--v2-ink); display: inline-block; }
.v2-sp-legend i.c-blue { background: var(--v2-blue); }
.v2-sp-legend i.c-red { background: var(--v2-red); }

.v2-sp-bar-row {
  display: grid;
  grid-template-columns: 52px 1fr 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}
.v2-sp-bar-row:last-child { margin-bottom: 0; }

.v2-sp-bar-track {
  background: #F1E7D6;
  border: var(--v2-border-thin);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.v2-sp-bar-fill { height: 100%; background: #D9CBB4; }
.v2-sp-bar-fill.c-yellow { background: var(--v2-yellow); }
.v2-sp-bar-fill.c-orange { background: var(--v2-orange); }

.v2-sp-country-row { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.v2-sp-country-row:last-child { margin-bottom: 0; }
.v2-sp-country-row.lead { color: var(--v2-red); }

.v2-sp-chip-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.v2-sp-chip {
  background: var(--v2-bg); border: var(--v2-border-thin); border-radius: 999px;
  padding: 5px 12px; font-size: 12px; font-weight: 700;
}

/* ---------------- Ko gleda naš sadržaj: tabovi ---------------- */

.v2-sp-tabs-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.v2-sp-tabs-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--v2-text-2); text-transform: uppercase; }

.v2-sp-tabs { display: flex; gap: 8px; flex-wrap: wrap; overflow-x: auto; padding-bottom: 2px; }
.v2-sp-tab {
  border: var(--v2-border-thin); background: #fff; border-radius: 999px;
  padding: 8px 15px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 13px;
  cursor: pointer; white-space: nowrap;
}
.v2-sp-tab.active { background: var(--v2-yellow); box-shadow: 3px 3px 0 var(--v2-ink); }

.v2-sp-tabs-note { font-size: 13px; color: var(--v2-text-2); margin: 10px 0 20px; }

.v2-sp-demo-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr .8fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 980px) { .v2-sp-demo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .v2-sp-demo-grid { grid-template-columns: 1fr; } }

.v2-sp-demo-card { padding: 20px; }
.v2-sp-demo-card h4 { font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--v2-text-2); text-transform: uppercase; margin-bottom: 16px; }

.v2-sp-empty-note {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: #A79B88;
  text-align: center;
  padding: 20px 8px;
}
.v2-sp-dash { font-family: 'Baloo 2', sans-serif; font-size: 22px; color: var(--v2-text-4); text-align: center; padding: 20px 0; }

/* ---------------- Formati saradnje: akordeon ---------------- */

.v2-sp-accordion { display: flex; flex-direction: column; gap: 14px; }

.v2-sp-acc-row {
  background: #fff;
  border: var(--v2-border);
  border-radius: 16px;
  box-shadow: var(--v2-shadow-card);
  overflow: hidden;
}

.v2-sp-acc-header {
  display: grid;
  grid-template-columns: 150px 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.v2-sp-acc-row.open .v2-sp-acc-header { background: var(--v2-yellow); }

.v2-sp-acc-header .name { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 22px; }
.v2-sp-acc-header .desc { font-size: 15px; font-weight: 700; color: var(--v2-text-3); }
.v2-sp-acc-header .toggle-sign { font-size: 22px; font-weight: 800; width: 26px; text-align: center; }

@media (max-width: 720px) {
  .v2-sp-acc-header { grid-template-columns: 1fr auto; grid-template-areas: "name toggle" "desc desc" "badge badge"; row-gap: 8px; }
  .v2-sp-acc-header .name { grid-area: name; }
  .v2-sp-acc-header .toggle-sign { grid-area: toggle; }
  .v2-sp-acc-header .desc { grid-area: desc; }
  .v2-sp-acc-header .v2-badge { grid-area: badge; justify-self: start; }
}

.v2-sp-acc-body {
  display: none;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  padding: 22px 20px;
  border-top: var(--v2-border);
  align-items: start;
}
.v2-sp-acc-row.open .v2-sp-acc-body { display: grid; }

@media (max-width: 720px) {
  .v2-sp-acc-body { grid-template-columns: 1fr; }
}

.v2-sp-acc-examples { display: flex; flex-direction: column; gap: 12px; }
.v2-sp-acc-caption { font-size: 10px; font-weight: 800; letter-spacing: .08em; color: var(--v2-text-2); text-transform: uppercase; }

.v2-sp-acc-shots { display: flex; gap: 10px; }
.v2-sp-acc-shot {
  position: relative;
  border: var(--v2-border-thin);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.v2-sp-acc-shot.portrait { aspect-ratio: 9/16; flex: 1; }
.v2-sp-acc-shot.landscape { aspect-ratio: 16/9; width: 100%; }
.v2-sp-acc-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.v2-sp-acc-shot .primer-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--v2-yellow); border: var(--v2-border-thin);
  border-radius: 6px; padding: 2px 8px;
  font-size: 10px; font-weight: 800; letter-spacing: .04em;
}
.v2-sp-acc-shot .primer-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.92);
  font-size: 10px; color: var(--v2-text-2); padding: 4px 6px;
  border-top: 1.5px solid var(--v2-ink);
}

.v2-sp-acc-text p.body { font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.v2-sp-acc-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.v2-sp-acc-chip { border: var(--v2-border-thin); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 800; }

.v2-sp-acc-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.v2-sp-acc-cta-row .price-note { font-size: 13px; color: var(--v2-text-2); }

/* ---------------- Kontakt ---------------- */

.v2-sp-contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 24px 100px;
}
@media (max-width: 860px) { .v2-sp-contact { grid-template-columns: 1fr; } }

.v2-sp-contact-info p { margin: 10px 0; font-size: 15px; line-height: 1.7; font-weight: 600; }

.v2-sp-contact-form { padding: 24px; }
.v2-sp-contact-form h3 { font-size: 20px; margin-bottom: 14px; }

.v2-sp-contact-form input[type="text"],
.v2-sp-contact-form input[type="email"],
.v2-sp-contact-form textarea {
  width: 100%;
  background: #FFFDF8;
  border: var(--v2-border-thin);
  border-radius: 10px;
  padding: 11px 13px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--v2-ink);
}

.v2-sp-honeypot { position: absolute; left: -9999px; top: -9999px; }

/* ---------------- Sticky CTA traka ---------------- */

.v2-sp-sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: var(--v2-border);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 40;
  transform: translateY(100%);
  transition: transform .2s ease;
}
.v2-sp-sticky-bar.visible { transform: translateY(0); }

.v2-sp-sticky-bar .left { font-weight: 800; font-size: 14px; }
.v2-sp-sticky-bar .right { display: flex; align-items: center; gap: 14px; }
.v2-sp-sticky-bar .mail { font-size: 13px; font-weight: 700; }

@media (max-width: 620px) {
  .v2-sp-sticky-bar .left, .v2-sp-sticky-bar .mail { display: none; }
  .v2-sp-sticky-bar { justify-content: flex-end; }
}

/* ---------------- O nama ---------------- */

.v2-story-block { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.v2-story-block p { margin-bottom: 16px; font-size: 16px; }

.v2-mission-banner {
  background: var(--v2-ink);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}

.v2-mission-banner p {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Baloo 2', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: #fff;
}

.v2-press-list { max-width: 700px; margin: 0 auto; padding: 56px 24px; }

.v2-press-item {
  padding: 20px 24px;
  margin-bottom: 12px;
  font-size: 15px;
}

/* ---------------- Kontakt ---------------- */

.v2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.v2-contact-grid .v2-card { padding: 24px; margin-bottom: 20px; }
.v2-contact-grid ul { padding-left: 20px; }

@media (max-width: 860px) { .v2-contact-grid { grid-template-columns: 1fr; } }

/* ---------------- Korpa i plaćanje ---------------- */

.v2-cart-page, .v2-checkout-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.v2-cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border: var(--v2-border);
  border-radius: 18px;
  box-shadow: var(--v2-shadow-card);
  overflow: hidden;
}

.v2-cart-table th, .v2-cart-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #f0e6d2;
}

.v2-cart-table th { color: var(--v2-ink); font-weight: 800; font-size: 14px; }
.v2-cart-table tr:last-child td { border-bottom: none; }

.v2-cart-product { display: flex; align-items: center; gap: 14px; font-weight: 700; }

.v2-cart-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: var(--v2-border-thin);
  background: #f7f0e2;
}

.v2-cart-remove {
  color: var(--v2-red);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
}

.v2-cart-summary {
  max-width: 380px;
  margin-left: auto;
  background: #fff;
  border: var(--v2-border);
  border-radius: 18px;
  box-shadow: var(--v2-shadow-card);
  padding: 24px;
}

.v2-cart-summary-row { display: flex; justify-content: space-between; padding: 8px 0; }

.v2-cart-summary-row.total {
  border-top: 2px solid var(--v2-ink);
  margin-top: 8px;
  padding-top: 16px;
  font-weight: 800;
  font-size: 18px;
  font-family: 'Baloo 2', sans-serif;
}

.v2-checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 860px) { .v2-checkout-grid { grid-template-columns: 1fr; } }

.v2-checkout-form, .v2-order-summary {
  background: #fff;
  border: var(--v2-border);
  border-radius: 18px;
  box-shadow: var(--v2-shadow-card);
  padding: 28px;
}

.v2-order-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 2px solid #f0e6d2;
}

@media (max-width: 720px) {
  .v2-cart-table thead { display: none; }
  .v2-cart-table, .v2-cart-table tbody, .v2-cart-table tr, .v2-cart-table td { display: block; width: 100%; }
  .v2-cart-table tr { padding: 12px 16px; border-bottom: 2px solid #f0e6d2; }
}

/* ---------------- Epizoda - detalj ---------------- */

.v2-episode-detail { max-width: 900px; margin: 0 auto; padding: 32px 24px 64px; }

.v2-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border: var(--v2-border);
  border-radius: 18px;
  box-shadow: var(--v2-shadow-hero);
  overflow: hidden;
  background: #000;
}

.v2-video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

.v2-episode-detail-meta { padding: 28px 4px 0; }
.v2-episode-detail-meta h1 { font-size: 30px; margin-bottom: 10px; }
.v2-episode-detail-meta .views { font-size: 14px; font-weight: 700; color: var(--v2-text-2); margin-bottom: 16px; }
.v2-episode-detail-meta .desc { font-size: 16px; line-height: 1.6; }

.v2-episode-detail-section { padding: 32px 4px 0; }
.v2-episode-detail-section h2 { font-size: 24px; margin-bottom: 16px; }

.v2-chapters-list { display: flex; flex-direction: column; gap: 8px; }

.v2-chapter-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: var(--v2-border-thin);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  text-align: left;
  width: 100%;
}

.v2-chapter-row:hover { background: var(--v2-bg); }

.v2-chapter-row .time {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 14px;
  background: var(--v2-yellow);
  border: var(--v2-border-thin);
  border-radius: 8px;
  padding: 4px 10px;
  flex-shrink: 0;
}

.v2-chapter-row .title { font-size: 15px; font-weight: 700; }

.v2-score-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 500px; }

.v2-score-card { text-align: center; padding: 20px 12px; }
.v2-score-card .name { font-weight: 800; margin: 10px 0 4px; }
.v2-score-card .num { font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 28px; }

@media (max-width: 600px) { .v2-score-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } }

/* ---------------- Počni odavde (kurirana lista) ---------------- */

.v2-curated-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2-curated-card {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}

.v2-curated-num {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--v2-yellow);
  border: var(--v2-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 15px;
  z-index: 2;
}

.v2-curated-card .thumb {
  width: 160px;
  aspect-ratio: 16/9;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
  border: var(--v2-border-thin);
  background: #000;
}

.v2-curated-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.v2-curated-card .body h3 { font-size: 17px; margin-bottom: 6px; }
.v2-curated-card .body p.why { font-size: 14px; font-style: italic; color: var(--v2-text-3); }

@media (max-width: 600px) {
  .v2-curated-card { flex-direction: column; align-items: stretch; }
  .v2-curated-card .thumb { width: 100%; }
}

/* ---------------- Pitanje nedelje + Ko vodi ---------------- */

.v2-quiz-scores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 800px) { .v2-quiz-scores-grid { grid-template-columns: 1fr; } }

.v2-weekly-question, .v2-host-leaderboard { padding: 24px; }
.v2-weekly-question h3, .v2-host-leaderboard h3 { font-size: 19px; margin: 12px 0 16px; }

.v2-wq-options { display: flex; flex-direction: column; gap: 10px; }

.v2-wq-option {
  padding: 12px 16px;
  border: var(--v2-border-thin);
  border-radius: 10px;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.v2-wq-option:hover { background: var(--v2-bg); }
.v2-weekly-question.answered .v2-wq-option { cursor: default; }
.v2-wq-option.correct { background: #E1F5EA; border-color: var(--v2-green); }
.v2-wq-option.wrong { background: #FDE3E8; border-color: var(--v2-red); }

.v2-wq-result { margin-top: 14px; font-weight: 800; }

.v2-host-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 2px solid #f0e6d2;
}
.v2-host-row:last-child { border-bottom: none; }

.v2-host-row .rank { font-family: 'Baloo 2', sans-serif; font-weight: 800; color: var(--v2-text-2); width: 28px; }
.v2-host-row .dot { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid var(--v2-ink); flex-shrink: 0; }
.v2-host-row .dot.c-blue { background: var(--v2-blue); }
.v2-host-row .dot.c-yellow { background: var(--v2-yellow); }
.v2-host-row .dot.c-red { background: var(--v2-red); }
.v2-host-row .name { font-weight: 800; flex: 1; }
.v2-host-row .wins { font-size: 14px; color: var(--v2-text-2); font-weight: 700; }

/* ---------------- SSO Bingo ---------------- */

.v2-bingo-wrap { max-width: 560px; margin: 0 auto; padding: 32px 24px 64px; text-align: center; }

.v2-bingo-msg {
  font-family: 'Baloo 2', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--v2-red);
  margin-bottom: 20px;
}

.v2-bingo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.v2-bingo-square {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  color: var(--v2-ink);
}

.v2-bingo-square.marked {
  background: var(--v2-yellow);
  transform: rotate(-2deg);
}

/* ---------------- Koji si ti član ekipe (kviz) ---------------- */

.v2-quiz-wrap { max-width: 640px; margin: 0 auto; padding: 32px 24px 64px; display: flex; flex-direction: column; gap: 20px; }

.v2-quiz-question { padding: 24px; }
.v2-quiz-qnum { font-size: 12px; font-weight: 800; color: var(--v2-text-2); text-transform: uppercase; margin-bottom: 6px; }
.v2-quiz-question h3 { font-size: 19px; margin-bottom: 16px; }

.v2-quiz-answers { display: flex; flex-direction: column; gap: 10px; }

.v2-quiz-answer {
  padding: 12px 16px;
  border: var(--v2-border-thin);
  border-radius: 10px;
  background: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.v2-quiz-answer:hover { background: var(--v2-bg); }
.v2-quiz-answer.selected { background: var(--v2-yellow); border-color: var(--v2-ink); }

.v2-quiz-result { padding: 32px 24px 64px; }
.v2-quiz-result .v2-team-card { text-align: center; }
.v2-quiz-result p { font-size: 15px; }

/* ---------------- Duplo CTA ---------------- */

.v2-dual-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.v2-cta-box {
  padding: 36px 28px;
  color: #fff;
}

.v2-cta-box.c-blue { background: var(--v2-blue); }
.v2-cta-box.c-red { background: var(--v2-red); }
.v2-cta-box h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.v2-cta-box p { color: rgba(255,255,255,.9); margin-bottom: 20px; }

@media (max-width: 720px) {
  .v2-dual-cta { grid-template-columns: 1fr; }
}
