/* Блочный отчёт (ТЗ-оптимизация Калькулятора) */
.v2-blocks-card { display: flex; flex-direction: column; gap: 16px; }

.v2-central { text-align: center; padding: 4px 0 8px; }
.v2-central-title {
  font-size: 12px; letter-spacing: .05em; text-transform: uppercase;
  color: #8a6fd4; font-weight: 700; margin-bottom: 12px;
}
.v2-central-img {
  width: 200px; max-width: 60%; height: auto; border-radius: 10px;
  box-shadow: 0 8px 26px rgba(91, 63, 166, .22); margin: 0 auto 12px; display: block;
}
.v2-central-name { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: #2a2140; }
.v2-central-text { text-align: left; }
.v2-central-text p, .v2-block-text p { margin: 0 0 9px; line-height: 1.55; font-size: 14px; color: #2c2c3a; }

.v2-block { border-top: 1px solid #ece7f7; padding-top: 16px; }
.v2-block:first-child { border-top: none; padding-top: 0; }
.v2-block-summary {
  cursor: pointer; list-style: none; outline: none;
  display: flex; align-items: flex-start; gap: 10px;
  padding: 2px 22px 8px 0; position: relative;
}
.v2-block-summary::-webkit-details-marker { display: none; }
.v2-block-summary::after {
  content: "▾"; position: absolute; right: 2px; top: 2px;
  color: #8a6fd4; font-size: 15px; transition: transform .18s ease;
}
.v2-block:not([open]) .v2-block-summary::after { transform: rotate(-90deg); }
.v2-block-icon {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%;
  display: block; position: relative; margin-top: -2px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.95), rgba(247,240,255,.88) 52%, rgba(229,215,255,.84));
  border: 1px solid rgba(196, 175, 229, .7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 5px 14px rgba(91,63,166,.12);
}
.v2-block-icon-svg {
  width: 19px; height: 19px;
  display: block;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  fill: none; stroke: #7d65c6; stroke-width: 1.65;
  stroke-linecap: round; stroke-linejoin: round;
}
.v2-block-copy { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.v2-block-title { font-size: 16px; font-weight: 700; color: #3a2d63; margin-bottom: 0; }
.v2-block-arcana { font-size: 12px; color: #8a6fd4; font-weight: 600; margin-bottom: 0; }
.v2-block-body { padding-bottom: 2px; }

.v2-age { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 13px; color: #555; margin: 4px 0 6px; }
.v2-age span b { color: #3a2d63; }

.v2-locked { position: relative; }
.v2-blur { filter: blur(5px); user-select: none; pointer-events: none; min-height: 320px; max-height: 360px; overflow: hidden; opacity: .85; -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); mask-image: linear-gradient(to bottom, #000 72%, transparent 100%); }
.v2-lock-cta {
  display: block; width: 100%; cursor: pointer;
  margin-top: 8px; font-size: 13.5px; font-weight: 700; color: #8a6fd4;
  background: #f4f1fb; border: 1px solid #e2dcf3; border-radius: 10px;
  padding: 9px 12px; text-align: center; font-family: inherit;
}
.v2-lock-cta:active { opacity: .85; }
/* Скелетон-подгрузка платных блоков (текст «проявляется» во второй фазе) */
.v2-skeleton { display: flex; flex-direction: column; gap: 9px; padding-top: 2px; }
.v2-skeleton span {
  display: block; height: 12px; border-radius: 6px;
  background: linear-gradient(90deg, #efeaf7 25%, #e2d9f0 37%, #efeaf7 63%);
  background-size: 400% 100%; animation: v2shimmer 1.4s ease infinite;
}
.v2-skeleton span.short { width: 55%; }
@keyframes v2shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
/* Плавное появление готового текста */
.v2-block-text:not(.v2-skeleton):not(.v2-blur) { animation: v2fade .4s ease both; }
@keyframes v2fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Блок «Расчёт» (числа матрицы перед отчётом) */
.v2-calc { background: #faf8ff; border: 1px solid #ece7f7; border-radius: 12px; padding: 2px 12px; }
.v2-calc > summary { cursor: pointer; font-size: 13px; font-weight: 700; color: #8a6fd4; padding: 9px 0; list-style: none; outline: none; }
.v2-calc > summary::-webkit-details-marker { display: none; }
.v2-calc > summary::before { content: "▸ "; }
.v2-calc[open] > summary::before { content: "▾ "; }
.v2-calc-body { padding-bottom: 10px; display: flex; flex-direction: column; gap: 12px; }
.v2-calc-h { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: #9a8fc0; margin-bottom: 3px; }
.v2-calc-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 3px 0; border-bottom: 1px dashed #efeaf7; }
.v2-calc-row span { color: #666; }
.v2-calc-row b { color: #3a2d63; white-space: nowrap; }

/* Каскадное «проявление» блоков (стриминг-эффект «текст пишется») */
.v2-block { animation: v2blockin .45s ease both; }
@keyframes v2blockin { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.v2-reveal { animation: v2fade .5s ease both; }
