* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #333; color: #fff; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.censor { background: #444; padding: 30px; border-radius: 15px; width: 450px; }
.censor h1 { text-align: center; margin-bottom: 15px; }
.censor textarea, .censor input { width: 100%; padding: 12px; border: 2px solid #555; border-radius: 8px; font-size: 16px; background: #222; color: #fff; margin-bottom: 10px; }
.censor button { width: 100%; padding: 15px; background: #e74c3c; color: #fff; border: none; border-radius: 8px; font-size: 16px; cursor: pointer; }
#result { background: #222; padding: 15px; border-radius: 8px; margin-top: 15px; min-height: 50px; }