.strob-soft-wrapper {
    /* Biến CSS độc lập */
    --neo-border: 3px solid #111111;
    --neo-shadow: 5px 5px 0px #111111;
    
    --bg-main: #f4f4f5;
    --clr-yellow: #fde74c;
    --clr-cyan: #00f5d4;
    --clr-red: #ff006e;
    --clr-white: #ffffff;
    --clr-green: #06d6a0;
    --clr-text: #111111;

    max-width: 950px; 
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--clr-text);
    background: var(--bg-main);
    padding: 20px;
    border: var(--neo-border);
    border-radius: 16px;
    box-shadow: 6px 6px 0px #111111;
}

.strob-soft-wrapper * { box-sizing: border-box; }

.strob-soft-header {
    background: #111; padding: 20px; color: #fff;
    border: var(--neo-border); border-radius: 12px;
    text-align: center; margin-bottom: 25px; box-shadow: var(--neo-shadow);
}
.strob-soft-header h2 { margin: 0 0 10px 0; font-size: 1.8rem; font-weight: 900; color: var(--clr-yellow); text-transform: uppercase;}
.strob-soft-header p { margin: 0; font-weight: 600; font-size: 0.95rem; color: #ccc;}

/* BỐ CỤC 2 CỘT */
.strob-main-layout { display: flex; flex-direction: column; gap: 20px; }
.strob-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 20px;}
@media (min-width: 768px) { .strob-main-layout { flex-direction: row; align-items: stretch; } }

/* CARDS */
.strob-card {
    padding: 20px; border: var(--neo-border); 
    border-radius: 12px; box-shadow: var(--neo-shadow); display: flex; flex-direction: column; height: 100%;
}
.strob-bg-yellow { background: var(--clr-yellow); }
.strob-bg-white { background: var(--clr-white); }
.strob-card-title { margin: 0 0 15px 0; font-size: 1.2rem; font-weight: 900; border-bottom: 2px dashed #111; padding-bottom: 10px; }
.strob-flex-between { display: flex; justify-content: space-between; align-items: center; }

/* INPUT TEXTAREA */
.strob-group { display: flex; flex-direction: column; gap: 8px; }
.strob-textarea {
    width: 100%; min-height: 150px; padding: 15px; border: 3px solid #111; border-radius: 8px;
    font-size: 1.05rem; font-weight: bold; outline: none; box-shadow: inset 3px 3px 0px rgba(0,0,0,0.05); font-family: monospace; resize: vertical; line-height: 1.5;
}
.strob-textarea:focus { border-color: var(--clr-cyan); box-shadow: inset 3px 3px 0px rgba(0,0,0,0.05), 0 0 0 3px #111; }
.strob-textarea-output { flex: 1; min-height: 200px; background: #fdfdfd; word-break: break-all; }

.strob-divider { border: 0; border-top: 2px dashed #111; margin: 15px 0; opacity: 0.3; }

/* BADGE */
.strob-badge { background: #eee; padding: 4px 10px; border: 2px solid #111; border-radius: 6px; font-weight: 900; font-size: 0.85rem; box-shadow: 2px 2px 0px #111; transition: 0.2s;}
.strob-badge.active { background: var(--clr-green); color: #111; }

/* RADIO NEO GRID */
.strob-radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.strob-radio-btn { cursor: pointer; }
.strob-radio-btn input { display: none; }
.strob-radio-text {
    display: block; text-align: center; padding: 10px; background: #fff;
    border: 2px solid #111; border-radius: 8px; font-weight: 900; font-size: 0.9rem;
    box-shadow: 3px 3px 0px #111; transition: 0.1s;
}
.strob-radio-btn input:checked + .strob-radio-text {
    background: #111; color: var(--clr-cyan); box-shadow: 0px 0px 0px #111; transform: translate(3px, 3px);
}

/* BUTTONS */
.strob-btn-action {
    width: 100%; padding: 12px; background: #fff; border: 2px solid #111; border-radius: 8px;
    font-weight: 900; font-size: 1rem; cursor: pointer; box-shadow: 3px 3px 0px #111; transition: 0.1s; text-transform: uppercase;
}
.strob-btn-action:active { transform: translate(3px, 3px); box-shadow: 0px 0px 0px #111; }

.strob-btn-main {
    width: 100%; padding: 15px; background: #111; color: var(--clr-cyan); margin-top: 15px;
    border: 2px solid #111; border-radius: 8px; font-size: 1.1rem; font-weight: 900;
    cursor: pointer; box-shadow: 4px 4px 0px var(--clr-cyan); transition: 0.1s; text-transform: uppercase;
}
.strob-btn-main:active { transform: translate(4px, 4px); box-shadow: 0px 0px 0px var(--clr-cyan); }

/* INFO BOX */
.strob-info-box { background: rgba(255,255,255,0.6); padding: 15px; border: 2px dashed #111; border-radius: 8px; }
.strob-info-box h4 { margin: 0 0 5px 0; font-weight: 900; color: #111; font-size: 1rem;}
.strob-info-list { margin: 0; padding-left: 20px; font-size: 0.9rem; font-weight: 600; line-height: 1.6; color: #333; }
.strob-info-list code { background: #fff; border: 1px solid #111; padding: 2px 5px; border-radius: 4px; font-weight: bold; }