.deepseek-chat-root { font-family: Arial, Helvetica, sans-serif; }
.dsc-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #d8392f;
    color: #fff;
    padding: 20px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 99999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.dsc-window {
    position: fixed;
    right: 30px;
    bottom: 120px;
    width: 380px;
    height: 500px;
    background: #fff;
    border: 2px solid #fdd000;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 99999;
    display: flex;
    flex-direction: column;
}
.dsc-header {
    background: #000;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.dsc-messages {
    padding: 15px;
    flex: 1;
    overflow-y: auto;
    background: #f7f8fb;
}
.dsc-msg.user {
    background: #d8392f;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    margin: 8px 0;
    max-width: 80%;
    margin-left: auto;
    text-align: left;
    word-break: break-word;
}
.dsc-msg.bot {
    background: #eef1f6;
    color: #000;
    padding: 10px 15px;
    border-radius: 12px;
    margin: 8px 0;
    max-width: 80%;
    word-break: break-word;
    border: 1px solid #fdd000;
}
.dsc-input-bar {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.dsc-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-right: 8px;
    outline: none;
}
.dsc-send {
    background: #d8392f;
    color: #fff;
    border: none;
    padding: 0 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}
.dsc-end {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    margin-left: 5px;
}

.dsc-captcha-container {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 15px;
    text-align: center;
    display: none;
}

@media (max-width: 480px) {
    .dsc-window {
        right: 10px;
        left: 10px;
        width: auto;
        max-width: calc(100% - 20px);
    }
    
    .dsc-captcha-container {
        padding: 10px;
    }
}

.dsc-msg a {
    color: blue;
    text-decoration: underline;
}

.dsc-msg a:hover {
    text-decoration: none;
    color: blue;
}