     /* SCOPED CSS: Super Raicho Features (Black Title + Red Accents) */     #fuji-raicho-features {         font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;         line-height: 1.5;         color: #333;         font-size: 15px;         background-color: #fff;         max-width: 100%;         box-sizing: border-box;     }      /* Headings - Black Text with Red Accent Line */     #fuji-raicho-features h3 {         font-size: 16px;         color: #000000; /* Black Title */         border-bottom: 2px solid #b22222; /* Red underline for branding */         padding-bottom: 5px;         margin-top: 5px;         margin-bottom: 12px;         font-weight: 700;         text-transform: uppercase;     }      /* List Styling */     #fuji-raicho-features ul {         margin: 0 0 15px 0;         padding-left: 0;         list-style-type: none;     }      #fuji-raicho-features li {         margin-bottom: 8px;         padding-left: 24px;         position: relative;     }      /* Custom Checkmark Icon (Red Background) */     #fuji-raicho-features li::before {         content: "✔";         color: #fff;         background-color: #b22222; /* Fuji Red Icon */         font-size: 10px;         font-weight: bold;         position: absolute;         left: 0;         top: 3px;         width: 16px;         height: 16px;         border-radius: 50%;         text-align: center;         line-height: 16px;     }      /* Keywords - Fuji Red Accent */     #fuji-raicho-features strong {         color: #b22222;          font-weight: 700;     }      /* Application Box */     #fuji-raicho-features .app-box {         background-color: #fff5f5; /* Very Light Red Background */         padding: 12px;         border-radius: 4px;         margin-bottom: 10px;         border-left: 3px solid #b22222;         font-size: 14px;     }      /* Mobile Optimization */     @media (max-width: 768px) {         #fuji-raicho-features { font-size: 16px; }      } 