* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Libre Franklin', sans-serif;
      color: #1a1a1a;
      background: #fff;
      line-height: 1.6;
      font-size: 16px;
    }
    
    .primary-blue {
      color: #0669DE;
    }
    
    .accent-red {
      color: #C4170C;
    }
    
    .nature-green {
      color: #1A9E2E;
    }
    
    .warm-orange {
      color: #E8650E;
    }
    
    .site-top-bar {
      background: #0a4a9c;
      padding: 18px 0;
    }
    
    .site-header-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 24px;
    }
    
    .site-navigation {
      color: #fff;
      font-size: 15px;
      font-weight: 600;
    }
    
    .site-brand {
      color: #fff;
      font-size: 34px;
      font-weight: 900;
      letter-spacing: -1px;
    }
    
    .header-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 22px;
    }
    
    .subscription-btn {
      background: #FFD400;
      color: #1a1a1a;
      font-weight: 700;
      font-size: 14px;
      padding: 9px 16px;
      border-radius: 4px;
    }
    
    .subscription-btn b {
      font-weight: 900;
    }
    
    .search-action,
    .login-action {
      color: #fff;
      font-size: 15px;
      font-weight: 600;
    }
    
    .site-menu {
      border-bottom: 1px solid #e0e0e0;
      padding: 13px 0;
      background: #fff;
    }
    
    .menu-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
      font-size: 15px;
      color: #333;
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    
    .menu-container .divider {
      color: #ccc;
    }
    
    article {
      max-width: 720px;
      margin: 36px auto;
      padding: 0 20px;
    }
    
    .category-breadcrumb {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: #0a4a9c;
      margin-bottom: 16px;
      text-transform: uppercase;
    }
    
    .category-breadcrumb .urgent-tag {
      color: #C4170C;
      margin-left: 10px;
    }
    
    h1.main-headline {
      font-weight: 800;
      font-size: 42px;
      line-height: 1.15;
      letter-spacing: -0.5px;
      margin-bottom: 18px;
    }
    
    .lead-text {
      font-family: 'Lora', serif;
      font-size: 19px;
      line-height: 1.5;
      color: #444;
      font-style: italic;
      margin-bottom: 28px;
    }
    
    .media-placeholder {
      background: linear-gradient(135deg, #eaf2fb 0%, #d6e6f7 100%);
      border: 2px dashed #0a4a9c;
      padding: 22px 20px;
      margin: 26px 0;
      border-radius: 4px;
      position: relative;
    }
    
    .media-placeholder.featured {
      background: linear-gradient(135deg, #fdecec 0%, #f9d2d2 100%);
      border-color: #C4170C;
    }
    
    .media-placeholder::before {
      content: "📷";
      position: absolute;
      top: -13px;
      left: 16px;
      background: #fff;
      padding: 0 8px;
      font-size: 18px;
    }
    
    .media-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #0a4a9c;
      margin-bottom: 10px;
      padding-left: 22px;
    }
    
    .media-placeholder.featured .media-label {
      color: #C4170C;
    }
    
    .media-content {
      font-size: 14px;
      line-height: 1.6;
      color: #333;
    }
    
    .media-content b {
      color: #1a1a1a;
    }
    
    .image-caption {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 13px;
      color: #888;
      margin-top: -8px;
      margin-bottom: 20px;
      padding: 8px 0;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .contributor-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 28px;
      padding-bottom: 18px;
      border-bottom: 1px solid #e0e0e0;
    }
    
    .author-photo {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0a4a9c, #062f63);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 16px;
    }
    
    .reporter-name {
      font-weight: 700;
      font-size: 14px;
    }
    
    .publication-meta {
      font-size: 12px;
      color: #888;
    }
    
    article p {
      margin-bottom: 18px;
      font-size: 17px;
    }
    
    article h2 {
      font-size: 27px;
      font-weight: 800;
      margin: 34px 0 16px;
      letter-spacing: -0.3px;
    }
    
    .platform-link {
      color: #0a4a9c;
      font-weight: 700;
      text-decoration: underline;
    }
    
    .interview-metadata {
      background: #f7f9fc;
      border-left: 4px solid #0a4a9c;
      padding: 14px 18px;
      font-size: 15px;
      margin-bottom: 8px;
    }
    
    .qa-section {
      margin: 20px 0;
    }
    
    .qa-section .question {
      margin: 16px 0 6px;
      color: #1a1a1a;
    }
    
    .qa-section .answer {
      margin-bottom: 10px;
      color: #1a1a1a;
    }
    
    .qa-section .speaker {
      color: #0a4a9c;
      font-weight: 800;
    }
    
    .qa-section .narrator-text {
      font-style: italic;
      color: #666;
      margin: 8px 0;
    }
    
    .quote-block {
      font-family: 'Lora', serif;
      font-size: 20px;
      line-height: 1.5;
      font-style: italic;
      color: #1a1a1a;
      border-left: 4px solid #C4170C;
      padding: 6px 0 6px 20px;
      margin: 20px 0;
    }
    /* CALCULATOR */
    
    .profit-calculator {
      background: #f7f9fc;
      border: 2px solid #0a4a9c;
      border-radius: 6px;
      padding: 24px;
      margin: 28px 0;
    }
    
    .profit-calculator h4 {
      font-family: 'Lora', serif;
      font-size: 21px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    
    .calculation-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 12px;
    }
    
    .calculation-label {
      font-size: 14px;
      color: #666;
    }
    
    .calculation-value {
      font-size: 26px;
      font-weight: 700;
    }
    
    #profitSlider {
      width: 100%;
      height: 6px;
      -webkit-appearance: none;
      appearance: none;
      background: #d0dceb;
      border-radius: 3px;
      outline: none;
      margin: 8px 0 6px;
    }
    
    #profitSlider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 22px;
      height: 22px;
      background: #0a4a9c;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid #fff;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    #profitSlider::-moz-range-thumb {
      width: 22px;
      height: 22px;
      background: #0a4a9c;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid #fff;
    }
    
    .slider-labels {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: #999;
      margin-bottom: 18px;
    }
    
    .calculation-result {
      background: #fff;
      border-left: 4px solid #0a4a9c;
      padding: 14px 16px;
      margin-bottom: 18px;
    }
    
    .result-label {
      font-size: 13px;
      color: #666;
      margin-bottom: 4px;
    }
    
    .result-amount {
      font-size: 24px;
      font-weight: 800;
      color: #0a4a9c;
      line-height: 1.2;
      margin-bottom: 8px;
    }
    
    .calculation-disclaimer {
      font-size: 11px;
      color: #999;
      font-style: italic;
    }
    
    .action-button.calculator-cta {
      margin-top: 0;
      padding: 16px;
      font-size: 16px;
      background: #0a4a9c;
    }
    
    .income-prompt {
      background: #f7f9fc;
      border: 1px solid #d6e0ec;
      border-top: 4px solid #0a4a9c;
      padding: 26px 24px;
      margin: 32px 0;
      border-radius: 4px;
    }
    
    .income-prompt h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 14px;
      color: #0a4a9c;
    }
    
    table.earnings {
      width: 100%;
      border-collapse: collapse;
      margin: 18px 0;
      font-size: 15px;
    }
    
    table.earnings th {
      background: #0a4a9c;
      color: #fff;
      padding: 10px 8px;
      text-align: left;
      font-size: 13px;
    }
    
    table.earnings td {
      padding: 11px 8px;
      border-bottom: 1px solid #e0e0e0;
    }
    
    table.earnings .investment {
      font-weight: 800;
    }
    
    table.earnings .base-income {
      color: #1A9E2E;
      font-weight: 700;
    }
    
    table.earnings .growth-income {
      color: #C4170C;
      font-weight: 800;
    }
    /* PLATFORM CARD (em números) */
    
    .platform-info {
      margin: 30px 0;
      padding: 28px;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-top: 4px solid #0a4a9c;
      font-family: 'Lora', Georgia, serif;
      color: #222;
    }
    
    .platform-info h3 {
      font-family: 'Lora', serif;
      font-size: 24px;
      margin-bottom: 18px;
      font-weight: 700;
    }
    
    .platform-info .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 30px;
      margin-top: 18px;
      font-size: 16px;
      line-height: 1.5;
    }
    
    .platform-info .grid .item {
      border-top: 1px solid #e0e0e0;
      padding-top: 12px;
    }
    
    .platform-info .grid .item b {
      display: block;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #0a4a9c;
      margin-bottom: 4px;
      font-family: 'Libre Franklin', sans-serif;
    }
    
    @media(max-width:600px) {
      .platform-info .grid {
        grid-template-columns: 1fr;
      }
    }
    
    .signup-section {
      background: #fffbe6;
      border: 2px solid #FFD400;
      padding: 26px 24px;
      margin: 34px 0;
      border-radius: 6px;
    }
    
    .signup-section h2 {
      font-size: 22px;
      margin-bottom: 18px;
    }
    
    .signup-step {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 14px;
    }
    
    .step-number {
      background: #0a4a9c;
      color: #fff;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      flex-shrink: 0;
      font-size: 14px;
    }
    
    .step-description {
      font-size: 15px;
      padding-top: 2px;
    }
    
    .deadline-notification {
      margin: 18px 0;
      font-size: 16px;
    }
    
    .warning-message {
      background: #fdecec;
      border: 1px solid #f5b5b5;
      padding: 14px 16px;
      border-radius: 4px;
      font-size: 14px;
      margin: 16px 0;
    }
    
    .action-button {
      display: block;
      background: #C4170C;
      color: #fff;
      text-align: center;
      padding: 18px;
      font-size: 18px;
      font-weight: 800;
      text-decoration: none;
      border-radius: 6px;
      margin-top: 18px;
      letter-spacing: 0.5px;
    }
    /* FB COMMENTS */
    
    .comments-section {
      max-width: 720px;
      margin: 0 auto;
      padding: 28px 20px 0px;
      border-top: 8px solid #f0f2f5;
    }
    
    .comments-header {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    
    .comment-input-area {
      display: flex;
      gap: 10px;
      align-items: center;
      margin-bottom: 24px;
    }
    
    .input-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #ddd;
      flex-shrink: 0;
    }
    
    .input-field {
      flex: 1;
      background: #f0f2f5;
      border-radius: 18px;
      padding: 10px 16px;
      color: #65676B;
      font-size: 14px;
    }
    
    .user-comment {
      display: flex;
      gap: 10px;
      margin-bottom: 16px;
    }
    
    .user-comment.reply {
      margin-left: 44px;
    }
    
    .comment-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
    }
    
    .avatar-pink {
      background: #e57373
    }
    
    .avatar-blue {
      background: #64b5f6
    }
    
    .avatar-orange {
      background: #ffb74d
    }
    
    .avatar-green {
      background: #81c784
    }
    
    .avatar-purple {
      background: #ba68c8
    }
    
    .avatar-teal {
      background: #4db6ac
    }
    
    .avatar-indigo {
      background: #7986cb
    }
    
    .avatar-red {
      background: #e53935
    }
    
    .avatar-cyan {
      background: #26c6da
    }
    
    .avatar-brown {
      background: #a1887f
    }
    
    .avatar-gray {
      background: #90a4ae
    }
    
    .comment-content {
      flex: 1;
    }
    
    .comment-bubble {
      background: #f0f2f5;
      border-radius: 16px;
      padding: 10px 14px;
    }
    
    .comment-author {
      font-weight: 700;
      font-size: 14px;
    }
    
    .comment-text {
      font-size: 14px;
      margin-top: 2px;
    }
    
    .comment-image img {
      display: block;
      width: 100%;
      max-width: 240px;
      height: auto;
      aspect-ratio: auto;
      margin: 8px 0 0;
      border-radius: 8px;
      border: 1px solid #ddd;
    }
    
    .comment-meta {
      font-size: 12px;
      color: #65676B;
      margin: 4px 0 0 14px;
      display: flex;
      gap: 12px;
    }
    
    .comment-meta .like {
      font-weight: 700;
    }
    
    .sticky-action {
      position: fixed;
      bottom: calc(14px + env(safe-area-inset-bottom));
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 32px);
      max-width: 420px;
      background: #C4170C;
      color: #fff;
      text-align: center;
      padding: 16px 20px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.6px;
      z-index: 9999;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
      border-radius: 10px;
    }
    
    body {
      padding-bottom: 90px;
    }
    
    @media (max-width: 768px) {
      h1.main-headline {
        font-size: 30px;
      }
      .site-header-container {
        gap: 12px;
        align-items: center;
      }
      .site-navigation {
        font-size: 0;
        display: flex;
        align-items: center;
        height: 30px;
      }
      .site-navigation::before {
        content: "\2630";
        font-size: 26px;
        line-height: 1;
        display: block;
        margin-top: -3px;
      }
      .site-brand {
        font-size: 30px;
        white-space: nowrap;
        line-height: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        margin-top: 3px;
      }
      .header-actions {
        gap: 10px;
      }
      .subscription-btn {
        font-size: 12px;
        padding: 7px 10px;
      }
      .search-action,
      .login-action {
        display: none;
      }
      article {
        margin: 24px auto;
        padding: 0 14px;
      }
      article h2 {
        font-size: 22px;
      }
      article p {
        font-size: 16px;
      }
      .lead-text {
        font-size: 15px;
      }
      .menu-container {
        font-size: 13px;
        gap: 8px;
      }
      table.earnings {
        font-size: 13px;
      }
      table.earnings th,
      table.earnings td {
        padding: 8px 6px;
      }
      .income-prompt,
      .signup-section,
      .profit-calculator,
      .platform-info {
        padding: 20px 16px;
      }
      .media-placeholder {
        padding: 18px 14px;
      }
      .user-comment.reply {
        margin-left: 20px;
      }
      .article-image {
        width: calc(100% + 28px) !important;
        max-width: none !important;
        margin: 26px -14px !important;
        border-radius: 0 !important;
      }
    }
    
    @media (max-width: 420px) {
      h1.main-headline {
        font-size: 26px;
      }
      .lead-text {
        font-size: 14px;
      }
      .site-brand {
        font-size: 26px;
        line-height: 26px;
        height: 26px;
      }
      .site-navigation {
        height: 26px;
      }
      .site-navigation::before {
        font-size: 22px;
        margin-top: -2px;
      }
      .subscription-btn {
        font-size: 11px;
        padding: 6px 8px;
      }
      .site-menu {
        display: none;
      }
    }
    
    .article-image {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 16/9;
      border-radius: 4px;
      margin: 26px 0;
    }
    
    .sticky-action {
      background: #0a4a9c;
    }