/* --- PATCHER CARD STYLES (copy from above) --- */
.patcher-card {
    width: 620px;
    background: #fff;
    margin: 55px auto 0 auto;
    border-radius: 14px;
    box-shadow: 0 8px 32px 0 rgba(31,38,135,.15);
    padding: 34px 32px 26px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #eee;
    position: relative;
}
.patcher-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3a56d4;
    letter-spacing: 0.04em;
}
.patcher-card .patcher-actions {
    width: 100%;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    justify-content: center;
}
.patcher-card .patcher-button, .patcher-card button {
    background: linear-gradient(90deg,#5390d9 0%,#4361ee 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 7px;
    padding: 11px 20px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .2s;
    box-shadow: 0 2px 8px #e6e6e6;
    text-decoration: none;
    margin: 0 0 4px 0;
}
.patcher-card .patcher-button:hover, .patcher-card button:hover {
    background: linear-gradient(90deg,#4361ee 0%, #5390d9 100%);
}
.patcher-card textarea {
    width: 100%;
    margin-top: 8px;
    border-radius: 8px;
    font-size: 1rem;
    padding: 12px;
    min-height: 180px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background: #f7f9fa;
    resize: vertical;
}
.patcher-card .progress-bar-bg {
    width: 100%;
    height: 20px;
    background: #e9ecef;
    border-radius: 6px;
    margin-bottom: 8px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}
.patcher-card .progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg,#4cc9f0 0%,#4361ee 100%);
    border-radius: 6px;
    transition: width .18s;
    position: absolute;
    left: 0; top: 0;
}
.patcher-card .progress-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 2px;
    font-size: 1.04rem;
    text-align: left;
    width: 100%;
}
.patcher-card .notification {
    background: #fef6e3;
    color: #a06000;
    border-radius: 6px;
    padding: 10px 15px;
    margin: 11px 0 6px 0;
    border: 1px solid #ffe5b4;
    font-size: 1rem;
    box-shadow: 0 2px 8px #fff5d1;
    text-align: left;
}
.patcher-card .notification.success {
    background: #e7f9ef;
    color: #1b7b48;
    border: 1px solid #b6f2d5;
}
.patcher-card .notification.error {
    background: #ffe5e2;
    color: #e63946;
    border: 1px solid #ffc9c6;
}
.patcher-card .problem-list {
    margin: 7px 0 0 0;
    padding: 0;
    list-style: none;
    font-size: .97rem;
}
.patcher-card .problem-list li {
    margin-bottom: 3px;
    color: #c75a0e;
    padding-left: 2px;
    font-size: .98rem;
}
@media (max-width: 700px) {
    .patcher-card { width: 97vw; padding: 12vw 2vw 7vw 2vw;}
}