.quote-block {
  border-left: 4px solid #b80000;
  padding: 18px 22px;
  margin: 24px 0;
  background: #fef8f4;
}
.quote-block p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.quote-block p:last-child {
  margin-bottom: 0;
}
.dialogue {
  margin: 22px 0;
}
.dialogue .q {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.dialogue .q b:first-child {
  font-weight: 900;
  color: #b80000;
}
.dialogue .a {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.dialogue .a b:first-child {
  font-weight: 900;
  color: #1a1a1a;
}
.reactions-block {
  margin: 30px 0;
}
.reaction-card {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.reaction-card .rc-source {
  font-size: 12px;
  font-weight: 700;
  color: #b80000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.reaction-card .rc-text {
  font-size: 15px;
  line-height: 1.6;
}
.reaction-card .rc-author {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}
.qa-block {
  margin: 24px 0;
}
.qa-block .q {
  font-weight: 700;
  font-size: 16px;
  color: #b80000;
  margin-top: 20px;
  margin-bottom: 8px;
}
.qa-block .a {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 8px;
  padding-left: 14px;
  border-left: 2px solid #e0e0e0;
}
.qa-block .narration {
  font-style: italic;
  font-size: 16px;
  color: #555;
  margin: 12px 0;
}
a.platform-link,
a.platform-link:link,
a.platform-link:visited {
  color: #b80000 !important;
  text-decoration: underline;
  font-weight: 600;
}
.viewer-counter {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  margin: 28px 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.viewer-dot {
  width: 10px;
  height: 10px;
  background: #00e676;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse2 1.5s ease-in-out infinite;
}
@keyframes pulse2 {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.15);
  }
}
.viewer-counter .count-num {
  font-weight: 800;
  font-size: 18px;
  color: #00e676;
  min-width: 30px;
  text-align: center;
  transition: opacity 0.3s;
}
.income-cta-block {
  background: #fef8f4;
  border-left: 4px solid #b80000;
  padding: 24px 26px;
  margin: 30px 0;
}
.income-cta-block h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #b80000;
}
.income-cta-block p {
  font-size: 16px;
}
.income-scroll {
  margin: 18px 0;
}
table.income {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.income thead th {
  background: #b80000;
  color: #fff;
  text-align: left;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 13px;
}
table.income tbody td {
  padding: 14px;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
table.income tbody tr:nth-child(odd) td {
  background: #fafafa;
}
table.income .capital {
  font-weight: 700;
}
table.income .income-base {
  color: #2e7d32;
  font-weight: 600;
  text-align: center;
}
table.income .income-growth {
  color: #b80000;
  font-weight: 700;
  text-align: center;
}
table.income .capital,
table.income .income-base,
table.income .income-growth {
  white-space: nowrap;
}
@media (max-width: 768px) {
  table.income {
    table-layout: fixed;
    width: 100%;
  }
  table.income .capital,
  table.income .income-base,
  table.income .income-growth {
    white-space: normal;
  }
  table.income thead th {
    font-size: 11px;
    padding: 7px 6px;
    line-height: 1.3;
  }
  table.income tbody td {
    font-size: 13px;
    padding: 9px 6px;
    line-height: 1.3;
  }
}
@media (max-width: 480px) {
  table.income thead th {
    font-size: 10px;
    padding: 6px 5px;
  }
  table.income tbody td {
    font-size: 12px;
    padding: 8px 5px;
  }
}
.calculator-block {
  background: #fff;
  border: 2px solid #b80000;
  border-radius: 6px;
  padding: 24px;
  margin: 24px 0;
}
.calculator-block h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 18px;
  color: #b80000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.calc-label {
  font-size: 14px;
  color: #666;
}
.calc-amount {
  font-size: 26px;
  font-weight: 700;
}
#calcSlider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #ddd;
  border-radius: 3px;
  outline: none;
  margin: 8px 0 6px;
}
#calcSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #b80000;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
#calcSlider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #b80000;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #fff;
}
.calc-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  margin-bottom: 18px;
}
.calc-result {
  background: #fef8f4;
  border-left: 4px solid #b80000;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.calc-result-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}
.calc-result-value {
  font-size: 22px;
  font-weight: 800;
  color: #b80000;
  line-height: 1.2;
  margin-bottom: 8px;
  white-space: nowrap;
}
.calc-disclaimer {
  font-size: 11px;
  color: #999;
  font-style: italic;
}
.registration-block {
  background: #fef8f4;
  border: 1px solid #b80000;
  padding: 26px;
  margin: 30px 0;
  border-radius: 4px;
}
.registration-block h2 {
  margin-top: 0;
  color: #b80000;
}
.reg-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.reg-step-num {
  background: #b80000;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.reg-step-text {
  font-size: 15px;
  line-height: 1.5;
}
.deadline-line {
  font-size: 16px;
  margin: 18px 0;
}
.deadline-line b {
  font-weight: 700;
  color: #b80000;
}
.seats-line {
  font-size: 15px;
  margin: 14px 0;
  color: #555;
}
.seats-line b {
  font-weight: 800;
  color: #b80000;
}
.cta-button {
  display: block;
  background: #c30000;
  color: #fff;
  text-align: center;
  padding: 20px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 28px 0;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.cta-button:hover {
  background: #520000;
}
.cta-button.cta-calc {
  margin: 0;
  padding: 16px;
  font-size: 15px;
}
.photo-caption {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
  margin-top: 5px !important;
  font-style: italic;
  padding-bottom: 8px;
  border-bottom: 1px solid #cfcfcf;
}
